main.yml 393 B

1234567891011
  1. ---
  2. - set_fact: _ortr_images="--images={{ oreg_url|quote }}"
  3. when: oreg_url is defined
  4. - name: Deploy OpenShift Router
  5. command: >
  6. {{ openshift.common.admin_binary }} router
  7. --create
  8. --credentials={{ openshift_master_config_dir }}/openshift-router.kubeconfig {{ _ortr_images|default() }}
  9. register: _ortr_results
  10. changed_when: "'service exists' not in _ortr_results.stdout"