summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-node/setup.yml
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2017-09-29 22:25:19 -0700
committerGitHub <noreply@github.com>2017-09-29 22:25:19 -0700
commit1ab0e6f8a9efe7c4fb47119db3d879e46d12d7bd (patch)
tree6daefe4dc950f91e7e864595fe38a31ed1c62876 /playbooks/common/openshift-node/setup.yml
parentd1e51603d4cc7a3b7ad8381c730ac51ae4037139 (diff)
parentba42e26ecfb8beda253fba0dc9a4c4c38dec9ec4 (diff)
downloadopenshift-1ab0e6f8a9efe7c4fb47119db3d879e46d12d7bd.tar.gz
openshift-1ab0e6f8a9efe7c4fb47119db3d879e46d12d7bd.tar.bz2
openshift-1ab0e6f8a9efe7c4fb47119db3d879e46d12d7bd.tar.xz
openshift-1ab0e6f8a9efe7c4fb47119db3d879e46d12d7bd.zip
Merge pull request #5565 from mgugino-upstream-stage/provisioning-centos-support
Automatic merge from submit-queue. Changes necessary to support AMI building Currently, AMI building does not work. These changes implement the necessary steps to build an AMI for usage as a 'golden node image'.
Diffstat (limited to 'playbooks/common/openshift-node/setup.yml')
-rw-r--r--playbooks/common/openshift-node/setup.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/playbooks/common/openshift-node/setup.yml b/playbooks/common/openshift-node/setup.yml
new file mode 100644
index 000000000..794c03a67
--- /dev/null
+++ b/playbooks/common/openshift-node/setup.yml
@@ -0,0 +1,27 @@
+---
+- name: Disable excluders
+ hosts: oo_nodes_to_config
+ gather_facts: no
+ roles:
+ - role: openshift_excluder
+ r_openshift_excluder_action: disable
+ r_openshift_excluder_service_type: "{{ openshift.common.service_type }}"
+
+- name: Evaluate node groups
+ hosts: localhost
+ become: no
+ connection: local
+ tasks:
+ - name: Evaluate oo_containerized_master_nodes
+ add_host:
+ name: "{{ item }}"
+ groups: oo_containerized_master_nodes
+ ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
+ ansible_become: "{{ g_sudo | default(omit) }}"
+ with_items: "{{ groups.oo_nodes_to_config | default([]) }}"
+ when:
+ - hostvars[item].openshift is defined
+ - hostvars[item].openshift.common is defined
+ - hostvars[item].openshift.common.is_containerized | bool
+ - (item in groups.oo_nodes_to_config and item in groups.oo_masters_to_config)
+ changed_when: False