diff options
author | Jason DeTiberus <detiber@gmail.com> | 2016-04-25 16:18:37 -0400 |
---|---|---|
committer | Jason DeTiberus <detiber@gmail.com> | 2016-04-25 16:18:37 -0400 |
commit | 4e01bd4a87088f53af309b36ce4da431888fcaf4 (patch) | |
tree | 557c508905cf93d2f37928b9fbc8600d2a416bdb /playbooks/gce/openshift-cluster/vars.yml | |
parent | 3262718f8fc4658a3b223823244f1f78cb0eb6c8 (diff) | |
parent | a5386b0f51a2b20f0b5c382663bb5827438da437 (diff) | |
download | openshift-4e01bd4a87088f53af309b36ce4da431888fcaf4.tar.gz openshift-4e01bd4a87088f53af309b36ce4da431888fcaf4.tar.bz2 openshift-4e01bd4a87088f53af309b36ce4da431888fcaf4.tar.xz openshift-4e01bd4a87088f53af309b36ce4da431888fcaf4.zip |
Merge pull request #1804 from abutcher/v2-sudo
Replace deprecated sudo with become.
Diffstat (limited to 'playbooks/gce/openshift-cluster/vars.yml')
-rw-r--r-- | playbooks/gce/openshift-cluster/vars.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/playbooks/gce/openshift-cluster/vars.yml b/playbooks/gce/openshift-cluster/vars.yml index d173213fc..1497d5520 100644 --- a/playbooks/gce/openshift-cluster/vars.yml +++ b/playbooks/gce/openshift-cluster/vars.yml @@ -5,19 +5,19 @@ deployment_rhel7_ent_base: image: "{{ lookup('oo_option', 'image_name') | default('rhel-7', True) }}" machine_type: "{{ lookup('oo_option', 'machine_type') | default('n1-standard-1', True) }}" ssh_user: "{{ lookup('env', 'gce_ssh_user') | default(ansible_ssh_user, true) }}" - sudo: yes + become: yes deployment_vars: origin: image: "{{ lookup('oo_option', 'image_name') | default('centos-7', True) }}" machine_type: "{{ lookup('oo_option', 'machine_type') | default('n1-standard-1', True) }}" ssh_user: "{{ lookup('env', 'gce_ssh_user') | default(ansible_ssh_user, true) }}" - sudo: yes + become: yes online: image: libra-rhel7 machine_type: n1-standard-1 ssh_user: root - sudo: no + become: no enterprise: "{{ deployment_rhel7_ent_base }}" openshift-enterprise: "{{ deployment_rhel7_ent_base }}" atomic-enterprise: "{{ deployment_rhel7_ent_base }}" |