summaryrefslogtreecommitdiffstats
path: root/playbooks/gce/openshift-cluster/vars.yml
diff options
context:
space:
mode:
authorJason DeTiberus <detiber@gmail.com>2016-04-25 16:18:37 -0400
committerJason DeTiberus <detiber@gmail.com>2016-04-25 16:18:37 -0400
commit4e01bd4a87088f53af309b36ce4da431888fcaf4 (patch)
tree557c508905cf93d2f37928b9fbc8600d2a416bdb /playbooks/gce/openshift-cluster/vars.yml
parent3262718f8fc4658a3b223823244f1f78cb0eb6c8 (diff)
parenta5386b0f51a2b20f0b5c382663bb5827438da437 (diff)
downloadopenshift-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.yml6
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 }}"