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/aws | |
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/aws')
-rw-r--r-- | playbooks/aws/openshift-cluster/vars.yml | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/playbooks/aws/openshift-cluster/vars.yml b/playbooks/aws/openshift-cluster/vars.yml index 452c90d6a..846c92577 100644 --- a/playbooks/aws/openshift-cluster/vars.yml +++ b/playbooks/aws/openshift-cluster/vars.yml @@ -1,5 +1,19 @@ --- debug_level: 2 + +deployment_rhel7_ent_base: + # rhel-7.1, requires cloud access subscription + image: ami-10663b78 + image_name: + region: us-east-1 + ssh_user: ec2-user + sudo: yes + keypair: libra + type: m4.large + security_groups: [ 'public' ] + vpc_subnet: + assign_public_ip: + deployment_vars: origin: # centos-7, requires marketplace @@ -25,15 +39,6 @@ deployment_vars: security_groups: [ 'public' ] vpc_subnet: assign_public_ip: - enterprise: - # rhel-7.1, requires cloud access subscription - image: ami-10663b78 - image_name: - region: us-east-1 - ssh_user: ec2-user - sudo: yes - keypair: libra - type: m4.large - security_groups: [ 'public' ] - vpc_subnet: - assign_public_ip: + enterprise: "{{ deployment_rhel7_ent_base }}" + openshift-enterprise: "{{ deployment_rhel7_ent_base }}" + atomic-enterprise: "{{ deployment_rhel7_ent_base }}" |