summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-cluster/set_infra_launch_facts_tasks.yml
diff options
context:
space:
mode:
authorThomas Wiest <twiest@users.noreply.github.com>2015-10-14 11:11:34 -0400
committerThomas Wiest <twiest@users.noreply.github.com>2015-10-14 11:11:34 -0400
commitb9fb83e6855daca7ac03eb3ca6f826c64f60b264 (patch)
tree8154ec29cd5327e28530b195b71e6ea40fe8a193 /playbooks/common/openshift-cluster/set_infra_launch_facts_tasks.yml
parentf1b82648b06f393dfc960a4fc1f5bbe5b97b608a (diff)
parentccf9acd9dad5c9dc2e1640f417a9109c9042a689 (diff)
downloadopenshift-b9fb83e6855daca7ac03eb3ca6f826c64f60b264.tar.gz
openshift-b9fb83e6855daca7ac03eb3ca6f826c64f60b264.tar.bz2
openshift-b9fb83e6855daca7ac03eb3ca6f826c64f60b264.tar.xz
openshift-b9fb83e6855daca7ac03eb3ca6f826c64f60b264.zip
Merge pull request #688 from twiest/gce
Fixed GCE playbooks so that they're more like the AWS playbooks.
Diffstat (limited to 'playbooks/common/openshift-cluster/set_infra_launch_facts_tasks.yml')
-rw-r--r--playbooks/common/openshift-cluster/set_infra_launch_facts_tasks.yml15
1 files changed, 0 insertions, 15 deletions
diff --git a/playbooks/common/openshift-cluster/set_infra_launch_facts_tasks.yml b/playbooks/common/openshift-cluster/set_infra_launch_facts_tasks.yml
deleted file mode 100644
index 01d70a1a6..000000000
--- a/playbooks/common/openshift-cluster/set_infra_launch_facts_tasks.yml
+++ /dev/null
@@ -1,15 +0,0 @@
----
-- set_fact: k8s_type=infra
-- set_fact: sub_host_type="{{ type }}"
-- set_fact: number_infra="{{ count }}"
-
-- name: Generate infra instance names(s)
- set_fact:
- scratch_name: "{{ cluster_id }}-{{ k8s_type }}-{{ sub_host_type }}-{{ '%05x' | format(1048576 | random) }}"
- register: infra_names_output
- with_sequence: count={{ number_infra }}
-
-- set_fact:
- infra_names: "{{ infra_names_output.results | default([], true)
- | oo_collect('ansible_facts')
- | oo_collect('scratch_name') }}"