diff options
author | Thomas Wiest <twiest@users.noreply.github.com> | 2016-01-11 10:16:09 -0500 |
---|---|---|
committer | Thomas Wiest <twiest@users.noreply.github.com> | 2016-01-11 10:16:09 -0500 |
commit | 0e60de158e27b6f15adc943db703fec4bd2c72bc (patch) | |
tree | 282251a948f1fe14d7af4366e0d32fda27c4670e /playbooks/aws/openshift-cluster | |
parent | c64ca552a15885b5811e535f81678a1dc80c0087 (diff) | |
parent | 0c056112112886e0d5683a10eec3368695c96e88 (diff) | |
download | openshift-0e60de158e27b6f15adc943db703fec4bd2c72bc.tar.gz openshift-0e60de158e27b6f15adc943db703fec4bd2c72bc.tar.bz2 openshift-0e60de158e27b6f15adc943db703fec4bd2c72bc.tar.xz openshift-0e60de158e27b6f15adc943db703fec4bd2c72bc.zip |
Merge pull request #1128 from lhuard1A/bin_cluster_ose_3.1
Make bin/cluster able to spawn an OSE 3.1 cluster
Diffstat (limited to 'playbooks/aws/openshift-cluster')
-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 c8ee9bad4..ae12286bd 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 }}" |