Skip to content

Commit c938d32

Browse files
authored
cicd: release Network Operator v25.10.0-beta.1 (#1760)
Created by the [*create-release-pr* job](https://github.com/Mellanox/network-operator/actions/runs/18405352911).
2 parents 099f23d + fa54cd8 commit c938d32

24 files changed

+144
-131
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: 25.7.0-beta.3
3+
version: 25.10.0-beta.1
44
kubeVersion: '>= 1.21.0'
5-
appVersion: v25.7.0-beta.3
5+
appVersion: v25.10.0-beta.1
66
description: Nvidia network operator
77
type: application
88
keywords:

deployment/network-operator/charts/maintenance-operator-chart/templates/metrics-service.yaml

Lines changed: 0 additions & 18 deletions
This file was deleted.

deployment/network-operator/charts/node-feature-discovery/templates/_helpers.tpl

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,22 @@ Create the name of the service account which nfd-gc will use
105105
{{ default "default" .Values.gc.serviceAccount.name }}
106106
{{- end -}}
107107
{{- end -}}
108+
109+
{{/*
110+
imagePullSecrets helper - uses local values or falls back to global values
111+
*/}}
112+
{{- define "node-feature-discovery.imagePullSecrets" -}}
113+
{{- $imagePullSecrets := list -}}
114+
{{- if .Values.imagePullSecrets -}}
115+
{{- range .Values.imagePullSecrets -}}
116+
{{- $imagePullSecrets = append $imagePullSecrets . -}}
117+
{{- end -}}
118+
{{- else if and .Values.global .Values.global.imagePullSecrets -}}
119+
{{- range .Values.global.imagePullSecrets -}}
120+
{{- $imagePullSecrets = append $imagePullSecrets . -}}
121+
{{- end -}}
122+
{{- end -}}
123+
{{- if $imagePullSecrets -}}
124+
{{- $imagePullSecrets | toJson }}
125+
{{- end -}}
126+
{{- end -}}

deployment/network-operator/charts/node-feature-discovery/templates/master.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,7 @@ spec:
3333
{{- with .Values.priorityClassName }}
3434
priorityClassName: {{ . }}
3535
{{- end }}
36-
{{- with .Values.imagePullSecrets }}
37-
imagePullSecrets:
38-
{{- toYaml . | nindent 8 }}
39-
{{- end }}
36+
imagePullSecrets: {{ include "node-feature-discovery.imagePullSecrets" . }}
4037
serviceAccountName: {{ include "node-feature-discovery.master.serviceAccountName" . }}
4138
enableServiceLinks: false
4239
securityContext:

deployment/network-operator/charts/node-feature-discovery/templates/nfd-gc.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,7 @@ spec:
3333
{{- with .Values.priorityClassName }}
3434
priorityClassName: {{ . }}
3535
{{- end }}
36-
{{- with .Values.imagePullSecrets }}
37-
imagePullSecrets:
38-
{{- toYaml . | nindent 8 }}
39-
{{- end }}
36+
imagePullSecrets: {{ include "node-feature-discovery.imagePullSecrets" . }}
4037
securityContext:
4138
{{- toYaml .Values.gc.podSecurityContext | nindent 8 }}
4239
hostNetwork: {{ .Values.gc.hostNetwork }}

deployment/network-operator/charts/node-feature-discovery/templates/post-delete-job.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,7 @@ spec:
6767
role: prune
6868
spec:
6969
serviceAccountName: {{ include "node-feature-discovery.fullname" . }}-prune
70-
{{- with .Values.imagePullSecrets }}
71-
imagePullSecrets:
72-
{{- toYaml . | nindent 8 }}
73-
{{- end }}
70+
imagePullSecrets: {{ include "node-feature-discovery.imagePullSecrets" . }}
7471
containers:
7572
- name: nfd-master
7673
securityContext:

deployment/network-operator/charts/node-feature-discovery/templates/topologyupdater.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,7 @@ spec:
3333
{{- with .Values.priorityClassName }}
3434
priorityClassName: {{ . }}
3535
{{- end }}
36-
{{- with .Values.imagePullSecrets }}
37-
imagePullSecrets:
38-
{{- toYaml . | nindent 8 }}
39-
{{- end }}
36+
imagePullSecrets: {{ include "node-feature-discovery.imagePullSecrets" . }}
4037
securityContext:
4138
{{- toYaml .Values.topologyUpdater.podSecurityContext | nindent 8 }}
4239
hostNetwork: {{ .Values.topologyUpdater.hostNetwork }}

deployment/network-operator/charts/node-feature-discovery/templates/worker.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,7 @@ spec:
3636
{{- with .Values.priorityClassName }}
3737
priorityClassName: {{ . }}
3838
{{- end }}
39-
{{- with .Values.imagePullSecrets }}
40-
imagePullSecrets:
41-
{{- toYaml . | nindent 8 }}
42-
{{- end }}
39+
imagePullSecrets: {{ include "node-feature-discovery.imagePullSecrets" . }}
4340
serviceAccountName: {{ include "node-feature-discovery.worker.serviceAccountName" . }}
4441
securityContext:
4542
{{- toYaml .Values.worker.podSecurityContext | nindent 8 }}

deployment/network-operator/charts/sriov-network-operator/crds/sriovnetwork.openshift.io_sriovnetworknodepolicies.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,13 @@ spec:
6161
description: IDs to inject to external_ids field in the
6262
Bridge table in OVSDB
6363
type: object
64+
failMode:
65+
description: configure fail_mode field in the Bridge table
66+
in OVSDB (optional). 'secure' or 'standalone'.
67+
enum:
68+
- secure
69+
- standalone
70+
type: string
6471
otherConfig:
6572
additionalProperties:
6673
type: string

deployment/network-operator/charts/sriov-network-operator/crds/sriovnetwork.openshift.io_sriovnetworknodestates.yaml

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,13 @@ spec:
7474
description: IDs to inject to external_ids field in
7575
the Bridge table in OVSDB
7676
type: object
77+
failMode:
78+
description: configure fail_mode field in the Bridge
79+
table in OVSDB (optional). 'secure' or 'standalone'.
80+
enum:
81+
- secure
82+
- standalone
83+
type: string
7784
otherConfig:
7885
additionalProperties:
7986
type: string
@@ -180,14 +187,6 @@ spec:
180187
type: array
181188
system:
182189
properties:
183-
ovsConfig:
184-
additionalProperties:
185-
type: string
186-
default:
187-
hw-offload: "true"
188-
description: OVS config. It will be provided for ovs-vswitchd
189-
service as other_config option
190-
type: object
191190
rdmaMode:
192191
description: RDMA subsystem. Allowed value "shared", "exclusive".
193192
enum:
@@ -221,6 +220,13 @@ spec:
221220
description: IDs to inject to external_ids field in
222221
the Bridge table in OVSDB
223222
type: object
223+
failMode:
224+
description: configure fail_mode field in the Bridge
225+
table in OVSDB (optional). 'secure' or 'standalone'.
226+
enum:
227+
- secure
228+
- standalone
229+
type: string
224230
otherConfig:
225231
additionalProperties:
226232
type: string
@@ -362,14 +368,6 @@ spec:
362368
type: string
363369
system:
364370
properties:
365-
ovsConfig:
366-
additionalProperties:
367-
type: string
368-
default:
369-
hw-offload: "true"
370-
description: OVS config. It will be provided for ovs-vswitchd
371-
service as other_config option
372-
type: object
373371
rdmaMode:
374372
description: RDMA subsystem. Allowed value "shared", "exclusive".
375373
enum:

0 commit comments

Comments
 (0)