mirror of
https://github.com/k8snetworkplumbingwg/multus-cni.git
synced 2025-06-27 16:16:53 +00:00
e2e tests: always pull new multus images (#783)
Currently, the local workflow is far from optimal, since for every change on the multus images the developers are required to redeploy the kind cluster. A more efficient workflow would be to build a local image, upload it to the kind cluster, and finally re-deploy (delete & re-provision) the daemonset, which would be running the new version. For this flow to be possible, the multus container `imagePullPolicy` must be set to `Always` - [0] - otherwise, the image is not updated. [0] - https://kubernetes.io/docs/concepts/containers/images/#updating-images Signed-off-by: Miguel Duarte Barroso <mdbarroso@redhat.com>
This commit is contained in:
parent
9e79b79a89
commit
191b8cb0ec
@ -154,6 +154,7 @@ spec:
|
||||
containers:
|
||||
- name: kube-multus
|
||||
image: localhost:5000/multus:e2e
|
||||
imagePullPolicy: Always
|
||||
command: [ "/usr/src/multus-cni/bin/multus-daemon" ]
|
||||
args:
|
||||
- "-multus-conf-file=auto"
|
||||
|
Loading…
Reference in New Issue
Block a user