Skip to content

Commit c1cb9b5

Browse files
Add image tag for sriov plugin (#111)
* Add image tag for sriov plugin Signed-off-by: Marikkannu, Suresh <suresh.marikkannu@intel.com> * Added comment on how to load local images for kafka/mongodb Signed-off-by: Marikkannu, Suresh <suresh.marikkannu@intel.com> * Update chart versions Signed-off-by: Marikkannu, Suresh <suresh.marikkannu@intel.com> * Address review comments Signed-off-by: Marikkannu, Suresh <suresh.marikkannu@intel.com> --------- Signed-off-by: Marikkannu, Suresh <suresh.marikkannu@intel.com>
1 parent f0327be commit c1cb9b5

File tree

7 files changed

+20
-9
lines changed

7 files changed

+20
-9
lines changed

5g-control-plane/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description: SD-Core 5G control plane services
1010
name: 5g-control-plane
1111
icon: https://guide.opencord.org/logos/cord.svg
1212

13-
version: 3.1.7
13+
version: 3.1.8
1414

1515
dependencies:
1616
- name: mongodb

5g-control-plane/values.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,13 @@ kafka:
133133
# Enable nodeSelector if needed to control where to deploy the kafka instance(s)
134134
# nodeSelector:
135135
# node-role.aetherproject.org/5gc: "true"
136+
# global:
137+
# security:
138+
# allowInsecureImages: true # set to true when using images from local repo/registry
136139
image:
140+
# registry: ""
137141
repository: bitnamilegacy/kafka # Bitnami moved images to bitnamilegacy (https://hub.docker.com/r/bitnami/kafka)
142+
# tag: 4.0.0-debian-12-r10
138143

139144
mongodb:
140145
deploy: true
@@ -153,8 +158,13 @@ mongodb:
153158
# node-role.aetherproject.org/5gc: "true"
154159
architecture: replicaset
155160
replicaCount: 1
161+
# global:
162+
# security:
163+
# allowInsecureImages: true # set to true when using images from local repo/registry
156164
image:
165+
# registry: ""
157166
repository: bitnamilegacy/mongodb # Bitnami moved images to bitnamilegacy (https://hub.docker.com/r/bitnami/mongodb)
167+
# tag: latest
158168

159169
config:
160170
useExistingConfigMap: false

bess-upf/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ description: OMEC user plane based on BESS
77
name: bess-upf
88
icon: https://guide.opencord.org/logos/cord.svg
99

10-
version: 1.3.4
10+
version: 1.3.5

bess-upf/templates/init-net.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ spec:
2020
spec:
2121
containers:
2222
- name: init-sriov-plugin
23-
image: docker.io/omecproject/omec-cni:1.1.4
24-
imagePullPolicy: IfNotPresent
23+
image: {{ .Values.images.tags.sriov }}
24+
imagePullPolicy: {{ .Values.images.pullPolicy }}
2525
command: ["/bin/bash", "-c"]
2626
args:
2727
- >

bess-upf/templates/sriov-device-plugin.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ spec:
3333
effect: NoSchedule
3434
initContainers:
3535
- name: init-sriov-plugin
36-
image: docker.io/omecproject/omec-cni:1.1.7
37-
imagePullPolicy: IfNotPresent
36+
image: {{ .Values.images.tags.sriov }}
37+
imagePullPolicy: {{ .Values.images.pullPolicy }}
3838
command: ["bash", "-c"]
3939
args:
4040
- cp /tmp/cni/bin/{sriov,vfioveth,jq,static,dhcp} /host/opt/cni/bin/;

bess-upf/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ images:
77
tags:
88
bess: omecproject/upf-epc-bess:rel-2.1.2
99
pfcpiface: omecproject/upf-epc-pfcpiface:rel-2.1.2
10+
sriov: omecproject/aether-cni:rel-1.1.8
1011
tools: omecproject/pod-init:rel-1.1.3
1112
pullPolicy: IfNotPresent
1213
# Secrets must be manually created in the namespace.

sdcore-helm-charts/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name: sd-core
1010
description: SD-Core control plane services
1111
icon: https://guide.opencord.org/logos/cord.svg
1212
type: application
13-
version: 3.1.9
13+
version: 3.1.10
1414
home: https://opennetworking.org/sd-core/
1515
maintainers:
1616
- name: SD-Core Support
@@ -28,12 +28,12 @@ dependencies:
2828
condition: omec-sub-provision.enable
2929

3030
- name: 5g-control-plane
31-
version: 3.1.7
31+
version: 3.1.8
3232
repository: "file://../5g-control-plane"
3333
condition: 5g-control-plane.enable5G
3434

3535
- name: bess-upf
36-
version: 1.3.4
36+
version: 1.3.5
3737
repository: "file://../bess-upf"
3838
alias: omec-user-plane
3939
condition: omec-user-plane.enable

0 commit comments

Comments
 (0)