Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump ovs-cni to 0.8.0
Browse files Browse the repository at this point in the history
To include the bridge reporting fix [1]

[1] k8snetworkplumbingwg/ovs-cni#93

Signed-off-by: Quique Llorente <ellorent@redhat.com>
qinqon committed Nov 29, 2019
1 parent 4bb56a5 commit 1103511
Showing 4 changed files with 6 additions and 8 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -135,9 +135,7 @@ systemctl start NetworkManager
## Open vSwitch

The operator allows administrator to deploy [OVS CNI plugin](https://github.com/kubevirt/ovs-cni/)
simply by adding `ovs` attribute to `NetworkAddonsConfig`. Please note that
in order to use this plugin, `ovs-vsctl` binary has to be available on
the node.
simply by adding `ovs` attribute to `NetworkAddonsConfig`.

```yaml
apiVersion: networkaddonsoperator.network.kubevirt.io/v1alpha1
2 changes: 1 addition & 1 deletion data/ovs/002-ovs-daemonset.yaml
Original file line number Diff line number Diff line change
@@ -57,7 +57,7 @@ spec:
- -node-name
- $(NODE_NAME)
- -ovs-socket
- unix:///host/run/openvswitch/db.sock
- /host/var/run/openvswitch/db.sock
volumeMounts:
- name: ovs-run
mountPath: /host/run/openvswitch
4 changes: 2 additions & 2 deletions pkg/components/components.go
Original file line number Diff line number Diff line change
@@ -24,8 +24,8 @@ const (
LinuxBridgeMarkerImageDefault = "quay.io/kubevirt/bridge-marker:0.2.0"
KubeMacPoolImageDefault = "quay.io/kubevirt/kubemacpool:v0.8.0"
NMStateHandlerImageDefault = "quay.io/nmstate/kubernetes-nmstate-handler:v0.12.0"
OvsCniImageDefault = "quay.io/kubevirt/ovs-cni-plugin:v0.7.0"
OvsMarkerImageDefault = "quay.io/kubevirt/ovs-cni-marker:v0.7.0"
OvsCniImageDefault = "quay.io/kubevirt/ovs-cni-plugin:v0.8.0"
OvsMarkerImageDefault = "quay.io/kubevirt/ovs-cni-marker:v0.8.0"
)

type AddonsImages struct {
4 changes: 2 additions & 2 deletions test/releases/0.23.0.go
Original file line number Diff line number Diff line change
@@ -42,13 +42,13 @@ func init() {
ParentName: "ovs-cni-amd64",
ParentKind: "DaemonSet",
Name: "ovs-cni-plugin",
Image: "quay.io/kubevirt/ovs-cni-plugin:v0.7.0",
Image: "quay.io/kubevirt/ovs-cni-plugin:v0.8.0",
},
opv1alpha1.Container{
ParentName: "ovs-cni-amd64",
ParentKind: "DaemonSet",
Name: "ovs-cni-marker",
Image: "quay.io/kubevirt/ovs-cni-marker:v0.7.0",
Image: "quay.io/kubevirt/ovs-cni-marker:v0.8.0",
},
},
SupportedSpec: opv1alpha1.NetworkAddonsConfigSpec{

0 comments on commit 1103511

Please sign in to comment.