scale_group.yml 1.3 KB

1234567891011121314151617181920
  1. ---
  2. - name: Create the scale group
  3. ec2_asg:
  4. name: "{{ openshift_aws_scale_group_basename }} {{ item.key }}"
  5. launch_config_name: "{{ openshift_aws_launch_config_basename }}-{{ item.key }}{{ '-' ~ openshift_aws_new_version if openshift_aws_new_version != '' else '' }}"
  6. health_check_period: "{{ item.value.health_check.period }}"
  7. health_check_type: "{{ item.value.health_check.type }}"
  8. min_size: "{{ item.value.min_size }}"
  9. max_size: "{{ item.value.max_size }}"
  10. desired_capacity: "{{ item.value.desired_size }}"
  11. region: "{{ openshift_aws_region }}"
  12. termination_policies: "{{ item.value.termination_policy if 'termination_policy' in item.value else omit }}"
  13. load_balancers: "{{ item.value.elbs if 'elbs' in item.value else omit }}"
  14. wait_for_instances: "{{ item.value.wait_for_instances | default(False)}}"
  15. vpc_zone_identifier: "{{ subnetout.subnets[0].id }}"
  16. replace_instances: "{{ openshift_aws_node_group_replace_instances if openshift_aws_node_group_replace_instances != [] else omit }}"
  17. replace_all_instances: "{{ omit if openshift_aws_node_group_replace_instances != [] else (item.value.replace_all_instances | default(omit)) }}"
  18. tags:
  19. - "{{ openshift_aws_node_group_config_tags | combine(item.value.tags) }}"
  20. with_dict: "{{ l_nodes_to_build }}"