Skip to content

Commit

Permalink
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 <[email protected]>
  • Loading branch information
qinqon committed Nov 29, 2019
1 parent 4bb56a5 commit 0d6a24e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,7 @@ systemctl start NetworkManager

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.
in order to use this plugin, openvswitch have to be up and running at nodes.

```yaml
apiVersion: networkaddonsoperator.network.kubevirt.io/v1alpha1
Expand Down
10 changes: 5 additions & 5 deletions data/ovs/002-ovs-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ 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
- name: ovs-var-run
mountPath: /host/var/run/openvswitch
env:
- name: NODE_NAME
valueFrom:
Expand All @@ -73,6 +73,6 @@ spec:
- name: cnibin
hostPath:
path: {{ .CNIBinDir }}
- name: ovs-run
- name: ovs-var-run
hostPath:
path: /run/openvswitch
path: /var/run/openvswitch
4 changes: 2 additions & 2 deletions pkg/components/components.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions test/releases/0.23.0.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down

0 comments on commit 0d6a24e

Please sign in to comment.