|
@@ -20,17 +20,6 @@
|
|
|
annotations: "{{ openshift_node_annotations | default(None) }}"
|
|
|
schedulable: "{{ openshift_schedulable | default(openshift_scheduleable) | default(None) }}"
|
|
|
|
|
|
-- name: Create temp directory for syncing certs
|
|
|
- hosts: localhost
|
|
|
- connection: local
|
|
|
- become: no
|
|
|
- gather_facts: no
|
|
|
- tasks:
|
|
|
- - name: Create local temp directory for syncing certs
|
|
|
- local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
|
|
|
- register: mktemp
|
|
|
- changed_when: False
|
|
|
-
|
|
|
- name: Evaluate node groups
|
|
|
hosts: localhost
|
|
|
become: no
|
|
@@ -102,12 +91,3 @@
|
|
|
- name: Create group for deployment type
|
|
|
group_by: key=oo_nodes_deployment_type_{{ openshift.common.deployment_type }}
|
|
|
changed_when: False
|
|
|
-
|
|
|
-- name: Delete temporary directory on localhost
|
|
|
- hosts: localhost
|
|
|
- connection: local
|
|
|
- become: no
|
|
|
- gather_facts: no
|
|
|
- tasks:
|
|
|
- - file: name={{ mktemp.stdout }} state=absent
|
|
|
- changed_when: False
|