Skip to content

Commit 5b82db6

Browse files
authored
Merge pull request #288 from e0ne/deps
Update dependencies
2 parents a533e84 + 80cd04a commit 5b82db6

File tree

6 files changed

+24
-24
lines changed

6 files changed

+24
-24
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ spec:
118118
periodSeconds: 30
119119
rdmaSharedDevicePlugin:
120120
image: k8s-rdma-shared-dev-plugin
121-
repository: mellanox
121+
repository: nvcr.io/nvidia/cloud-native
122122
version: v1.2.1
123123
# The config below directly propagates to k8s-rdma-shared-device-plugin configuration.
124124
# Replace 'devices' with your (RDMA capable) netdevice name.
@@ -155,9 +155,9 @@ spec:
155155
}
156156
secondaryNetwork:
157157
cniPlugins:
158-
image: containernetworking-plugins
159-
repository: mellanox
160-
version: v0.8.7
158+
image: plugins
159+
repository: ghcr.io/k8snetworkplumbingwg
160+
version: v0.8.7-amd64
161161
multus:
162162
image: multus
163163
repository: nfvpe

deployment/network-operator/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ Production cluster environment can deny direct access to the Internet and instea
325325
| `ofedDriver.deploy` | bool | `false` | deploy Mellanox OFED driver container |
326326
| `ofedDriver.repository` | string | `mellanox` | Mellanox OFED driver image repository |
327327
| `ofedDriver.image` | string | `mofed` | Mellanox OFED driver image name |
328-
| `ofedDriver.version` | string | `5.4-2.4.1.3` | Mellanox OFED driver version |
328+
| `ofedDriver.version` | string | `5.5-1.0.3.2` | Mellanox OFED driver version |
329329
| `ofedDriver.imagePullSecrets` | list | `[]` | An optional list of references to secrets to use for pulling any of the Mellanox OFED driver image |
330330
| `ofedDriver.startupProbe.initialDelaySeconds` | int | 10 | Mellanox OFED startup probe initial delay |
331331
| `ofedDriver.startupProbe.periodSeconds` | int | 10 | Mellanox OFED startup probe interval |
@@ -350,7 +350,7 @@ Production cluster environment can deny direct access to the Internet and instea
350350
| Name | Type | Default | description |
351351
| ---- | ---- | ------- | ----------- |
352352
| `rdmaSharedDevicePlugin.deploy` | bool | `true` | Deploy RDMA Shared device plugin |
353-
| `rdmaSharedDevicePlugin.repository` | string | `mellanox` | RDMA Shared device plugin image repository |
353+
| `rdmaSharedDevicePlugin.repository` | string | `nvcr.io/nvidia/cloud-native` | RDMA Shared device plugin image repository |
354354
| `rdmaSharedDevicePlugin.image` | string | `k8s-rdma-shared-dev-plugin` | RDMA Shared device plugin image name |
355355
| `rdmaSharedDevicePlugin.version` | string | `v1.2.1` | RDMA Shared device plugin version |
356356
| `rdmaSharedDevicePlugin.imagePullSecrets` | list | `[]` | An optional list of references to secrets to use for pulling any of the RDMA Shared device plugin image |
@@ -414,9 +414,9 @@ Specifies components to deploy in order to facilitate a secondary network in Kub
414414
| Name | Type | Default | description |
415415
| ---- | ---- | ------- | ----------- |
416416
| `cniPlugins.deploy` | bool | `true` | Deploy CNI Plugins Secondary Network |
417-
| `cniPlugins.image` | string | `containernetworking-plugins` | CNI Plugins image name |
418-
| `cniPlugins.repository` | string | `mellanox` | CNI Plugins image repository |
419-
| `cniPlugins.version` | string | `v0.8.7` | CNI Plugins image version |
417+
| `cniPlugins.image` | string | `plugins` | CNI Plugins image name |
418+
| `cniPlugins.repository` | string | `ghcr.io/k8snetworkplumbingwg` | CNI Plugins image repository |
419+
| `cniPlugins.version` | string | `v0.8.7-amd64` | CNI Plugins image version |
420420
| `cniPlugins.imagePullSecrets` | list | `[]` | An optional list of references to secrets to use for pulling any of the CNI Plugins image |
421421

