build_node_group.yml 2.4 KB

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