build_node_group.yml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. ---
  2. # When openshift_aws_use_custom_ami is '' then
  3. # we retrieve the latest build AMI.
  4. # Then set openshift_aws_ami to the ami.
  5. - when: openshift_aws_ami == ''
  6. block:
  7. - name: fetch recently created AMI
  8. ec2_ami_find:
  9. region: "{{ openshift_aws_region }}"
  10. sort: creationDate
  11. sort_order: descending
  12. name: "{{ openshift_aws_ami_name }}*"
  13. ami_tags: "{{ openshift_aws_ami_tags }}"
  14. no_result_action: fail
  15. register: amiout
  16. - name: Set the openshift_aws_ami
  17. set_fact:
  18. openshift_aws_ami: "{{ amiout.results[0].ami_id }}"
  19. when:
  20. - "'results' in amiout"
  21. - amiout.results|length > 0
  22. # Need to set epoch time in one place to use for launch_config and scale_group
  23. - set_fact:
  24. l_epoch_time: "{{ ansible_date_time.epoch }}"
  25. #
  26. # query asg's and determine if we need to create the others.
  27. # if we find more than 1 for each type, then exit
  28. - name: query all asg's for this cluster
  29. ec2_asg_facts:
  30. region: "{{ openshift_aws_region }}"
  31. tags: "{{ {'kubernetes.io/cluster/' ~ openshift_aws_clusterid: openshift_aws_clusterid} | combine(l_node_group_config[openshift_aws_node_group.group].tags) }}"
  32. register: asgs
  33. - fail:
  34. msg: "Found more than 1 auto scaling group that matches the query for group: {{ openshift_aws_node_group }}"
  35. when:
  36. - asgs.results|length > 1
  37. - debug:
  38. msg: "{{ asgs }}"
  39. - name: set the value for the deployment_serial and the current asgs
  40. set_fact:
  41. l_deployment_serial: "{{ openshift_aws_node_group_deployment_serial if openshift_aws_node_group_deployment_serial is defined else asgs.results | scale_groups_serial(openshift_aws_node_group_upgrade) }}"
  42. openshift_aws_current_asgs: "{{ asgs.results | map(attribute='auto_scaling_group_name') | list | union(openshift_aws_current_asgs) }}"
  43. - name: dump deployment serial
  44. debug:
  45. msg: "Deployment serial: {{ l_deployment_serial }}"
  46. - name: dump current_asgs
  47. debug:
  48. msg: "openshift_aws_current_asgs: {{ openshift_aws_current_asgs }}"
  49. - when: openshift_aws_create_iam_role
  50. include_tasks: iam_role.yml
  51. - when: openshift_aws_create_launch_config
  52. include_tasks: launch_config.yml
  53. - when: openshift_aws_create_scale_group
  54. include_tasks: scale_group.yml