set_master_launch_facts_tasks.yml 386 B

1234567891011
  1. ---
  2. - set_fact: k8s_type="master"
  3. - name: Generate master instance names(s)
  4. set_fact:
  5. scratch_name: "{{ cluster_id }}-{{ k8s_type }}-{{ '%05x' | format(1048576 | random) }}"
  6. register: master_names_output
  7. with_sequence: start=1 end={{ num_masters }}
  8. - set_fact:
  9. master_names: "{{ master_names_output.results | oo_collect('ansible_facts') | oo_collect('scratch_name') }}"