Skip to content

Commit

Permalink
Update OVN image patching for combined ovnkube container
Browse files Browse the repository at this point in the history
Instead of ovnkube-master and ovnkube-node, it's now a single
ovnkube-controller container.

Signed-off-by: Dan Williams <[email protected]>
  • Loading branch information
dcbw authored and mohit-sheth committed Aug 31, 2023
1 parent 07636a9 commit 39f3f63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OCP-4.X/roles/post-install/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@
register: ovnkube_node_pod

- name: Check one ovnkube-node pod to see if ovn image has been updated
shell: oc get pod -n {{ ovn_namespace }} {{ovnkube_node_pod.stdout}} -o json| jq '.spec.containers[] | select(.name=="ovnkube-node").image'
shell: oc get pod -n {{ ovn_namespace }} {{ovnkube_node_pod.stdout}} -o json| jq '.spec.containers[] | select(.name=="ovnkube-controller").image'
register: ovnkube_node_image
until: (ovnkube_node_image.stdout) == (openshift_ovn_image) or (ovnkube_node_image.stdout) == ""
delay: 1
Expand Down

0 comments on commit 39f3f63

Please sign in to comment.