uninstall_masters.yml 499 B

12345678910111213141516171819
  1. ---
  2. - name: Alert user to variables needed
  3. hosts: localhost
  4. tasks:
  5. - name: Alert user to variables needed - clusterid
  6. debug:
  7. msg: "openshift_aws_clusterid={{ openshift_aws_clusterid }}"
  8. - name: Alert user to variables needed - region
  9. debug:
  10. msg: "openshift_aws_region={{ openshift_aws_region }}"
  11. - name: Delete the master node group
  12. hosts: localhost
  13. tasks:
  14. - name: delete masters
  15. import_role:
  16. name: openshift_aws
  17. tasks_from: uninstall_masters.yml