You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
407 B
12 lines
407 B
---
|
|
|
|
- name: Complete the OpenShift installation
|
|
hosts: itix
|
|
become: yes
|
|
pre_tasks:
|
|
- name: Enable the wildcard routes on the OpenShift router
|
|
command: oc set env -n default dc/router ROUTER_ALLOW_WILDCARD_ROUTES=true
|
|
- name: Restart the router
|
|
command: oc rollout latest -n default dc/router
|
|
roles:
|
|
- { name: 'hostpath-provisioner', tags: 'hostpath-provisioner' }
|
|
|