diff options
author | Lénaïc Huard <lhuard@amadeus.com> | 2016-01-07 15:09:46 +0100 |
---|---|---|
committer | Lénaïc Huard <lhuard@amadeus.com> | 2016-01-08 18:17:51 +0100 |
commit | 0c056112112886e0d5683a10eec3368695c96e88 (patch) | |
tree | 2207b1f1654cfff2f0b8e1fe5ac7efd8bd263bc5 /playbooks/gce | |
parent | b733e7fb2c79c6b7423c159681eba28417cdf599 (diff) | |
download | openshift-0c056112112886e0d5683a10eec3368695c96e88.tar.gz openshift-0c056112112886e0d5683a10eec3368695c96e88.tar.bz2 openshift-0c056112112886e0d5683a10eec3368695c96e88.tar.xz openshift-0c056112112886e0d5683a10eec3368695c96e88.zip |
Make bin/cluster able to spawn OSE 3.1 clusters
Diffstat (limited to 'playbooks/gce')
-rw-r--r-- | playbooks/gce/openshift-cluster/vars.yml | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/playbooks/gce/openshift-cluster/vars.yml b/playbooks/gce/openshift-cluster/vars.yml index bdb39923e..7fb13c7a6 100644 --- a/playbooks/gce/openshift-cluster/vars.yml +++ b/playbooks/gce/openshift-cluster/vars.yml @@ -3,6 +3,13 @@ do_we_use_openshift_sdn: true sdn_network_plugin: redhat/openshift-ovs-subnet debug_level: 2 # os_sdn_network_plugin_name can be ovssubnet or multitenant, see https://docs.openshift.org/latest/architecture/additional_concepts/sdn.html#ovssubnet-plugin-operation + +deployment_rhel7_ent_base: + image: rhel-7 + machine_type: n1-standard-1 + ssh_user: + sudo: yes + deployment_vars: origin: image: preinstalled-slave-50g-v5 @@ -14,8 +21,6 @@ deployment_vars: machine_type: n1-standard-1 ssh_user: root sudo: no - enterprise: - image: rhel-7 - machine_type: n1-standard-1 - ssh_user: - sudo: yes + enterprise: "{{ deployment_rhel7_ent_base }}" + openshift-enterprise: "{{ deployment_rhel7_ent_base }}" + atomic-enterprise: "{{ deployment_rhel7_ent_base }}" |