diff options
author | Tomas Sedovic <tomas@sedovic.cz> | 2017-07-19 15:45:04 +0200 |
---|---|---|
committer | Tomas Sedovic <tomas@sedovic.cz> | 2017-07-19 15:45:04 +0200 |
commit | 63e623561f8fbc54e87248edf789b6c5d395cf26 (patch) | |
tree | 42ee69f215205290295b867cb867c373cfbf99d5 | |
parent | 316fe94d1d8960d325c19954e2984b61ff215dcf (diff) | |
download | openshift-63e623561f8fbc54e87248edf789b6c5d395cf26.tar.gz openshift-63e623561f8fbc54e87248edf789b6c5d395cf26.tar.bz2 openshift-63e623561f8fbc54e87248edf789b6c5d395cf26.tar.xz openshift-63e623561f8fbc54e87248edf789b6c5d395cf26.zip |
Set ansible_become for the OSEv3 group
Because openshift-ansible requires root on the cluster nodes, but it
doesn't explicitly set it in the playbooks (like we do), let's set it
in our inventory instead of requiring to pass `--become` to
`ansible-playbook`.
That will simplify the installation steps as well as let us include
the provisioning and openshift-ansible playbooks in a single playbook.
-rw-r--r-- | playbooks/provisioning/openstack/README.md | 2 | ||||
-rw-r--r-- | playbooks/provisioning/openstack/sample-inventory/group_vars/OSEv3.yml | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/playbooks/provisioning/openstack/README.md b/playbooks/provisioning/openstack/README.md index 5c2f61202..ac648a559 100644 --- a/playbooks/provisioning/openstack/README.md +++ b/playbooks/provisioning/openstack/README.md @@ -181,7 +181,7 @@ file, this is how you stat the provisioning process: Once it succeeds, you can install openshift by running: - ansible-playbook --become --user openshift --private-key ~/.ssh/openshift -i inventory/ openshift-ansible/playbooks/byo/config.yml + ansible-playbook --user openshift --private-key ~/.ssh/openshift -i inventory/ openshift-ansible/playbooks/byo/config.yml ## License diff --git a/playbooks/provisioning/openstack/sample-inventory/group_vars/OSEv3.yml b/playbooks/provisioning/openstack/sample-inventory/group_vars/OSEv3.yml index 70e4d8cb1..4ce96a031 100644 --- a/playbooks/provisioning/openstack/sample-inventory/group_vars/OSEv3.yml +++ b/playbooks/provisioning/openstack/sample-inventory/group_vars/OSEv3.yml @@ -19,3 +19,7 @@ openshift_override_hostname_check: true # For POCs or demo environments that are using smaller instances than # the official recommended values for RAM and DISK, uncomment the line below. #openshift_disable_check: disk_availability,memory_availability + +# NOTE(shadower): Always switch to root on the OSEv3 nodes. +# openshift-ansible requires an explicit `become`. +ansible_become: true |