kubespray/roles/kubernetes/preinstall/defaults/main.yml

21 lines
581 B
YAML
Raw Normal View History

---
2016-01-21 20:19:02 +08:00
run_gitinfos: false
2015-12-31 21:07:02 +08:00
common_required_pkgs:
- python-httplib2
2015-12-31 21:07:02 +08:00
- openssl
- curl
2016-01-09 17:45:50 +08:00
- rsync
- bash-completion
2015-12-31 21:07:02 +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') }}"