scale_group.yml 1.5 KB

12345678910111213141516171819202122232425262728
  1. ---
  2. - name: fetch the subnet to use in scale group
  3. ec2_vpc_subnet_facts:
  4. region: "{{ openshift_aws_region }}"
  5. filters:
  6. "tag:Name": "{{ openshift_aws_subnet_name }}"
  7. vpc-id: "{{ vpcout.vpcs[0].id }}"
  8. register: subnetout
  9. - name: Create the scale group
  10. ec2_asg:
  11. name: "{{ openshift_aws_scale_group_basename }} {{ item.key }}"
  12. launch_config_name: "{{ openshift_aws_launch_config_basename }}-{{ item.key }}-{{ l_epoch_time }}"
  13. health_check_period: "{{ item.value.health_check.period }}"
  14. health_check_type: "{{ item.value.health_check.type }}"
  15. min_size: "{{ item.value.min_size }}"
  16. max_size: "{{ item.value.max_size }}"
  17. desired_capacity: "{{ item.value.desired_size }}"
  18. region: "{{ openshift_aws_region }}"
  19. termination_policies: "{{ item.value.termination_policy if 'termination_policy' in item.value else omit }}"
  20. load_balancers: "{{ item.value.elbs if 'elbs' in item.value else omit }}"
  21. wait_for_instances: "{{ item.value.wait_for_instances | default(False)}}"
  22. vpc_zone_identifier: "{{ subnetout.subnets[0].id }}"
  23. replace_instances: "{{ openshift_aws_node_group_replace_instances if openshift_aws_node_group_replace_instances != [] else omit }}"
  24. replace_all_instances: "{{ omit if openshift_aws_node_group_replace_instances != [] else (item.value.replace_all_instances | default(omit)) }}"
  25. tags:
  26. - "{{ openshift_aws_node_group_config_tags | combine(item.value.tags) }}"
  27. with_dict: "{{ l_nodes_to_build }}"