summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2018-02-12 11:53:48 -0800
committerGitHub <noreply@github.com>2018-02-12 11:53:48 -0800
commite2b4f9d521b858d69a5ae9fd57b762532cd10b92 (patch)
tree98378f03afd87be7ac807fee60f44e33bc1839d3
parent31b0dff6385c48ebd3b3c306a2b53e9d9b63b744 (diff)
parent2b6cc36156de2c0defca6ed218f9da5b1a2f5754 (diff)
downloadopenshift-e2b4f9d521b858d69a5ae9fd57b762532cd10b92.tar.gz
openshift-e2b4f9d521b858d69a5ae9fd57b762532cd10b92.tar.bz2
openshift-e2b4f9d521b858d69a5ae9fd57b762532cd10b92.tar.xz
openshift-e2b4f9d521b858d69a5ae9fd57b762532cd10b92.zip
Merge pull request #7107 from csrwng/cluster_operator_components
Automatic merge from submit-queue. Add playbook to install components for cluster operator Adds a playbook to install infra components for cluster operator
-rw-r--r--playbooks/cluster-operator/aws/components.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/playbooks/cluster-operator/aws/components.yml b/playbooks/cluster-operator/aws/components.yml
new file mode 100644
index 000000000..8587aac45
--- /dev/null
+++ b/playbooks/cluster-operator/aws/components.yml
@@ -0,0 +1,24 @@
+---
+- name: Alert user to variables needed
+ hosts: localhost
+ tasks:
+ - name: Alert user to variables needed - clusterid
+ debug:
+ msg: "openshift_aws_clusterid={{ openshift_aws_clusterid | default('default') }}"
+
+ - name: Alert user to variables needed - region
+ debug:
+ msg: "openshift_aws_region={{ openshift_aws_region | default('us-east-1') }}"
+
+- name: Setup the master node group
+ hosts: localhost
+ tasks:
+ - import_role:
+ name: openshift_aws
+ tasks_from: setup_master_group.yml
+
+- name: run the init
+ import_playbook: ../../init/main.yml
+
+- name: Include the components playbook to finish the hosted configuration
+ import_playbook: ../../common/private/components.yml