launch_config.yml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. ---
  2. - fail:
  3. msg: "Ensure that an AMI value is defined for openshift_aws_ami or openshift_aws_launch_config_custom_image."
  4. when:
  5. - openshift_aws_ami is undefined
  6. - fail:
  7. msg: "Ensure that openshift_deployment_type is defined."
  8. when:
  9. - openshift_deployment_type is undefined
  10. - name: query vpc
  11. ec2_vpc_net_facts:
  12. region: "{{ openshift_aws_region }}"
  13. filters:
  14. 'tag:Name': "{{ openshift_aws_vpc_name }}"
  15. register: vpcout
  16. - name: fetch the security groups for launch config
  17. ec2_group_facts:
  18. filters:
  19. group-name: "{{ openshift_aws_launch_config_security_groups }}"
  20. vpc-id: "{{ vpcout.vpcs[0].id }}"
  21. region: "{{ openshift_aws_region }}"
  22. register: ec2sgs
  23. # Create the scale group config
  24. - name: Create the node scale group launch config
  25. ec2_lc:
  26. name: "{{ openshift_aws_launch_config_name }}"
  27. region: "{{ openshift_aws_region }}"
  28. image_id: "{{ openshift_aws_ami }}"
  29. instance_type: "{{ openshift_aws_node_group_config[openshift_aws_node_group_type].instance_type }}"
  30. security_groups: "{{ openshift_aws_launch_config_security_group_id | default(ec2sgs.security_groups | map(attribute='group_id')| list) }}"
  31. user_data: "{{ lookup('template', 'user_data.j2') }}"
  32. key_name: "{{ openshift_aws_ssh_key_name }}"
  33. ebs_optimized: False
  34. volumes: "{{ openshift_aws_node_group_config[openshift_aws_node_group_type].volumes }}"
  35. assign_public_ip: True