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

21 lines
581 B
YAML
Raw Normal View History

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