main.yml 422 B

12345678910
  1. ---
  2. - name: Deploy OpenShift Router
  3. command: >
  4. {{ openshift.common.admin_binary }} router
  5. --create --replicas={{ openshift.master.infra_nodes | length }}
  6. --namespace=default
  7. --service-account=router {{ ortr_selector }}
  8. --credentials={{ openshift_master_config_dir }}/openshift-router.kubeconfig {{ ortr_images }}
  9. register: ortr_results
  10. changed_when: "'service exists' not in ortr_results.stdout"