X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=ric-platform%2F50-RIC-Platform%2Fbin%2Finstall;h=e4c031e992fed8f312fd9fc321ccc21d06736141;hb=e7873992010cbe1274c8afc432b51be090bcd2d5;hp=75590beed6ad8af3af50cebf15f760cfb34b4e30;hpb=431ae3c7eab922223215b52f2a347029eb95335b;p=it%2Fdep.git diff --git a/ric-platform/50-RIC-Platform/bin/install b/ric-platform/50-RIC-Platform/bin/install index 75590bee..e4c031e9 100755 --- a/ric-platform/50-RIC-Platform/bin/install +++ b/ric-platform/50-RIC-Platform/bin/install @@ -38,28 +38,31 @@ fi RICPLT_COMPONENTS="appmgr rtmgr dbaas e2mgr e2term a1mediator kong-platform kong-xapp" -#RICPLT_COMPONENTS="kong-platform kong-xapp" echo "Deploying RIC Platform components [$RICPLT_COMPONENTS]" echo "Platform Namespace: $NAMESPACE" echo "Helm Release Name: $RELEASE_NAME" -COMMON_CHART_VERSION=$(cat $DIR/../helm/common/Chart.yaml | grep version | awk '{print $2}') +COMMON_CHART_VERSION=$(cat $DIR/../../../ric-common/Common-Template/helm/ric-common/Chart.yaml | grep version | awk '{print $2}') -helm package -d /tmp $DIR/../helm/common +helm repo remove local + +helm package -d /tmp $DIR/../../../ric-common/Common-Template/helm/ric-common for component in $RICPLT_COMPONENTS; do echo "Preparing chart for comonent $component" - if [ $component = "kong-platform" ]; then + if [ $component = "kong-platform" ]; then + mkdir -p $DIR/../helm/$component/charts helm dep up $DIR/../helm/$component helm install --namespace ricplt --name "${RELEASE_NAME}-$component" $DIR/../helm/$component --set postgresql.enabled=false --set env.database=off continue fi - if [ $component = "kong-xapp" ]; then + if [ $component = "kong-xapp" ]; then + mkdir -p $DIR/../helm/$component/charts helm dep up $DIR/../helm/$component helm install --namespace ricxapp --name "${RELEASE_NAME}-$component" $DIR/../helm/$component --set postgresql.enabled=false --set env.database=off continue @@ -68,7 +71,7 @@ for component in $RICPLT_COMPONENTS; do echo "not kong component" mkdir -p $DIR/../helm/$component/charts/ - cp /tmp/common-$COMMON_CHART_VERSION.tgz $DIR/../helm/$component/charts/ + cp /tmp/ric-common-$COMMON_CHART_VERSION.tgz $DIR/../helm/$component/charts/ if [ -z $OVERRIDEYAML ]; then helm install --namespace "${NAMESPACE}" --name "${RELEASE_NAME}-$component" $DIR/../helm/$component else