Skip to content

Commit 72bb65e

Browse files
committed
Added scp service.
1 parent 6b62768 commit 72bb65e

File tree

90 files changed

+1693
-196
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+1693
-196
lines changed

charts/open5gs-amf/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ maintainers:
1010
- email: cgiraldo@gradiant.org
1111
name: cgiraldo
1212
name: open5gs-amf
13-
version: 2.0.13
13+
version: 2.1.0
1414
keywords:
1515
- ngc
1616
dependencies:

charts/open5gs-amf/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# open5gs-amf
22

3-
![Version: 2.0.13](https://img.shields.io/badge/Version-2.0.13-informational?style=flat-square) ![AppVersion: 2.4.11](https://img.shields.io/badge/AppVersion-2.4.11-informational?style=flat-square)
3+
![Version: 2.1.0](https://img.shields.io/badge/Version-2.1.0-informational?style=flat-square) ![AppVersion: 2.4.11](https://img.shields.io/badge/AppVersion-2.4.11-informational?style=flat-square)
44

55
Helm chart to deploy Open5gs AMF service on Kubernetes.
66

@@ -37,6 +37,7 @@ Helm chart to deploy Open5gs AMF service on Kubernetes.
3737
| config.guamiList[0].plmn_id.mnc | string | `"70"` | |
3838
| config.logLevel | string | `"info"` | |
3939
| config.networkName | string | `"Gradiant"` | |
40+
| config.nrf.enabled | bool | `true` | |
4041
| config.nrf.sbi.hostname | string | `""` | |
4142
| config.nrf.sbi.port | int | `7777` | |
4243
| config.plmnList[0].plmn_id.mcc | string | `"999"` | |
@@ -46,6 +47,9 @@ Helm chart to deploy Open5gs AMF service on Kubernetes.
4647
| config.sbi.advertise | string | `""` | |
4748
| config.sbi.client.no_tls | bool | `true` | |
4849
| config.sbi.server.no_tls | bool | `true` | |
50+
| config.scp.enabled | bool | `false` | |
51+
| config.scp.sbi.hostname | string | `""` | |
52+
| config.scp.sbi.port | int | `7777` | |
4953
| config.taiList[0].plmn_id.mcc | string | `"999"` | |
5054
| config.taiList[0].plmn_id.mnc | string | `"70"` | |
5155
| config.taiList[0].tac[0] | int | `1` | |
@@ -78,7 +82,7 @@ Helm chart to deploy Open5gs AMF service on Kubernetes.
7882
| image.pullSecrets | list | `[]` | |
7983
| image.registry | string | `"docker.io"` | |
8084
| image.repository | string | `"openverso/open5gs"` | |
81-
| image.tag | string | `"2.4.11"` | |
85+
| image.tag | string | `"2.6.4"` | |
8286
| initContainers | list | `[]` | |
8387
| kubeVersion | string | `""` | |
8488
| lifecycleHooks | object | `{}` | |

charts/open5gs-amf/resources/config/amf.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,16 @@ amf:
4444
integrity_order : [ NIA2, NIA1, NIA0 ]
4545
ciphering_order : [ NEA0, NEA1, NEA2 ]
4646

47+
{{- if .Values.config.nrf.enabled }}
4748
nrf:
4849
sbi:
4950
- name: {{ default (printf "%s-nrf-sbi" $open5gsName) .Values.config.nrf.sbi.hostname }}
5051
port: {{ .Values.config.nrf.sbi.port }}
52+
{{- end }}
53+
54+
{{- if .Values.config.scp.enabled }}
55+
scp:
56+
sbi:
57+
- name: {{ default (printf "%s-scp-sbi" $open5gsName) .Values.config.scp.sbi.hostname }}
58+
port: {{ .Values.config.scp.sbi.port }}
59+
{{- end }}

charts/open5gs-amf/templates/deployment.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@ spec:
150150
{{- end }}
151151
volumeMounts:
152152
- name: config
153-
mountPath: /opt/open5gs/etc/open5gs/
153+
mountPath: /opt/open5gs/etc/open5gs/amf.yaml
154+
subPath: "amf.yaml"
154155
{{- if .Values.extraVolumeMounts }}
155156
{{- include "common.tplvalues.render" (dict "value" .Values.extraVolumeMounts "context" $) | nindent 12 }}
156157
{{- end }}

charts/open5gs-amf/values.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ extraDeploy: []
5656
image:
5757
registry: docker.io
5858
repository: openverso/open5gs
59-
tag: "2.4.11"
59+
tag: "2.6.4"
6060
digest: ""
6161
## Specify a imagePullPolicy
6262
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
@@ -85,6 +85,12 @@ config:
8585
client:
8686
no_tls: true
8787
nrf:
88+
enabled: true
89+
sbi:
90+
hostname: "" # if empty default is autogenerated open5gs svc fullname
91+
port: 7777
92+
scp:
93+
enabled: false
8894
sbi:
8995
hostname: "" # if empty default is autogenerated open5gs svc fullname
9096
port: 7777

charts/open5gs-ausf/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ maintainers:
1010
- email: cgiraldo@gradiant.org
1111
name: cgiraldo
1212
name: open5gs-ausf
13-
version: 2.0.7
13+
version: 2.1.0
1414
keywords:
1515
- ngc
1616
dependencies:

charts/open5gs-ausf/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# open5gs-ausf
22

3-
![Version: 2.0.7](https://img.shields.io/badge/Version-2.0.7-informational?style=flat-square) ![AppVersion: 2.4.11](https://img.shields.io/badge/AppVersion-2.4.11-informational?style=flat-square)
3+
![Version: 2.1.0](https://img.shields.io/badge/Version-2.1.0-informational?style=flat-square) ![AppVersion: 2.4.11](https://img.shields.io/badge/AppVersion-2.4.11-informational?style=flat-square)
44

55
Helm chart to deploy Open5gs AUSF service on Kubernetes.
66

@@ -32,11 +32,15 @@ Helm chart to deploy Open5gs AUSF service on Kubernetes.
3232
| commonAnnotations | object | `{}` | |
3333
| commonLabels | object | `{}` | |
3434
| config.logLevel | string | `"info"` | |
35+
| config.nrf.enabled | bool | `true` | |
3536
| config.nrf.sbi.hostname | string | `""` | |
3637
| config.nrf.sbi.port | int | `7777` | |
3738
| config.sbi.advertise | string | `""` | |
3839
| config.sbi.client.no_tls | bool | `true` | |
3940
| config.sbi.server.no_tls | bool | `true` | |
41+
| config.scp.enabled | bool | `false` | |
42+
| config.scp.sbi.hostname | string | `""` | |
43+
| config.scp.sbi.port | int | `7777` | |
4044
| containerPorts.sbi | int | `7777` | |
4145
| containerSecurityContext.enabled | bool | `true` | |
4246
| containerSecurityContext.runAsNonRoot | bool | `true` | |
@@ -62,7 +66,7 @@ Helm chart to deploy Open5gs AUSF service on Kubernetes.
6266
| image.pullSecrets | list | `[]` | |
6367
| image.registry | string | `"docker.io"` | |
6468
| image.repository | string | `"openverso/open5gs"` | |
65-
| image.tag | string | `"2.4.11"` | |
69+
| image.tag | string | `"2.6.4"` | |
6670
| initContainers | list | `[]` | |
6771
| kubeVersion | string | `""` | |
6872
| lifecycleHooks | object | `{}` | |

charts/open5gs-ausf/resources/config/ausf.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,16 @@ ausf:
1818
advertise: "{{ tpl .Values.config.sbi.advertise . }}"
1919
{{- end }}
2020

21+
{{- if .Values.config.nrf.enabled }}
2122
nrf:
2223
sbi:
2324
- name: {{ default (printf "%s-nrf-sbi" $open5gsName) .Values.config.nrf.sbi.hostname }}
2425
port: {{ .Values.config.nrf.sbi.port }}
26+
{{- end }}
27+
28+
{{- if .Values.config.scp.enabled }}
29+
scp:
30+
sbi:
31+
- name: {{ default (printf "%s-scp-sbi" $open5gsName) .Values.config.scp.sbi.hostname }}
32+
port: {{ .Values.config.scp.sbi.port }}
33+
{{- end }}

charts/open5gs-ausf/templates/deployment.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,8 @@ spec:
145145
{{- end }}
146146
volumeMounts:
147147
- name: config
148-
mountPath: /opt/open5gs/etc/open5gs/
148+
mountPath: /opt/open5gs/etc/open5gs/ausf.yaml
149+
subPath: "ausf.yaml"
149150
{{- if .Values.extraVolumeMounts }}
150151
{{- include "common.tplvalues.render" (dict "value" .Values.extraVolumeMounts "context" $) | nindent 12 }}
151152
{{- end }}

charts/open5gs-ausf/values.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ extraDeploy: []
5656
image:
5757
registry: docker.io
5858
repository: openverso/open5gs
59-
tag: "2.4.11"
59+
tag: "2.6.4"
6060
digest: ""
6161
## Specify a imagePullPolicy
6262
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
@@ -85,6 +85,12 @@ config:
8585
client:
8686
no_tls: true
8787
nrf:
88+
enabled: true
89+
sbi:
90+
hostname: "" # if empty default is autogenerated open5gs svc fullname
91+
port: 7777
92+
scp:
93+
enabled: false
8894
sbi:
8995
hostname: "" # if empty default is autogenerated open5gs svc fullname
9096
port: 7777

0 commit comments

Comments
 (0)