Fix minor onap installation issues 16/14516/1
authoraravind.est <aravindhan.a@est.tech>
Fri, 30 May 2025 17:16:25 +0000 (18:16 +0100)
committeraravind.est <aravindhan.a@est.tech>
Fri, 30 May 2025 17:18:02 +0000 (18:18 +0100)
ONAP release instllation helm snapshots updated to latest.

Issue-ID: NONRTRIC-1020
Change-Id: Id350949496ec3450eca88abfcb68c394c9ceac66
Signed-off-by: aravind.est <aravindhan.a@est.tech>
smo-install/helm-override/default/onap-override.yaml
smo-install/scripts/sub-scripts/install-nonrtric.sh

index f95d65f..790bf03 100644 (file)
@@ -45,6 +45,9 @@ global:
   # image pull policy
   pullPolicy: IfNotPresent
 
+  # Set to true to enable prometheus monitoring for all ONAP components
+  prometheusEnabled: false
+
   # override default mount path root directory
   # referenced by persistent volumes and log files
   persistence:
@@ -188,6 +191,8 @@ policy:
         baseUrl: http://policymanagementservice.nonrtric:8081
   policy-clamp-ac-kserve-ppnt:
     enabled: true
+  policy-opa-pdp:
+    enabled: false
 sdnc:
   enabled: true
   image: onap/sdnc-image:2.6.1
index 1f18916..7526b30 100755 (executable)
@@ -45,7 +45,7 @@ fi
 
 if [ "$MODE" == "dev" ]; then
     echo "Installing NONRTRIC in dev mode"
-    helm install --debug oran-nonrtric local/nonrtric --namespace nonrtric -f $OVERRIDEYAML --set nonrtric.persistence.mountPath="/dockerdata-nfs/deployment-$3" --set kong.kongpv.enable=$kongPvEnabled
+    helm install --debug oran-nonrtric local/nonrtric --namespace nonrtric -f $OVERRIDEYAML --set nonrtric.persistence.mountPath="/dockerdata-nfs/deployment-$3" --set kong.kongpv.enabled=$kongPvEnabled
 else
     echo "Installing NONRTRIC in release mode"
     # This following should be modified once the charts are uploaded and available in the nexus repository
@@ -53,7 +53,7 @@ else
         # helm repo add nonrtric https://nexus3.o-ran-sc.org/repository/smo-helm-snapshots/
         # helm repo update
         # helm install oran-nonrtric nonrtric/nonrtric --namespace nonrtric -f $OVERRIDEYAML --create-namespace
-    helm install oran-nonrtric local/nonrtric --namespace nonrtric -f $OVERRIDEYAML --set nonrtric.persistence.mountPath="/dockerdata-nfs/deployment-$3" --set kong.kongpv.enable=$kongPvEnabled
+    helm install oran-nonrtric local/nonrtric --namespace nonrtric -f $OVERRIDEYAML --set nonrtric.persistence.mountPath="/dockerdata-nfs/deployment-$3" --set kong.kongpv.enabled=$kongPvEnabled
 fi