
This PS adds test artifacts to be used to validate Jarvis operation: The Open5GS 5G SA Core. Change-Id: I33d3ac2b2c584320aa3b0ca928657496ccd96303 Signed-off-by: Pete Birley <pete@port.direct>
15 lines
459 B
Bash
Executable File
15 lines
459 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
: "${kube_namespace:="open5gs"}"
|
|
|
|
for network_function in `find ./tools/gate/jarvis/5G-SA-core -maxdepth 1 -type d | tail -n +2 | awk -F '/' '{ print $NF }'`; do
|
|
helm upgrade \
|
|
--create-namespace \
|
|
--install \
|
|
--namespace="${kube_namespace}" \
|
|
"${network_function}" \
|
|
"./tools/gate/jarvis/5G-SA-core/${network_function}/charts/${network_function}"
|
|
done
|
|
|
|
./tools/deployment/common/wait-for-pods.sh "${kube_namespace}" |