|
@@ -37,7 +37,7 @@
|
|
|
- name: Update router image to current version
|
|
|
when: all_routers.rc == 0
|
|
|
command: >
|
|
|
- {{ oc_cmd }} patch dc/{{ item['labels']['deploymentconfig'] }} -p
|
|
|
+ {{ oc_cmd }} patch dc/{{ item['labels']['deploymentconfig'] }} -n {{ item['namespace'] }} -p
|
|
|
'{"spec":{"template":{"spec":{"containers":[{"name":"router","image":"{{ router_image }}","livenessProbe":{"tcpSocket":null,"httpGet":{"path": "/healthz", "port": 1936, "host": "localhost", "scheme": "HTTP"},"initialDelaySeconds":10,"timeoutSeconds":1}}]}}}}'
|
|
|
--api-version=v1
|
|
|
with_items: haproxy_routers
|
|
@@ -52,7 +52,7 @@
|
|
|
- name: Update registry image to current version
|
|
|
when: _default_registry.rc == 0
|
|
|
command: >
|
|
|
- {{ oc_cmd }} patch dc/docker-registry -p
|
|
|
+ {{ oc_cmd }} patch dc/docker-registry -p -n default
|
|
|
'{"spec":{"template":{"spec":{"containers":[{"name":"registry","image":"{{ registry_image }}"}]}}}}'
|
|
|
--api-version=v1
|
|
|
|