2015-12-31 00:11:33 +08:00
|
|
|
---
|
2016-01-21 20:19:02 +08:00
|
|
|
run_gitinfos: false
|
|
|
|
|
2016-07-26 21:18:47 +08:00
|
|
|
# This directory is where all the additional scripts go
|
|
|
|
# that Kubernetes normally puts in /srv/kubernetes.
|
|
|
|
# This puts them in a sane location
|
|
|
|
kube_script_dir: "{{ bin_dir }}/kubernetes-scripts"
|
|
|
|
|
|
|
|
# This directory is where all the additional config stuff goes
|
|
|
|
# the kubernetes normally puts in /srv/kubernets.
|
|
|
|
# This puts them in a sane location.
|
|
|
|
# Editting this value will almost surely break something. Don't
|
|
|
|
# change it. Things like the systemd scripts are hard coded to
|
|
|
|
# look in here. Don't do it.
|
|
|
|
kube_config_dir: /etc/kubernetes
|
|
|
|
|
|
|
|
# Logging directory (sysvinit systems)
|
|
|
|
kube_log_dir: "/var/log/kubernetes"
|
|
|
|
|
|
|
|
# This is where you can drop yaml/json files and the kubelet will run those
|
|
|
|
# pods on startup
|
|
|
|
kube_manifest_dir: "{{ kube_config_dir }}/manifests"
|
|
|
|
|
|
|
|
|
2015-12-31 21:07:02 +08:00
|
|
|
common_required_pkgs:
|
2015-12-31 05:15:18 +08:00
|
|
|
- python-httplib2
|
2015-12-31 21:07:02 +08:00
|
|
|
- openssl
|
|
|
|
- curl
|
2016-01-09 17:45:50 +08:00
|
|
|
- rsync
|
2016-02-12 06:08:16 +08:00
|
|
|
- bash-completion
|
2015-12-31 21:07:02 +08:00
|
|
|
|
2016-08-08 18:59:20 +08:00
|
|
|
# Set to true if your network does not support IPv6
|
|
|
|
# This maybe necessary for pulling Docker images from
|
|
|
|
# GCE docker repository
|
|
|
|
disable_ipv6_dns: false
|
2016-03-29 20:50:22 +08:00
|
|
|
|
|
|
|
|
|
|
|
# For the openstack integration kubelet will need credentials to access
|
|
|
|
# openstack apis like nova and cinder. Per default this values will be
|
|
|
|
# read from the environment.
|
|
|
|
openstack_auth_url: "{{ lookup('env','OS_AUTH_URL') }}"
|
|
|
|
openstack_username: "{{ lookup('env','OS_USERNAME') }}"
|
|
|
|
openstack_password: "{{ lookup('env','OS_PASSWORD') }}"
|
|
|
|
openstack_region: "{{ lookup('env','OS_REGION_NAME') }}"
|
|
|
|
openstack_tenant_id: "{{ lookup('env','OS_TENANT_ID') }}"
|