deploy_cluster.yml 420 B

12345678910111213141516
  1. ---
  2. - import_playbook: init/main.yml
  3. - import_playbook: common/private/control_plane.yml
  4. - import_playbook: openshift-node/private/config.yml
  5. - import_playbook: common/private/components.yml
  6. - name: Print deprecated variable warning message if necessary
  7. hosts: oo_first_master
  8. gather_facts: no
  9. tasks:
  10. - debug: msg="{{__deprecation_message}}"
  11. when:
  12. - __deprecation_message | default ('') | length > 0