scale_group.yml 2.1 KB

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