-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add logic to deploy OVS-cni #648
Add logic to deploy OVS-cni #648
Conversation
Thanks for your PR,
To skip the vendors CIs use one of:
|
Pull Request Test Coverage Report for Build 8327339491Details
💛 - Coveralls |
26a6ca3
to
20dbcac
Compare
Thanks for your PR,
To skip the vendors CIs use one of:
|
If OVS_CNI_IMAGE env variable is set to empty string, then deployment of the CNI will be skipped Signed-off-by: Yury Kulazhenkov <[email protected]>
20dbcac
to
4b3a309
Compare
Thanks for your PR,
To skip the vendors CIs use one of:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -95,6 +95,7 @@ images: | |||
sriovConfigDaemon: ghcr.io/k8snetworkplumbingwg/sriov-network-operator-config-daemon | |||
sriovCni: ghcr.io/k8snetworkplumbingwg/sriov-cni | |||
ibSriovCni: ghcr.io/k8snetworkplumbingwg/ib-sriov-cni | |||
ovsCni: quay.io/kubevirt/ovs-cni-plugin |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ghcr.io/k8snetworkplumbingwg/ovs-cni-plugin
could we migrate to host image here instead of quay?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://github.com/k8snetworkplumbingwg/ovs-cni
or am I mixing these up? this is the proj correct?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Eoghan1232
Yes, the repo is in k8snetworkplumbingwg, but it is managed by kubevirt CI. I didn't find ovs-cni image in github registry, I think it is only uploaded to kubevirt registry
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Deploy OVS CNI with initi container of the sriov-config-daemon.
Helm values or OVS_CNI_IMAGE env variable can be used to configure the OVS-cni image.
If OVS_CNI_IMAGE env variable is set to empty string, then deployment of the CNI will be skipped
Part of #640