build_ami.yml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. - include: 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('root') }}"
  27. openshift_node_bootstrap: True
  28. # This is the part that installs all of the software and configs for the instance
  29. # to become a node.
  30. - include: ../../common/openshift-node/image_prep.yml
  31. - include: seal_ami.yml
  32. vars:
  33. openshift_aws_ami_name: "openshift-gi-{{ lookup('pipe', 'date +%Y%m%d%H%M')}}"