Skip to content

Commit 21bac8a

Browse files
authored
chore: Update NIC Configuration Operator to v0.1.15 (Mellanox#1228)
2 parents ae4cefb + 6f714db commit 21bac8a

File tree

7 files changed

+27
-12
lines changed

7 files changed

+27
-12
lines changed

deployment/network-operator/charts/nic-configuration-operator-chart/crds/configuration.net.nvidia.com_nicconfigurationtemplates.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,6 @@ spec:
166166
items:
167167
type: string
168168
type: array
169-
required:
170-
- nicDevices
171169
type: object
172170
type: object
173171
served: true

deployment/network-operator/charts/nic-configuration-operator-chart/templates/operator.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ spec:
4040
capabilities:
4141
drop:
4242
- ALL
43-
{{- if .Values.logLevel}}
4443
env:
45-
- name: LOG_LEVEL
46-
value: {{ .Values.logLevel }}
47-
{{- end}}
44+
- name: NAMESPACE
45+
valueFrom:
46+
fieldRef:
47+
fieldPath: metadata.namespace
4848
livenessProbe:
4949
httpGet:
5050
path: /healthz

deployment/network-operator/charts/nic-configuration-operator-chart/templates/role.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ rules:
1111
- configmaps
1212
verbs:
1313
- get
14+
- list
15+
- watch
1416
- apiGroups:
1517
- ""
1618
resources:
@@ -103,3 +105,15 @@ rules:
103105
- patch
104106
- update
105107
- watch
108+
- apiGroups:
109+
- apps
110+
resources:
111+
- daemonsets
112+
verbs:
113+
- create
114+
- delete
115+
- get
116+
- list
117+
- patch
118+
- update
119+
- watch

deployment/network-operator/charts/nic-configuration-operator-chart/templates/supported-nic-firmware-configmap.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
kind: ConfigMap
33
metadata:
4-
name: supported-nic-firmware
4+
name: nic-configuration-operator-supported-nic-firmware
55
data:
66
Nvidia_mlx5_ConnectX-4-24.07: "1013 24.07-0.6.1 12.28.2006"
77
Nvidia_mlx5_ConnectX-5-24.07: "1017 24.07-0.6.1 16.35.4030"
@@ -19,4 +19,5 @@ data:
1919
Nvidia_mlx5_ConnectX-6_Dx-24.10: "101d 24.10-0.7.0 22.43.1014"
2020
Nvidia_mlx5_ConnectX-6_Lx-24.10: "101f 24.10-0.7.0 26.43.1014"
2121
Nvidia_mlx5_ConnectX-7-24.10: "1021 24.10-0.7.0 28.43.1014"
22-
Nvidia_mlx5_MT42822_BlueField-2_integrated_ConnectX-6_Dx-24.10: "a2d6 24.10-0.7.0 22.43.1014"
22+
Nvidia_mlx5_MT42822_BlueField-2_integrated_ConnectX-6_Dx-24.10: "a2d6 24.10-0.7.0 24.43.2026"
23+
Nvidia_mlx5_MT43244_BlueField-3_integrated_ConnectX-7_Dx-24.10: "a2dc 24.10-0.7.0 32.43.2026"

deployment/network-operator/charts/nic-configuration-operator-chart/values.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ operator:
44
repository: ghcr.io/mellanox
55
name: nic-configuration-operator
66
# -- image tag to use for the operator image
7-
tag: v0.1.14
7+
tag: latest
88
# -- tolerations for the operator
99
tolerations:
1010
- key: "node-role.kubernetes.io/master"
@@ -42,13 +42,14 @@ operator:
4242
serviceAccount:
4343
# -- set annotations for the operator service account
4444
annotations: {}
45+
4546
configDaemon:
4647
image:
4748
# -- repository to use for the config daemon image
4849
repository: ghcr.io/mellanox
4950
name: nic-configuration-operator-daemon
5051
# -- image tag to use for the config daemon image
51-
tag: v0.1.14
52+
tag: latest
5253
# -- node selector for the config daemon
5354
nodeSelector: {}
5455
# -- resources and limits for the config daemon
@@ -59,6 +60,7 @@ configDaemon:
5960
requests:
6061
cpu: 10m
6162
memory: 64Mi
63+
6264
# -- log level configuration (debug|info)
6365
logLevel: info
6466
# -- image pull secrets for both the operator and the config daemon

deployment/network-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ nic-configuration-operator-chart:
183183
image:
184184
repository: ghcr.io/mellanox
185185
name: nic-configuration-operator-daemon
186-
tag: v0.1.14
186+
tag: v0.1.15
187187

188188
# Maintenance Operator chart related values.
189189
maintenance-operator-chart:

hack/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ nicConfigurationOperator:
8585
nicConfigurationConfigDaemon:
8686
image: nic-configuration-operator-daemon
8787
repository: ghcr.io/mellanox
88-
version: v0.1.14
88+
version: v0.1.15
8989
maintenanceOperator:
9090
image: maintenance-operator
9191
repository: ghcr.io/mellanox

0 commit comments

Comments
 (0)