summaryrefslogtreecommitdiffstats
path: root/roles/openshift_router/tasks/main.yml
blob: b88b020fe583bd4a06e5b88bb42dad53347110f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---

- set_fact: _ortr_images="--images='{{ openshift.master.registry_url }}'"

- set_fact: _ortr_selector="--selector='{{ openshift.master.router_selector }}'"

- name: Deploy OpenShift Router
  command: >
    {{ openshift.common.admin_binary }} router
    --create --replicas={{ num_infra }}
    --service-account=router {{ _ortr_selector }}
    --credentials={{ openshift_master_config_dir }}/openshift-router.kubeconfig {{ _ortr_images }}
  register: _ortr_results
  changed_when: "'service exists' not in _ortr_results.stdout"