diff options
author | Andrew Butcher <abutcher@redhat.com> | 2016-04-25 14:06:38 -0400 |
---|---|---|
committer | Andrew Butcher <abutcher@redhat.com> | 2016-04-25 15:25:08 -0400 |
commit | a5386b0f51a2b20f0b5c382663bb5827438da437 (patch) | |
tree | edd2459e6075867d8ccb13fc795bc00f076036ce /playbooks/openstack/openshift-cluster/vars.yml | |
parent | 12c2d75d84f76ddd806bffa4e3e4acc0c2f24f95 (diff) | |
download | openshift-a5386b0f51a2b20f0b5c382663bb5827438da437.tar.gz openshift-a5386b0f51a2b20f0b5c382663bb5827438da437.tar.bz2 openshift-a5386b0f51a2b20f0b5c382663bb5827438da437.tar.xz openshift-a5386b0f51a2b20f0b5c382663bb5827438da437.zip |
Replace deprecated sudo with become.
Diffstat (limited to 'playbooks/openstack/openshift-cluster/vars.yml')
-rw-r--r-- | playbooks/openstack/openshift-cluster/vars.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/playbooks/openstack/openshift-cluster/vars.yml b/playbooks/openstack/openshift-cluster/vars.yml index ee26d223e..d45ab6b9e 100644 --- a/playbooks/openstack/openshift-cluster/vars.yml +++ b/playbooks/openstack/openshift-cluster/vars.yml @@ -21,17 +21,17 @@ openstack_flavor: deployment_rhel7_ent_base: image: "{{ lookup('oo_option', 'image_name') | default('rhel-guest-image-7.2-20151102.0.x86_64', True) }}" ssh_user: openshift - sudo: yes + become: yes deployment_vars: origin: image: "{{ lookup('oo_option', 'image_name') | default('centos-70-raw', True) }}" ssh_user: openshift - sudo: yes + become: yes online: image: ssh_user: root - sudo: no + become: no enterprise: "{{ deployment_rhel7_ent_base }}" openshift-enterprise: "{{ deployment_rhel7_ent_base }}" atomic-enterprise: "{{ deployment_rhel7_ent_base }}" |