create_services.yml 297 B

1234567891011121314
  1. ---
  2. - name: Debug Deploy OpenShift Services
  3. hosts: localhost
  4. gather_facts: no
  5. tasks:
  6. - debug: var=create_services__master
  7. - name: Deploy OpenShift Services
  8. hosts: "{{ create_services__master }}"
  9. connection: ssh
  10. gather_facts: yes
  11. roles:
  12. - openshift_registry
  13. - openshift_router