build_ami.yml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ---
  2. - hosts: localhost
  3. connection: local
  4. gather_facts: no
  5. tasks:
  6. - name: Require openshift_aws_base_ami
  7. fail:
  8. msg: "A base AMI is required for AMI building. Please ensure `openshift_aws_base_ami` is defined."
  9. when: openshift_aws_base_ami is undefined
  10. - name: "Alert user to variables needed and their values - {{ item.name }}"
  11. debug:
  12. msg: "{{ item.msg }}"
  13. with_items:
  14. - name: openshift_aws_clusterid
  15. msg: "openshift_aws_clusterid={{ openshift_aws_clusterid | default('default') }}"
  16. - name: openshift_aws_region
  17. msg: "openshift_aws_region={{ openshift_aws_region | default('us-east-1') }}"
  18. - import_playbook: provision_instance.yml
  19. vars:
  20. openshift_aws_node_group_type: compute
  21. - hosts: nodes
  22. gather_facts: False
  23. tasks:
  24. - name: set the user to perform installation
  25. set_fact:
  26. ansible_ssh_user: "{{ openshift_aws_build_ami_ssh_user | default(ansible_ssh_user) }}"
  27. openshift_node_bootstrap: True
  28. openshift_node_image_prep_packages:
  29. - cloud-utils-growpart
  30. # This is the part that installs all of the software and configs for the instance
  31. # to become a node.
  32. - import_playbook: ../../openshift-node/private/image_prep.yml
  33. - import_playbook: seal_ami.yml
  34. vars:
  35. openshift_aws_ami_name: "openshift-gi-{{ lookup('pipe', 'date +%Y%m%d%H%M')}}"