422422
##### Multus CNI Secondary Network

deployment/network-operator/values.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ ofedDriver:
115115
deploy: false
116116
image: mofed
117117
repository: mellanox
118-
version: 5.4-2.4.1.3
118+
version: 5.5-1.0.3.2
119119
imagePullSecrets: []
120120
startupProbe:
121121
initialDelaySeconds: 10
@@ -138,7 +138,7 @@ nvPeerDriver:
138138
rdmaSharedDevicePlugin:
139139
deploy: true
140140
image: k8s-rdma-shared-dev-plugin
141-
repository: mellanox
141+
repository: nvcr.io/nvidia/cloud-native
142142
version: v1.2.1
143143
imagePullSecrets: []
144144
# The following defines the RDMA resources in the cluster
@@ -163,9 +163,9 @@ secondaryNetwork:
163163
deploy: true
164164
cniPlugins:
165165
deploy: true
166-
image: containernetworking-plugins
167-
repository: mellanox
168-
version: v0.8.7
166+
image: plugins
167+
repository: ghcr.io/k8snetworkplumbingwg
168+
version: v0.8.7-amd64
169169
imagePullSecrets: []
170170
multus:
171171
deploy: true

example/crs/mellanox.com_v1alpha1_nicclusterpolicy_cr-ocp.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ spec:
1919
ofedDriver:
2020
image: mofed
2121
repository: mellanox
22-
version: 5.3-1.0.0.1
22+
version: 5.5-1.0.3.2
2323
rdmaSharedDevicePlugin:
2424
image: k8s-rdma-shared-dev-plugin
25-
repository: mellanox
25+
repository: nvcr.io/nvidia/cloud-native
2626
version: v1.2.1-ubi
2727
# The config below directly propagates to k8s-rdma-shared-device-plugin configuration.
2828
# Replace 'devices' with your (RDMA capable) netdevice name.

example/crs/mellanox.com_v1alpha1_nicclusterpolicy_cr.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
ofedDriver:
2020
image: mofed
2121
repository: mellanox
22-
version: 5.3-1.0.0.1
22+
version: 5.5-1.0.3.2
2323
startupProbe:
2424
initialDelaySeconds: 10
2525
periodSeconds: 10
@@ -31,7 +31,7 @@ spec:
3131
periodSeconds: 30
3232
rdmaSharedDevicePlugin:
3333
image: k8s-rdma-shared-dev-plugin
34-
repository: mellanox
34+
repository: nvcr.io/nvidia/cloud-native
3535
version: v1.2.1
3636
# The config below directly propagates to k8s-rdma-shared-device-plugin configuration.
3737
# Replace 'devices' with your (RDMA capable) netdevice name.
@@ -66,9 +66,9 @@ spec:
6666
}
6767
secondaryNetwork:
6868
cniPlugins:
69-
image: containernetworking-plugins
70-
repository: mellanox
71-
version: v0.8.7
69+
image: plugins
70+
repository: ghcr.io/k8snetworkplumbingwg
71+
version: v0.8.7-amd64
7272
multus:
7373
image: multus
7474
repository: nfvpe

example/dgx-helm-values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ secondaryNetwork:
3636
deploy: true
3737
cniPlugins:
3838
deploy: true
39-
image: containernetworking-plugins
40-
repository: mellanox
41-
version: v0.8.7
39+
image: plugins
40+
repository: ghcr.io/k8snetworkplumbingwg
41+
version: v0.8.7-amd64
4242
imagePullSecrets: []
4343
multus:
4444
deploy: true

0 commit comments

Comments
 (0)