summaryrefslogtreecommitdiffstats
path: root/roles/openshift_router/tasks/main.yml
blob: 56dbcc414d1aabd967821cabfe063dff8ad3a02b (plain)
1
2
3
4
5
6
7
8
---
- set_fact: _option_images="--images={{ openshift_registry_url|quote }}"
  when: openshift_registry_url is defined

- name: Deploy OpenShift Router
  command: openshift ex router --create --credentials="{{ansible_env['HOME']}}"/.config/openshift/config {{ _option_images|default() }}
  register: _openshift_router__results
  changed_when: "'service exists' not in _openshift_router__results.stdout"