Skip to content

Commit 18ddda9

Browse files
authored
cicd: Release Network Operator v25.1.0-beta.1 (#1235)
2 parents 4fb4c3f + f679db4 commit 18ddda9

File tree

7 files changed

+20
-24
lines changed

7 files changed

+20
-24
lines changed

deployment/network-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
22
name: network-operator
3-
version: 24.10.0
3+
version: 25.1.0-beta.1
44
kubeVersion: '>= 1.21.0'
5-
appVersion: v24.10.0
5+
appVersion: v25.1.0-beta.1
66
description: Nvidia network operator
77
type: application
88
keywords:

deployment/network-operator/charts/sriov-network-operator/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,11 @@ This section contains general parameters that apply to both the operator and dae
135135
| `sriovOperatorConfig.configurationMode` | string | `daemon` | sriov-network-config-daemon configuration mode. either `daemon` or `systemd` |
136136
| `sriovOperatorConfig.featureGates` | map[string]bool | `{}` | feature gates to enable/disable |
137137

138+
**Note**
139+
140+
When `sriovOperatorConfig.configurationMode` is configured as `systemd`, configurations files and `systemd` service files are created on the node.
141+
Upon chart deletion, those files are not cleaned up. For cases where this is not acceptable, users should rather configured the `daemon` mode.
142+
138143
### Images parameters
139144

140145
| Name | description |

deployment/network-operator/charts/sriov-network-operator/templates/clusterrole.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,6 @@ rules:
4949
- apiGroups: [""]
5050
resources: ["nodes"]
5151
verbs: ["get", "list", "watch", "patch", "update"]
52-
- apiGroups: [""]
53-
resources: ["pods"]
54-
verbs: ["*"]
55-
- apiGroups: ["apps"]
56-
resources: ["daemonsets"]
57-
verbs: ["get"]
5852
- apiGroups: [ "config.openshift.io" ]
5953
resources: [ "infrastructures" ]
6054
verbs: [ "get", "list", "watch" ]

deployment/network-operator/charts/sriov-network-operator/templates/pre-delete-webooks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
{{- range .Values.imagePullSecrets }}
2020
- name: {{ . }}
2121
{{- end }}
22-
{{- end }}
22+
{{- end }}
2323
containers:
2424
- name: cleanup
2525
image: {{ .Values.images.operator }}

deployment/network-operator/charts/sriov-network-operator/templates/role.yaml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,10 @@ rules:
8282
resources:
8383
- pods
8484
verbs:
85-
- '*'
86-
- apiGroups:
87-
- apps
88-
resources:
89-
- daemonsets
90-
verbs:
91-
- '*'
85+
- "get"
86+
- "list"
87+
- "watch"
88+
- "delete"
9289
- apiGroups:
9390
- sriovnetwork.openshift.io
9491
resources:

deployment/network-operator/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,15 +152,15 @@ sriov-network-operator:
152152

153153
# Image URIs for sriov-network-operator components.
154154
images:
155-
operator: nvcr.io/nvstaging/mellanox/sriov-network-operator:network-operator-24.10.0
156-
sriovConfigDaemon: nvcr.io/nvstaging/mellanox/sriov-network-operator-config-daemon:network-operator-24.10.0
155+
operator: nvcr.io/nvstaging/mellanox/sriov-network-operator:network-operator-25.1.0-beta.1
156+
sriovConfigDaemon: nvcr.io/nvstaging/mellanox/sriov-network-operator-config-daemon:network-operator-25.1.0-beta.1
157157
sriovCni: ghcr.io/k8snetworkplumbingwg/sriov-cni:v2.8.1
158158
ibSriovCni: ghcr.io/k8snetworkplumbingwg/ib-sriov-cni:v1.1.1
159159
ovsCni: ghcr.io/k8snetworkplumbingwg/ovs-cni-plugin:v0.37.0
160160
# rdmaCni: ghcr.io/k8snetworkplumbingwg/rdma-cni:v1.2.0
161161
sriovDevicePlugin: ghcr.io/k8snetworkplumbingwg/sriov-network-device-plugin:v3.8.0
162162
resourcesInjector: ghcr.io/k8snetworkplumbingwg/network-resources-injector:8810e6a127366cc1eb829d3f7cb3f866d096946e
163-
webhook: nvcr.io/nvstaging/mellanox/sriov-network-operator-webhook:network-operator-24.10.0
163+
webhook: nvcr.io/nvstaging/mellanox/sriov-network-operator-webhook:network-operator-25.1.0-beta.1
164164
# imagePullSecrest for SR-IOV Network Operator related images
165165
# imagePullSecrets: []
166166
sriovOperatorConfig:

hack/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
NetworkOperator:
22
image: network-operator
33
repository: nvcr.io/nvstaging/mellanox
4-
version: v24.10.0
4+
version: v25.1.0-beta.1
55
NetworkOperatorInitContainer:
66
image: network-operator-init-container
77
repository: ghcr.io/mellanox
88
version: v0.0.2
99
SriovNetworkOperator:
1010
image: sriov-network-operator
1111
repository: nvcr.io/nvstaging/mellanox
12-
version: network-operator-24.10.0
12+
version: network-operator-25.1.0-beta.1
1313
SriovNetworkOperatorWebhook:
1414
image: sriov-network-operator-webhook
1515
repository: nvcr.io/nvstaging/mellanox
16-
version: network-operator-24.10.0
16+
version: network-operator-25.1.0-beta.1
1717
SriovConfigDaemon:
1818
image: sriov-network-operator-config-daemon
1919
repository: nvcr.io/nvstaging/mellanox
20-
version: network-operator-24.10.0
20+
version: network-operator-25.1.0-beta.1
2121
SriovCni:
2222
image: sriov-cni
2323
repository: ghcr.io/k8snetworkplumbingwg
@@ -89,4 +89,4 @@ nicConfigurationConfigDaemon:
8989
maintenanceOperator:
9090
image: maintenance-operator
9191
repository: ghcr.io/mellanox
92-
version: v0.1.1
92+
version: v0.1.1

0 commit comments

Comments
 (0)