Commit de349da3 authored by Alejandro Sanchez's avatar Alejandro Sanchez
Browse files

Merge branch 'demoeucnc-2026' of...

Merge branch 'demoeucnc-2026' of ssh://osm.etsi.org:29419/vnf-onboarding/osm-packages into demoeucnc-2026
parents b8147a6f 26f3a028
Loading
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -3,16 +3,16 @@ vnfd:
  df:
  - id: default-df
  ext-cpd:
  - id: mgmt-ext
    k8s-cluster-net: mgmtnet
  - id: mgmtnet
    k8s-cluster-net: ext-net
  id: free5gc-ueransim_knf
  k8s-cluster:
    nets:
    - id: mgmtnet
    - id: ext-net
  kdu:
  - name: ueransim
    helm-chart: gitlab-free5gc/ueransim
    helm-chart: gitlab-helm/free5gc-ueransim
  mgmt-cp: mgmt-ext
  product-name: free5gc-ueransim_knf
  provider: OSM
  version: 1.0
  version: "2.0.17"
+3 −3
Original line number Diff line number Diff line
nsd:
  nsd:
  - description: NS consisting of a single KNF free5gc-ueransim_knf connected to mgmt network
  - description: NS consisting of a single KNF for the Free5GC UERANSIM
    designer: OSM
    df:
    - id: default-df
@@ -9,12 +9,12 @@ nsd:
        virtual-link-connectivity:
        - constituent-cpd-id:
          - constituent-base-element-id: free5gc-ueransim
            constituent-cpd-id: mgmt-ext
            constituent-cpd-id: mgmtnet
          virtual-link-profile-id: mgmtnet
        vnfd-id: free5gc-ueransim_knf
    id: free5gc-ueransim_ns
    name: free5gc-ueransim_ns
    version: 1.0
    version: "2.0.17"
    virtual-link-desc:
    - id: mgmtnet
      mgmt-network: true
+86 −2
Original line number Diff line number Diff line
vld:
- name: mgmtnet
  vim-network-name: internal
  vim-network-name: ext-net
additionalParamsForVnf:
- member-vnf-index: free5gc-ueransim
  additionalParamsForKdu:
  - kdu_name: ueransim
    additionalParams:
      global:
        free5gcReleaseName: oai-5g-core
        gnb:
          amfNodePort: true
          multus:
            enabled: false
      service:
        type: NodePort
        type: ClusterIP
      gnb:
        enabled: true
        name: gnb
        replicaCount: 1
        image:
          name: free5gc/ueransim
          tag: v4.0.1
          pullPolicy: IfNotPresent
        n2if:
          ipAddress: 10.100.50.250
        n3if:
          ipAddress: 10.100.50.236
        amf:
          n2if:
            ipAddress: 10.95.134.142
            serviceName: "oai-amf"
            port: 30412
        configuration: |-
          mcc: '001'
          mnc: '01'
          nci: '0x000000010'
          idLength: 32
          tac: 1
          slices:
            - sst: 0x1
              sd: 0xffffff
          ignoreStreamIds: true
      ue:
        enabled: true
        name: ue
        replicaCount: 1
        image:
          name: free5gc/ueransim
          tag: v4.0.1
          pullPolicy: IfNotPresent
        configuration: |-
          supi: imsi-001010000000100
          mcc: "001"
          mnc: "01"
          key: "fec86ba6eb707ed08905757b1bb44b8f"
          op: "C42449363BBAD02B66D16BC975D77CC1"
          opType: "OPC"
          amf: 8000
          imei: "356938035643803"
          imeiSv: "4370816125816151"
          uacAic:
            mps: false
            mcs: false
          uacAcc:
            normalClass: 0
            class11: false
            class12: false
            class13: false
            class14: false
            class15: false
          sessions:
            - type: "IPv4"
              apn: "oai"
              slice:
                sst: 0x1
                sd: 0xffffff
          configured-nssai:
            - sst: 0x1
              sd: 0xffffff
          default-nssai:
            - sst: 0x01
              sd: 0xffffff
          integrity:
            IA1: true
            IA2: true
            IA3: true
          ciphering:
            EA1: true
            EA2: true
            EA3: true
          integrityMaxRate:
            uplink: "full"
            downlink: "full"
+2 −0
Original line number Diff line number Diff line
@@ -34,6 +34,7 @@ declare -a VNFPKG_LIST=(
    "openldap_knf"
    "openldap_primitives_knf"
    "openldap_scale_knf"
    "open5gs_knf"
    "several_volumes_vnf"
    "simple_2vm_vnf"
    "simple_ee_vnf"
@@ -75,6 +76,7 @@ declare -a NSPKG_LIST=(
    "ipprofile_2vm_ns"
    "nscharm_ns"
    "openldap_ns"
    "open5gs_ns"
    "simple_2vm_ns"
    "slice_basic_middle_ns"
    "slice_basic_ns"
+18 −0
Original line number Diff line number Diff line
vnfd:
  description: KNF with single KDU using a helm-chart for OAI 5G Core
  df:
  - id: default-df
  ext-cpd:
  - id: mgmtnet
    k8s-cluster-net: ext-net
  id: oai-5g-core_knf
  k8s-cluster:
    nets:
    - id: ext-net
  kdu:
  - name: oai-5g-core
    helm-chart: gitlab-helm/oai-5g-core
  mgmt-cp: mgmtnet
  product-name: oai-5g-core_knf
  provider: OSM
  version: "2.2.0"
Loading