summaryrefslogtreecommitdiffstats
path: root/playbooks/aws/openshift-cluster/vars.yml
diff options
context:
space:
mode:
authorKenny Woodson <kwoodson@redhat.com>2017-08-24 22:13:07 -0400
committerKenny Woodson <kwoodson@redhat.com>2017-09-07 11:23:24 -0400
commit63ecca817c45242f3db0495d99b947ba0471789e (patch)
treebc79709891115ed9a1c4e2ecbafa63b71a487714 /playbooks/aws/openshift-cluster/vars.yml
parent6da235f41a31776b1bc253a34dc14a30307e331e (diff)
downloadopenshift-63ecca817c45242f3db0495d99b947ba0471789e.tar.gz
openshift-63ecca817c45242f3db0495d99b947ba0471789e.tar.bz2
openshift-63ecca817c45242f3db0495d99b947ba0471789e.tar.xz
openshift-63ecca817c45242f3db0495d99b947ba0471789e.zip
Fixing variables and allowing custom ami.
Diffstat (limited to 'playbooks/aws/openshift-cluster/vars.yml')
-rw-r--r--playbooks/aws/openshift-cluster/vars.yml11
1 files changed, 7 insertions, 4 deletions
diff --git a/playbooks/aws/openshift-cluster/vars.yml b/playbooks/aws/openshift-cluster/vars.yml
index 47da03cb7..1d91593e2 100644
--- a/playbooks/aws/openshift-cluster/vars.yml
+++ b/playbooks/aws/openshift-cluster/vars.yml
@@ -14,7 +14,7 @@ provision:
# when creating an encrypted AMI please specify use_encryption
use_encryption: False
- openshift_ami_tags:
+ ami_tags:
bootstrap: "true"
openshift-created: "true"
clusterid: "{{ clusterid }}"
@@ -22,6 +22,9 @@ provision:
# Use s3 backed registry storage
openshift_registry_s3: True
+ # whether to use custome ami for each node type
+ use_custom_ami: False
+
# if using custom certificates these are required for the ELB
iam_cert_ca:
name: "{{ clusterid }}_openshift"
@@ -45,7 +48,7 @@ provision:
# master specific cluster node settings
master:
instance_type: m4.xlarge
- ami: ami-cdeec8b6 # if using an encrypted AMI this will be replaced
+ ami: ami-cdeec8b6 # if using an encrypted or custom AMI this will be replaced
volumes:
- device_name: /dev/sdb
volume_size: 100
@@ -65,7 +68,7 @@ provision:
# compute specific cluster node settings
compute:
instance_type: m4.xlarge
- ami: ami-cdeec8b6
+ ami: ami-cdeec8b6 # if using an encrypted or custom AMI this will be replaced
volumes:
- device_name: /dev/sdb
volume_size: 100
@@ -84,7 +87,7 @@ provision:
# infra specific cluster node settings
infra:
instance_type: m4.xlarge
- ami: ami-cdeec8b6
+ ami: ami-cdeec8b6 # if using an encrypted or custom AMI this will be replaced
volumes:
- device_name: /dev/sdb
volume_size: 100