provision_nodes.yml 522 B

123456789101112131415161718
  1. ---
  2. - name: create the node scale groups
  3. hosts: localhost
  4. connection: local
  5. gather_facts: yes
  6. tasks:
  7. - name: Alert user to variables needed - clusterid
  8. debug:
  9. msg: "openshift_aws_clusterid={{ openshift_aws_clusterid | default('default') }}"
  10. - name: Alert user to variables needed - region
  11. debug:
  12. msg: "openshift_aws_region={{ openshift_aws_region | default('us-east-1') }}"
  13. - name: create the node groups
  14. import_role:
  15. name: openshift_aws
  16. tasks_from: provision_nodes.yml