├── .gitignore ├── .vscode └── launch.json ├── Dockerfile ├── LICENSE.txt ├── README.md ├── carlos_iii.png ├── k8s-5g-core ├── .helmignore ├── Chart.yaml ├── templates │ ├── amf │ │ ├── amf-configmap.yaml │ │ └── amf-deploy.yaml │ ├── ausf │ │ ├── ausf-configmap.yaml │ │ └── ausf-deploy.yaml │ ├── bsf │ │ ├── bsf-configmap.yaml │ │ └── bsf-deploy.yaml │ ├── hss-database │ │ ├── mongo-imsi-configmap.yaml │ │ ├── mongo-reg-subscriber-configmap.yaml │ │ └── mongo-statefulset.yaml │ ├── hss │ │ ├── hss-configmap.yaml │ │ ├── hss-deploy.yaml │ │ └── hss-free-diameter-configmap.yaml │ ├── mme │ │ ├── mme-configmap.yaml │ │ ├── mme-deploy.yaml │ │ └── mme-free-diameter-configmap.yaml │ ├── nrf │ │ ├── nrf-configmap.yaml │ │ └── nrf-deploy.yaml │ ├── nssf │ │ ├── nssf-configmap.yaml │ │ └── nssf-deploy.yaml │ ├── pcf │ │ ├── pcf-configmap.yaml │ │ └── pcf-deploy.yaml │ ├── pcrf │ │ ├── pcrf-configmap.yaml │ │ ├── pcrf-deploy.yaml │ │ └── pcrf-free-diameter-configmap.yaml │ ├── pgwc │ │ ├── pgwc-configmap.yaml │ │ ├── pgwc-deploy.yaml │ │ └── pgwc-free-diameter-configmap.yaml │ ├── pgwu │ │ ├── pgwu-configmap.yaml │ │ └── pgwu-deploy.yaml │ ├── sgwc │ │ ├── sgwc-configmap.yaml │ │ └── sgwc-deploy.yaml │ ├── sgwu │ │ ├── sgwu-configmap.yaml │ │ └── sgwu-deploy.yaml │ ├── srsenb-exporter │ │ └── srsenb-svc.yaml │ ├── udm │ │ ├── udm-configmap.yaml │ │ └── udm-deploy.yaml │ ├── udr │ │ ├── udr-configmap.yaml │ │ └── udr-deploy.yaml │ └── webui │ │ └── web-ui-deploy.yaml └── values.yaml ├── kube-flannel.yml ├── srsenb-chart ├── .helmignore ├── Chart.yaml ├── templates │ ├── srsenb-configmap.yaml │ └── srsenb-deploy.yaml └── values.yaml ├── srsenb-svc-monitor.yaml ├── thesis-scenarios ├── common │ ├── drb.conf │ ├── handover_broker_2.grc │ ├── handover_broker_3.grc │ ├── intra_enb.py │ ├── intra_enb_2.py │ ├── mbms.conf │ ├── sib.conf │ └── ue_script.sh ├── scenario_1 │ ├── .ctxt │ ├── enb.conf │ ├── enb2.conf │ ├── rr.conf │ ├── ue.conf │ ├── ue2.conf │ ├── ue3.conf │ └── ue4.conf ├── scenario_2 │ ├── .ctxt │ ├── enb.conf │ ├── enb2.conf │ ├── handover_broker.grc │ ├── rr1.conf │ ├── rr2.conf │ ├── s1_handover.py │ ├── ue.conf │ └── ue2.conf └── scenario_4 │ ├── .ctxt │ ├── enb.conf │ ├── rr1.conf │ └── ue.conf └── web-ui └── Dockerfile /.gitignore: -------------------------------------------------------------------------------- 1 | thesis-scenarios/ 2 | 3 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/README.md -------------------------------------------------------------------------------- /carlos_iii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/carlos_iii.png -------------------------------------------------------------------------------- /k8s-5g-core/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/.helmignore -------------------------------------------------------------------------------- /k8s-5g-core/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/Chart.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/amf/amf-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/amf/amf-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/amf/amf-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/amf/amf-deploy.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/ausf/ausf-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/ausf/ausf-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/ausf/ausf-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/ausf/ausf-deploy.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/bsf/bsf-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/bsf/bsf-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/bsf/bsf-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/bsf/bsf-deploy.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/hss-database/mongo-imsi-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/hss-database/mongo-imsi-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/hss-database/mongo-reg-subscriber-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/hss-database/mongo-reg-subscriber-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/hss-database/mongo-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/hss-database/mongo-statefulset.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/hss/hss-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/hss/hss-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/hss/hss-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/hss/hss-deploy.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/hss/hss-free-diameter-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/hss/hss-free-diameter-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/mme/mme-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/mme/mme-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/mme/mme-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/mme/mme-deploy.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/mme/mme-free-diameter-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/mme/mme-free-diameter-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/nrf/nrf-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/nrf/nrf-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/nrf/nrf-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/nrf/nrf-deploy.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/nssf/nssf-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/nssf/nssf-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/nssf/nssf-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/nssf/nssf-deploy.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/pcf/pcf-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/pcf/pcf-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/pcf/pcf-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/pcf/pcf-deploy.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/pcrf/pcrf-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/pcrf/pcrf-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/pcrf/pcrf-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/pcrf/pcrf-deploy.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/pcrf/pcrf-free-diameter-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/pcrf/pcrf-free-diameter-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/pgwc/pgwc-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/pgwc/pgwc-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/pgwc/pgwc-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/pgwc/pgwc-deploy.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/pgwc/pgwc-free-diameter-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/pgwc/pgwc-free-diameter-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/pgwu/pgwu-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/pgwu/pgwu-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/pgwu/pgwu-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/pgwu/pgwu-deploy.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/sgwc/sgwc-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/sgwc/sgwc-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/sgwc/sgwc-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/sgwc/sgwc-deploy.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/sgwu/sgwu-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/sgwu/sgwu-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/sgwu/sgwu-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/sgwu/sgwu-deploy.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/srsenb-exporter/srsenb-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/srsenb-exporter/srsenb-svc.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/udm/udm-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/udm/udm-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/udm/udm-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/udm/udm-deploy.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/udr/udr-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/udr/udr-configmap.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/udr/udr-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/udr/udr-deploy.yaml -------------------------------------------------------------------------------- /k8s-5g-core/templates/webui/web-ui-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/templates/webui/web-ui-deploy.yaml -------------------------------------------------------------------------------- /k8s-5g-core/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/k8s-5g-core/values.yaml -------------------------------------------------------------------------------- /kube-flannel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/kube-flannel.yml -------------------------------------------------------------------------------- /srsenb-chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/srsenb-chart/.helmignore -------------------------------------------------------------------------------- /srsenb-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/srsenb-chart/Chart.yaml -------------------------------------------------------------------------------- /srsenb-chart/templates/srsenb-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/srsenb-chart/templates/srsenb-configmap.yaml -------------------------------------------------------------------------------- /srsenb-chart/templates/srsenb-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/srsenb-chart/templates/srsenb-deploy.yaml -------------------------------------------------------------------------------- /srsenb-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/srsenb-chart/values.yaml -------------------------------------------------------------------------------- /srsenb-svc-monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/srsenb-svc-monitor.yaml -------------------------------------------------------------------------------- /thesis-scenarios/common/drb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/common/drb.conf -------------------------------------------------------------------------------- /thesis-scenarios/common/handover_broker_2.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/common/handover_broker_2.grc -------------------------------------------------------------------------------- /thesis-scenarios/common/handover_broker_3.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/common/handover_broker_3.grc -------------------------------------------------------------------------------- /thesis-scenarios/common/intra_enb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/common/intra_enb.py -------------------------------------------------------------------------------- /thesis-scenarios/common/intra_enb_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/common/intra_enb_2.py -------------------------------------------------------------------------------- /thesis-scenarios/common/mbms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/common/mbms.conf -------------------------------------------------------------------------------- /thesis-scenarios/common/sib.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/common/sib.conf -------------------------------------------------------------------------------- /thesis-scenarios/common/ue_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/common/ue_script.sh -------------------------------------------------------------------------------- /thesis-scenarios/scenario_1/.ctxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_1/.ctxt -------------------------------------------------------------------------------- /thesis-scenarios/scenario_1/enb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_1/enb.conf -------------------------------------------------------------------------------- /thesis-scenarios/scenario_1/enb2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_1/enb2.conf -------------------------------------------------------------------------------- /thesis-scenarios/scenario_1/rr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_1/rr.conf -------------------------------------------------------------------------------- /thesis-scenarios/scenario_1/ue.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_1/ue.conf -------------------------------------------------------------------------------- /thesis-scenarios/scenario_1/ue2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_1/ue2.conf -------------------------------------------------------------------------------- /thesis-scenarios/scenario_1/ue3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_1/ue3.conf -------------------------------------------------------------------------------- /thesis-scenarios/scenario_1/ue4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_1/ue4.conf -------------------------------------------------------------------------------- /thesis-scenarios/scenario_2/.ctxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_2/.ctxt -------------------------------------------------------------------------------- /thesis-scenarios/scenario_2/enb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_2/enb.conf -------------------------------------------------------------------------------- /thesis-scenarios/scenario_2/enb2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_2/enb2.conf -------------------------------------------------------------------------------- /thesis-scenarios/scenario_2/handover_broker.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_2/handover_broker.grc -------------------------------------------------------------------------------- /thesis-scenarios/scenario_2/rr1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_2/rr1.conf -------------------------------------------------------------------------------- /thesis-scenarios/scenario_2/rr2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_2/rr2.conf -------------------------------------------------------------------------------- /thesis-scenarios/scenario_2/s1_handover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_2/s1_handover.py -------------------------------------------------------------------------------- /thesis-scenarios/scenario_2/ue.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_2/ue.conf -------------------------------------------------------------------------------- /thesis-scenarios/scenario_2/ue2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_2/ue2.conf -------------------------------------------------------------------------------- /thesis-scenarios/scenario_4/.ctxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_4/.ctxt -------------------------------------------------------------------------------- /thesis-scenarios/scenario_4/enb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_4/enb.conf -------------------------------------------------------------------------------- /thesis-scenarios/scenario_4/rr1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_4/rr1.conf -------------------------------------------------------------------------------- /thesis-scenarios/scenario_4/ue.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/thesis-scenarios/scenario_4/ue.conf -------------------------------------------------------------------------------- /web-ui/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaposnick/k8s-open5gs/HEAD/web-ui/Dockerfile --------------------------------------------------------------------------------