summaryrefslogtreecommitdiffstats
path: root/roles/openshift_router/tasks/main.yml
blob: 498a651276574b13288db097bdc77050b8837d06 (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={{ openshift.master.infra_nodes }}
    --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"