1234567891011121314151617181920212223242526272829303132333435363738 |
- ---
- - hosts: localhost
- connection: local
- gather_facts: no
- tasks:
- - name: Require openshift_aws_base_ami
- fail:
- msg: "A base AMI is required for AMI building. Please ensure `openshift_aws_base_ami` is defined."
- when: openshift_aws_base_ami is undefined
- - name: "Alert user to variables needed and their values - {{ item.name }}"
- debug:
- msg: "{{ item.msg }}"
- with_items:
- - name: openshift_aws_clusterid
- msg: "openshift_aws_clusterid={{ openshift_aws_clusterid | default('default') }}"
- - name: openshift_aws_region
- msg: "openshift_aws_region={{ openshift_aws_region | default('us-east-1') }}"
- - include: provision_instance.yml
- vars:
- openshift_aws_node_group_type: compute
- - hosts: nodes
- gather_facts: False
- tasks:
- - name: set the user to perform installation
- set_fact:
- ansible_ssh_user: "{{ openshift_aws_build_ami_ssh_user | default('root') }}"
- openshift_node_bootstrap: True
- # This is the part that installs all of the software and configs for the instance
- # to become a node.
- - include: ../../common/openshift-node/image_prep.yml
- - include: seal_ami.yml
- vars:
- openshift_aws_ami_name: "openshift-gi-{{ lookup('pipe', 'date +%Y%m%d%H%M')}}"
|