Skip to content
Snippets Groups Projects
Commit 8ed01f94 authored by Thierry Turletti's avatar Thierry Turletti
Browse files

Revert "Merge tag 'v2.0.1' into develop-r2lab"

This reverts commit 77084527
parent 77084527
No related branches found
No related tags found
1 merge request!161Revert "Merge tag 'v2.0.1' into develop-r2lab"
Showing
with 63 additions and 94 deletions
# RELEASE NOTES: # # RELEASE NOTES: #
## v2.0.1 -- January 2024 ##
* `AMF` changes:
* Features
- NGAP AMF status indication
- Add UE Retention Information support
- Update NAS with Rel 16.14.0 IEs
* Refactoring code for Encode/Decode functions
* Cleanup NAS lib
* Fixes
- Fix typo for N1N2MessageSubscribe
- Fix issue when receiving PDU session reject from SMF
* Tech debt
- Reformating of the SCTP code
- Refactor promise handling
- Removing dependencies to libconfig++ (Only YAML file can be read as configuration)
* `SMF` changes:
* Features
- Add N1/N2 info in the message response to AMF if available
* Fixes
- Remove NRF dependency from SMF
* Tech debt
- Refactor SMF PFCP associations to always use UPF info
* `UDM` changes:
* Fixes
- Remove NRF dependency from SMF
* `UDR` changes:
* Tech debt
- Fixed builds
- Refactor mongoDB
## v2.0.0 -- December 2023 ## ## v2.0.0 -- December 2023 ##
* 2 new Network Functions: * 2 new Network Functions:
......
...@@ -94,7 +94,7 @@ Process is explained in [CONTRIBUTING](CONTRIBUTING.md) file. ...@@ -94,7 +94,7 @@ Process is explained in [CONTRIBUTING](CONTRIBUTING.md) file.
If you wish to discuss development topics, we have a weekly one-hour meeting every Tuesday at 11AM CET. If you wish to discuss development topics, we have a weekly one-hour meeting every Tuesday at 11AM CET.
The meeting details are available through this [ics file](./docs/meeting_invitations/invite-2024.ics). The meeting details are available through this [ics file](./docs/meeting_invitations/invite-2023.ics).
# Contribution requests # Contribution requests
......
apiVersion: v2 apiVersion: v2
name: oai-5g-advance name: oai-5g-advance
version: v2.0.1 version: v2.0.0
appVersion: master-v2.0.1 appVersion: master-v2.0.0
icon: http://www.openairinterface.org/wp-content/uploads/2015/06/cropped-oai_final_logo.png icon: http://www.openairinterface.org/wp-content/uploads/2015/06/cropped-oai_final_logo.png
description: OAI 5G Release 16 Core Network description: OAI 5G Release 16 Core Network
type: application type: application
...@@ -30,35 +30,35 @@ dependencies: ...@@ -30,35 +30,35 @@ dependencies:
- condition: oai-nssf.enabled - condition: oai-nssf.enabled
name: oai-nssf name: oai-nssf
repository: "file://../oai-nssf" repository: "file://../oai-nssf"
version: v2.0.1 version: v2.0.0
- condition: oai-nrf.enabled - condition: oai-nrf.enabled
name: oai-nrf name: oai-nrf
repository: "file://../oai-nrf" repository: "file://../oai-nrf"
version: v2.0.1 version: v2.0.0
- condition: oai-udr.enabled - condition: oai-udr.enabled
name: oai-udr name: oai-udr
repository: "file://../oai-udr" repository: "file://../oai-udr"
version: v2.0.1 version: v2.0.0
- condition: oai-udm.enabled - condition: oai-udm.enabled
name: oai-udm name: oai-udm
repository: "file://../oai-udm" repository: "file://../oai-udm"
version: v2.0.1 version: v2.0.0
- condition: oai-ausf.enabled - condition: oai-ausf.enabled
name: oai-ausf name: oai-ausf
repository: "file://../oai-ausf" repository: "file://../oai-ausf"
version: v2.0.1 version: v2.0.0
- condition: oai-amf.enabled - condition: oai-amf.enabled
name: oai-amf name: oai-amf
repository: "file://../oai-amf" repository: "file://../oai-amf"
version: v2.0.1 version: v2.0.0
- condition: oai-smf.enabled - condition: oai-smf.enabled
name: oai-smf name: oai-smf
repository: "file://../oai-smf" repository: "file://../oai-smf"
version: v2.0.1 version: v2.0.0
- condition: oai-upf.enabled - condition: oai-upf.enabled
name: oai-upf name: oai-upf
repository: "file://../oai-upf" repository: "file://../oai-upf"
version: v2.0.1 version: v2.0.0
#- condition: oai-traffic-server.enabled #- condition: oai-traffic-server.enabled
# name: oai-traffic-server # name: oai-traffic-server
# repository: "file://../oai-traffic-server" # repository: "file://../oai-traffic-server"
......
# Reference:- TS 29.531 R16.0.0., Section- 6.1.6 Data Model # Reference:- TS 29.531 R16.0.0., Section- 6.1.6 Data Model
info: info:
version: 2.0.0 version: 2.0.0
description: OAI-NSSF Release v2.0.1 description: OAI-NSSF Release v2.0.0
configuration: configuration:
nsiInfoList: nsiInfoList:
- snssai: - snssai:
......
...@@ -17,7 +17,7 @@ oai-nrf: ...@@ -17,7 +17,7 @@ oai-nrf:
kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes
nfimage: # image name either locally present or in a public/private repository nfimage: # image name either locally present or in a public/private repository
repository: docker.io/oaisoftwarealliance/oai-nrf ## The image will be pulled from dockerhub repository: docker.io/oaisoftwarealliance/oai-nrf ## The image will be pulled from dockerhub
version: v2.0.1 ## The branch to be used to pull from dockerhub version: v2.0.0 ## The branch to be used to pull from dockerhub
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
includeTcpDumpContainer: @TCPDUMP_CONTAINER@ #only for taking pcaps inside network function pod includeTcpDumpContainer: @TCPDUMP_CONTAINER@ #only for taking pcaps inside network function pod
...@@ -31,7 +31,7 @@ oai-nssf: ...@@ -31,7 +31,7 @@ oai-nssf:
kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes
nfimage: # image name either locally present or in a public/private repository nfimage: # image name either locally present or in a public/private repository
repository: docker.io/oaisoftwarealliance/oai-nssf ## The image will be pulled from dockerhub repository: docker.io/oaisoftwarealliance/oai-nssf ## The image will be pulled from dockerhub
version: v2.0.1 ## The branch to be used to pull from dockerhub version: v2.0.0 ## The branch to be used to pull from dockerhub
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
imagePullSecrets: imagePullSecrets:
...@@ -45,7 +45,7 @@ oai-udr: ...@@ -45,7 +45,7 @@ oai-udr:
kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes
nfimage: # image name either locally present or in a public/private repository nfimage: # image name either locally present or in a public/private repository
repository: docker.io/oaisoftwarealliance/oai-udr ## The image will be pulled from dockerhub repository: docker.io/oaisoftwarealliance/oai-udr ## The image will be pulled from dockerhub
version: v2.0.1 ## The branch to be used to pull from dockerhub version: v2.0.0 ## The branch to be used to pull from dockerhub
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
includeTcpDumpContainer: @TCPDUMP_CONTAINER@ #only for taking pcaps inside network function pod includeTcpDumpContainer: @TCPDUMP_CONTAINER@ #only for taking pcaps inside network function pod
...@@ -59,7 +59,7 @@ oai-udm: ...@@ -59,7 +59,7 @@ oai-udm:
kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes
nfimage: # image name either locally present or in a public/private repository nfimage: # image name either locally present or in a public/private repository
repository: docker.io/oaisoftwarealliance/oai-udm ## The image will be pulled from dockerhub repository: docker.io/oaisoftwarealliance/oai-udm ## The image will be pulled from dockerhub
version: v2.0.1 ## The branch to be used to pull from dockerhub version: v2.0.0 ## The branch to be used to pull from dockerhub
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
includeTcpDumpContainer: @TCPDUMP_CONTAINER@ #only for taking pcaps inside network function pod includeTcpDumpContainer: @TCPDUMP_CONTAINER@ #only for taking pcaps inside network function pod
...@@ -73,7 +73,7 @@ oai-ausf: ...@@ -73,7 +73,7 @@ oai-ausf:
kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes
nfimage: # image name either locally present or in a public/private repository nfimage: # image name either locally present or in a public/private repository
repository: docker.io/oaisoftwarealliance/oai-ausf ## The image will be pulled from dockerhub repository: docker.io/oaisoftwarealliance/oai-ausf ## The image will be pulled from dockerhub
version: v2.0.1 ## The branch to be used to pull from dockerhub version: v2.0.0 ## The branch to be used to pull from dockerhub
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
includeTcpDumpContainer: @TCPDUMP_CONTAINER@ #only for taking pcaps inside network function pod includeTcpDumpContainer: @TCPDUMP_CONTAINER@ #only for taking pcaps inside network function pod
...@@ -94,7 +94,7 @@ oai-amf: ...@@ -94,7 +94,7 @@ oai-amf:
kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes
nfimage: # image name either locally present or in a public/private repository nfimage: # image name either locally present or in a public/private repository
repository: docker.io/oaisoftwarealliance/oai-amf ## The image will be pulled from dockerhub repository: docker.io/oaisoftwarealliance/oai-amf ## The image will be pulled from dockerhub
version: v2.0.1 ## The branch to be used to pull from dockerhub version: v2.0.0 ## The branch to be used to pull from dockerhub
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
start: start:
...@@ -129,7 +129,7 @@ oai-upf: ...@@ -129,7 +129,7 @@ oai-upf:
kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes
nfimage: # image name either locally present or in a public/private repository nfimage: # image name either locally present or in a public/private repository
repository: docker.io/oaisoftwarealliance/oai-upf ## The image will be pulled from dockerhub repository: docker.io/oaisoftwarealliance/oai-upf ## The image will be pulled from dockerhub
version: v2.0.1 ## The branch to be used to pull from dockerhub version: v2.0.0 ## The branch to be used to pull from dockerhub
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
start: start:
...@@ -215,7 +215,7 @@ oai-smf: ...@@ -215,7 +215,7 @@ oai-smf:
kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes
nfimage: # image name either locally present or in a public/private repository nfimage: # image name either locally present or in a public/private repository
repository: docker.io/oaisoftwarealliance/oai-smf ## The image will be pulled from dockerhub repository: docker.io/oaisoftwarealliance/oai-smf ## The image will be pulled from dockerhub
version: v2.0.1 ## The branch to be used to pull from dockerhub version: v2.0.0 ## The branch to be used to pull from dockerhub
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
start: start:
......
...@@ -2,10 +2,10 @@ apiVersion: v2 ...@@ -2,10 +2,10 @@ apiVersion: v2
name: oai-5g-basic name: oai-5g-basic
type: application type: application
icon: http://www.openairinterface.org/wp-content/uploads/2015/06/cropped-oai_final_logo.png icon: http://www.openairinterface.org/wp-content/uploads/2015/06/cropped-oai_final_logo.png
version: v2.0.1 version: v2.0.0
description: OAI 5G Release 16 Core Network description: OAI 5G Release 16 Core Network
appVersion: v2.0.1 appVersion: v2.0.0
keywords: keywords:
- 5GCN - 5GCN
...@@ -30,31 +30,31 @@ dependencies: ...@@ -30,31 +30,31 @@ dependencies:
- condition: oai-nrf.enabled - condition: oai-nrf.enabled
name: oai-nrf name: oai-nrf
repository: "file://../oai-nrf" repository: "file://../oai-nrf"
version: v2.0.1 version: v2.0.0
- condition: oai-udr.enabled - condition: oai-udr.enabled
name: oai-udr name: oai-udr
repository: "file://../oai-udr" repository: "file://../oai-udr"
version: v2.0.1 version: v2.0.0
- condition: oai-udm.enabled - condition: oai-udm.enabled
name: oai-udm name: oai-udm
repository: "file://../oai-udm" repository: "file://../oai-udm"
version: v2.0.1 version: v2.0.0
- condition: oai-ausf.enabled - condition: oai-ausf.enabled
name: oai-ausf name: oai-ausf
repository: "file://../oai-ausf" repository: "file://../oai-ausf"
version: v2.0.1 version: v2.0.0
- condition: oai-amf.enabled - condition: oai-amf.enabled
name: oai-amf name: oai-amf
repository: "file://../oai-amf" repository: "file://../oai-amf"
version: v2.0.1 version: v2.0.0
- condition: oai-smf.enabled - condition: oai-smf.enabled
name: oai-smf name: oai-smf
repository: "file://../oai-smf" repository: "file://../oai-smf"
version: v2.0.1 version: v2.0.0
- condition: oai-upf.enabled - condition: oai-upf.enabled
name: oai-upf name: oai-upf
repository: "file://../oai-upf" repository: "file://../oai-upf"
version: v2.0.1 version: v2.0.0
#- condition: oai-traffic-server.enabled #- condition: oai-traffic-server.enabled
# name: oai-traffic-server # name: oai-traffic-server
# repository: "file://../oai-traffic-server" # repository: "file://../oai-traffic-server"
......
...@@ -17,7 +17,7 @@ oai-nrf: ...@@ -17,7 +17,7 @@ oai-nrf:
kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes
nfimage: # image name either locally present or in a public/private repository nfimage: # image name either locally present or in a public/private repository
repository: docker.io/oaisoftwarealliance/oai-nrf ## The image will be pulled from dockerhub repository: docker.io/oaisoftwarealliance/oai-nrf ## The image will be pulled from dockerhub
version: v2.0.1 ## The branch to be used to pull from dockerhub version: v2.0.0 ## The branch to be used to pull from dockerhub
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
includeTcpDumpContainer: @TCPDUMP_CONTAINER@ #only for taking pcaps inside network function pod includeTcpDumpContainer: @TCPDUMP_CONTAINER@ #only for taking pcaps inside network function pod
...@@ -31,7 +31,7 @@ oai-udr: ...@@ -31,7 +31,7 @@ oai-udr:
kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes
nfimage: # image name either locally present or in a public/private repository nfimage: # image name either locally present or in a public/private repository
repository: docker.io/oaisoftwarealliance/oai-udr ## The image will be pulled from dockerhub repository: docker.io/oaisoftwarealliance/oai-udr ## The image will be pulled from dockerhub
version: v2.0.1 ## The branch to be used to pull from dockerhub version: v2.0.0 ## The branch to be used to pull from dockerhub
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
includeTcpDumpContainer: @TCPDUMP_CONTAINER@ #only for taking pcaps inside network function pod includeTcpDumpContainer: @TCPDUMP_CONTAINER@ #only for taking pcaps inside network function pod
...@@ -45,7 +45,7 @@ oai-udm: ...@@ -45,7 +45,7 @@ oai-udm:
kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes
nfimage: # image name either locally present or in a public/private repository nfimage: # image name either locally present or in a public/private repository
repository: docker.io/oaisoftwarealliance/oai-udm ## The image will be pulled from dockerhub repository: docker.io/oaisoftwarealliance/oai-udm ## The image will be pulled from dockerhub
version: v2.0.1 ## The branch to be used to pull from dockerhub version: v2.0.0 ## The branch to be used to pull from dockerhub
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
includeTcpDumpContainer: @TCPDUMP_CONTAINER@ #only for taking pcaps inside network function pod includeTcpDumpContainer: @TCPDUMP_CONTAINER@ #only for taking pcaps inside network function pod
...@@ -59,7 +59,7 @@ oai-ausf: ...@@ -59,7 +59,7 @@ oai-ausf:
kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes
nfimage: # image name either locally present or in a public/private repository nfimage: # image name either locally present or in a public/private repository
repository: docker.io/oaisoftwarealliance/oai-ausf ## The image will be pulled from dockerhub repository: docker.io/oaisoftwarealliance/oai-ausf ## The image will be pulled from dockerhub
version: v2.0.1 ## The branch to be used to pull from dockerhub version: v2.0.0 ## The branch to be used to pull from dockerhub
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
start: start:
...@@ -79,7 +79,7 @@ oai-amf: ...@@ -79,7 +79,7 @@ oai-amf:
kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes
nfimage: # image name either locally present or in a public/private repository nfimage: # image name either locally present or in a public/private repository
repository: docker.io/oaisoftwarealliance/oai-amf ## The image will be pulled from dockerhub repository: docker.io/oaisoftwarealliance/oai-amf ## The image will be pulled from dockerhub
version: v2.0.1 ## The branch to be used to pull from dockerhub version: v2.0.0 ## The branch to be used to pull from dockerhub
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
start: start:
...@@ -116,7 +116,7 @@ oai-upf: ...@@ -116,7 +116,7 @@ oai-upf:
#repository: docker.io/r2labuser/oai-upf ## The image will be pulled from dockerhub #repository: docker.io/r2labuser/oai-upf ## The image will be pulled from dockerhub
#version: v2.0.0 ## The branch to be used to pull from dockerhub #version: v2.0.0 ## The branch to be used to pull from dockerhub
repository: docker.io/oaisoftwarealliance/oai-upf ## The image will be pulled from dockerhub repository: docker.io/oaisoftwarealliance/oai-upf ## The image will be pulled from dockerhub
version: v2.0.1 ## The branch to be used to pull from dockerhub version: v2.0.0 ## The branch to be used to pull from dockerhub
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
start: start:
...@@ -202,7 +202,7 @@ oai-smf: ...@@ -202,7 +202,7 @@ oai-smf:
kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes
nfimage: # image name either locally present or in a public/private repository nfimage: # image name either locally present or in a public/private repository
repository: docker.io/oaisoftwarealliance/oai-smf ## The image will be pulled from dockerhub repository: docker.io/oaisoftwarealliance/oai-smf ## The image will be pulled from dockerhub
version: v2.0.1 ## The branch to be used to pull from dockerhub version: v2.0.0 ## The branch to be used to pull from dockerhub
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
start: start:
......
...@@ -2,10 +2,10 @@ apiVersion: v2 ...@@ -2,10 +2,10 @@ apiVersion: v2
name: oai-5g-mini name: oai-5g-mini
type: application type: application
icon: http://www.openairinterface.org/wp-content/uploads/2015/06/cropped-oai_final_logo.png icon: http://www.openairinterface.org/wp-content/uploads/2015/06/cropped-oai_final_logo.png
version: v2.0.1 version: v2.0.0
description: OAI 5G Release 16 Core Network description: OAI 5G Release 16 Core Network
appVersion: v2.0.1 appVersion: v2.0.0
keywords: keywords:
- 5GCN - 5GCN
...@@ -26,19 +26,19 @@ dependencies: ...@@ -26,19 +26,19 @@ dependencies:
- condition: oai-nrf.enabled - condition: oai-nrf.enabled
name: oai-nrf name: oai-nrf
repository: "file://../oai-nrf" repository: "file://../oai-nrf"
version: v2.0.1 version: v2.0.0
- condition: oai-amf.enabled - condition: oai-amf.enabled
name: oai-amf name: oai-amf
repository: "file://../oai-amf" repository: "file://../oai-amf"
version: v2.0.1 version: v2.0.0
- condition: oai-smf.enabled - condition: oai-smf.enabled
name: oai-smf name: oai-smf
repository: "file://../oai-smf" repository: "file://../oai-smf"
version: v2.0.1 version: v2.0.0
- condition: oai-upf.enabled - condition: oai-upf.enabled
name: oai-upf name: oai-upf
repository: "file://../oai-upf" repository: "file://../oai-upf"
version: v2.0.1 version: v2.0.0
#- condition: oai-traffic-server.enabled #- condition: oai-traffic-server.enabled
# name: oai-traffic-server # name: oai-traffic-server
# repository: "file://../oai-traffic-server" # repository: "file://../oai-traffic-server"
......
...@@ -17,7 +17,7 @@ oai-nrf: ...@@ -17,7 +17,7 @@ oai-nrf:
kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes
nfimage: # image name either locally present or in a public/private repository nfimage: # image name either locally present or in a public/private repository
repository: docker.io/oaisoftwarealliance/oai-nrf ## The image will be pulled from dockerhub repository: docker.io/oaisoftwarealliance/oai-nrf ## The image will be pulled from dockerhub
version: v2.0.1 ## The branch to be used to pull from dockerhub version: v2.0.0 ## The branch to be used to pull from dockerhub
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
includeTcpDumpContainer: false #only for taking pcaps inside network function pod includeTcpDumpContainer: false #only for taking pcaps inside network function pod
...@@ -31,7 +31,7 @@ oai-amf: ...@@ -31,7 +31,7 @@ oai-amf:
kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes
nfimage: # image name either locally present or in a public/private repository nfimage: # image name either locally present or in a public/private repository
repository: docker.io/oaisoftwarealliance/oai-amf ## The image will be pulled from dockerhub repository: docker.io/oaisoftwarealliance/oai-amf ## The image will be pulled from dockerhub
version: v2.0.1 ## The branch to be used to pull from dockerhub version: v2.0.0 ## The branch to be used to pull from dockerhub
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
includeTcpDumpContainer: false #only for taking pcaps inside network function pod includeTcpDumpContainer: false #only for taking pcaps inside network function pod
...@@ -57,7 +57,7 @@ oai-upf: ...@@ -57,7 +57,7 @@ oai-upf:
kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes
nfimage: # image name either locally present or in a public/private repository nfimage: # image name either locally present or in a public/private repository
repository: docker.io/oaisoftwarealliance/oai-upf ## The image will be pulled from dockerhub repository: docker.io/oaisoftwarealliance/oai-upf ## The image will be pulled from dockerhub
version: v2.0.1 ## The branch to be used to pull from dockerhub version: v2.0.0 ## The branch to be used to pull from dockerhub
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
includeTcpDumpContainer: false #only for taking pcaps inside network function pod includeTcpDumpContainer: false #only for taking pcaps inside network function pod
...@@ -130,7 +130,7 @@ oai-smf: ...@@ -130,7 +130,7 @@ oai-smf:
kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes kubernetesType: Vanilla #Openshift/Vanilla Vanilla for Upstream Kubernetes
nfimage: # image name either locally present or in a public/private repository nfimage: # image name either locally present or in a public/private repository
repository: docker.io/oaisoftwarealliance/oai-smf ## The image will be pulled from dockerhub repository: docker.io/oaisoftwarealliance/oai-smf ## The image will be pulled from dockerhub
version: v2.0.1 ## The branch to be used to pull from dockerhub version: v2.0.0 ## The branch to be used to pull from dockerhub
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
includeTcpDumpContainer: false #only for taking pcaps inside network function pod includeTcpDumpContainer: false #only for taking pcaps inside network function pod
......
...@@ -26,9 +26,9 @@ type: application ...@@ -26,9 +26,9 @@ type: application
icon: http://www.openairinterface.org/wp-content/uploads/2015/06/cropped-oai_final_logo.png icon: http://www.openairinterface.org/wp-content/uploads/2015/06/cropped-oai_final_logo.png
version: v2.0.1 version: v2.0.0
appVersion: v2.0.1 appVersion: v2.0.0
keywords: keywords:
- 5GCN - 5GCN
......
...@@ -4,7 +4,7 @@ kubernetesType: Vanilla #Vanilla for community kubernetes distribution else Ope ...@@ -4,7 +4,7 @@ kubernetesType: Vanilla #Vanilla for community kubernetes distribution else Ope
## To know more about them follow this tutorial https://gitlab.eurecom.fr/oai/cn5g/oai-cn5g-fed/-/tree/master/openshift ## To know more about them follow this tutorial https://gitlab.eurecom.fr/oai/cn5g/oai-cn5g-fed/-/tree/master/openshift
nfimage: # image name either locally present or in a public/private repository nfimage: # image name either locally present or in a public/private repository
repository: docker.io/oaisoftwarealliance/oai-amf ## The image will be pulled from dockerhub repository: docker.io/oaisoftwarealliance/oai-amf ## The image will be pulled from dockerhub
version: v2.0.1 #image tag, develop tag for experimental features version: v2.0.0 #image tag, develop tag for experimental features
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
......
...@@ -26,9 +26,9 @@ type: application ...@@ -26,9 +26,9 @@ type: application
icon: http://www.openairinterface.org/wp-content/uploads/2015/06/cropped-oai_final_logo.png icon: http://www.openairinterface.org/wp-content/uploads/2015/06/cropped-oai_final_logo.png
version: v2.0.1 version: v2.0.0
appVersion: v2.0.1 appVersion: v2.0.0
keywords: keywords:
- 5GCN - 5GCN
......
...@@ -4,7 +4,7 @@ kubernetesType: Vanilla #Vanilla for community kubernetes distribution else Ope ...@@ -4,7 +4,7 @@ kubernetesType: Vanilla #Vanilla for community kubernetes distribution else Ope
## To know more about them follow this tutorial https://gitlab.eurecom.fr/oai/cn5g/oai-cn5g-fed/-/tree/master/openshift ## To know more about them follow this tutorial https://gitlab.eurecom.fr/oai/cn5g/oai-cn5g-fed/-/tree/master/openshift
nfimage: nfimage:
repository: docker.io/oaisoftwarealliance/oai-ausf ## oaisoftwarealliance/oai-ausf # image name either locally present or in a public/private repository repository: docker.io/oaisoftwarealliance/oai-ausf ## oaisoftwarealliance/oai-ausf # image name either locally present or in a public/private repository
version: v2.0.1 #image tag, develop tag for experimental features version: v2.0.0 #image tag, develop tag for experimental features
#pullPolicy: IfNotPresent or Never or Always #pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
......
...@@ -26,9 +26,9 @@ type: application ...@@ -26,9 +26,9 @@ type: application
icon: http://www.openairinterface.org/wp-content/uploads/2015/06/cropped-oai_final_logo.png icon: http://www.openairinterface.org/wp-content/uploads/2015/06/cropped-oai_final_logo.png
version: v2.0.1 version: v2.0.0
appVersion: v2.0.1 appVersion: v2.0.0
keywords: keywords:
- 5GCN - 5GCN
......
...@@ -4,7 +4,7 @@ kubernetesType: Vanilla #Vanilla for community kubernetes distribution else Ope ...@@ -4,7 +4,7 @@ kubernetesType: Vanilla #Vanilla for community kubernetes distribution else Ope
## To know more about them follow this tutorial https://gitlab.eurecom.fr/oai/cn5g/oai-cn5g-fed/-/tree/master/openshift ## To know more about them follow this tutorial https://gitlab.eurecom.fr/oai/cn5g/oai-cn5g-fed/-/tree/master/openshift
nfimage: nfimage:
repository: docker.io/oaisoftwarealliance/oai-nrf repository: docker.io/oaisoftwarealliance/oai-nrf
version: v2.0.1 #image tag, develop tag for experimental features version: v2.0.0 #image tag, develop tag for experimental features
# pullPolicy: IfNotPresent or Never or Always # pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
......
...@@ -26,9 +26,9 @@ type: application ...@@ -26,9 +26,9 @@ type: application
icon: http://www.openairinterface.org/wp-content/uploads/2015/06/cropped-oai_final_logo.png icon: http://www.openairinterface.org/wp-content/uploads/2015/06/cropped-oai_final_logo.png
version: v2.0.1 version: v2.0.0
appVersion: v2.0.1 appVersion: v2.0.0
keywords: keywords:
- 5GCN - 5GCN
......
...@@ -2,7 +2,7 @@ kubernetesType: Vanilla # Vanilla (Community Kubernetes) or Openshift (For RedH ...@@ -2,7 +2,7 @@ kubernetesType: Vanilla # Vanilla (Community Kubernetes) or Openshift (For RedH
nfimage: nfimage:
repository: docker.io/oaisoftwarealliance/oai-nssf # image name either locally present or in a public/private repository repository: docker.io/oaisoftwarealliance/oai-nssf # image name either locally present or in a public/private repository
version: v2.0.1 #image tag, develop tag for experimental features version: v2.0.0 #image tag, develop tag for experimental features
#pullPolicy: IfNotPresent or Never or Always #pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
......
...@@ -26,9 +26,9 @@ type: application ...@@ -26,9 +26,9 @@ type: application
icon: http://www.openairinterface.org/wp-content/uploads/2015/06/cropped-oai_final_logo.png icon: http://www.openairinterface.org/wp-content/uploads/2015/06/cropped-oai_final_logo.png
version: v2.0.1 version: v2.0.0
appVersion: v2.0.1 appVersion: v2.0.0
keywords: keywords:
- 5G - 5G
......
...@@ -4,7 +4,7 @@ kubernetesType: Vanilla #Vanilla for community kubernetes distribution else Ope ...@@ -4,7 +4,7 @@ kubernetesType: Vanilla #Vanilla for community kubernetes distribution else Ope
## To know more about them follow this tutorial https://gitlab.eurecom.fr/oai/cn5g/oai-cn5g-fed/-/tree/master/openshift ## To know more about them follow this tutorial https://gitlab.eurecom.fr/oai/cn5g/oai-cn5g-fed/-/tree/master/openshift
nfimage: nfimage:
repository: docker.io/oaisoftwarealliance/oai-smf #docker.io/oaisoftwarealliance/oai-smf # dockerhub oaisoftwarealliance/oai-smf repository: docker.io/oaisoftwarealliance/oai-smf #docker.io/oaisoftwarealliance/oai-smf # dockerhub oaisoftwarealliance/oai-smf
version: v2.0.1 #image tag, develop tag for experimental features version: v2.0.0 #image tag, develop tag for experimental features
#pullPolicy: IfNotPresent or Never or Always #pullPolicy: IfNotPresent or Never or Always
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
......
...@@ -27,9 +27,9 @@ type: application ...@@ -27,9 +27,9 @@ type: application
icon: http://www.openairinterface.org/wp-content/uploads/2015/06/cropped-oai_final_logo.png icon: http://www.openairinterface.org/wp-content/uploads/2015/06/cropped-oai_final_logo.png
version: v2.0.1 version: v2.0.0
appVersion: v2.0.1 appVersion: v2.0.0
keywords: keywords:
- 5GCN - 5GCN
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment