Merge "NONRTRIC - PMS Fix dynamic configuration"
authorJohn Keeney <john.keeney@est.tech>
Fri, 14 Jan 2022 11:06:48 +0000 (11:06 +0000)
committerGerrit Code Review <gerrit@o-ran-sc.org>
Fri, 14 Jan 2022 11:06:48 +0000 (11:06 +0000)
nonrtric/RECIPE_EXAMPLE/example_recipe.yaml
nonrtric/helm/nonrtric/templates/pv1.yaml
nonrtric/helm/nonrtric/templates/pv2.yaml
nonrtric/helm/nonrtric/values.yaml
nonrtric/helm/policymanagementservice/resources/config/application.yaml
nonrtric/helm/policymanagementservice/templates/statefulset.yaml

index 1a0edb1..c08789d 100644 (file)
@@ -36,14 +36,15 @@ nonrtric:
     # Set the size to 0 if you do not need the volume (if you are using Dynamic Volume Provisioning)
     size: 2Gi
     storageClassName: pms-storage
+    hostPath: /var/nonrtric/pms-storage
   volume2:
      # Set the size to 0 if you do not need the volume (if you are using Dynamic Volume Provisioning)
     size: 2Gi
     storageClassName: ics-storage
+    hostPath: /var/nonrtric/ics-storage
   volume3:
     size: 1Gi
     storageClassName: helmmanager-storage
-
 common:
   releasePrefix: r3-dev-nonrtric
 # Do not change the namespace
index c9ba128..27426e4 100644 (file)
@@ -29,7 +29,7 @@ spec:
     - ReadWriteMany
   persistentVolumeReclaimPolicy: Retain
   hostPath:
-    path: /dockerdata-nfs/nonrtric/volume1
+    path:  {{ .Values.nonrtric.volume1.hostPath }}
   storageClassName: {{ .Values.nonrtric.volume1.storageClassName }}
 
 {{- end }}
index 6fd313c..0058780 100644 (file)
@@ -29,7 +29,7 @@ spec:
     - ReadWriteMany
   persistentVolumeReclaimPolicy: Retain
   hostPath:
-    path: /dockerdata-nfs/nonrtric/volume2
+    path:  {{ .Values.nonrtric.volume2.hostPath }}
   storageClassName: {{ .Values.nonrtric.volume2.storageClassName }}
 
 {{- end }}
index 4b07fb9..bda8098 100644 (file)
@@ -28,9 +28,11 @@ nonrtric:
   volume1:
     size: 1Gi
     storageClassName: volume1
+    hostPath: /dockerdata-nfs/nonrtric/volume1
   volume2:
     size: 1Gi
     storageClassName: volume2
+    hostPath: /dockerdata-nfs/nonrtric/volume2
   volume3:
     size: 1Gi
     storageClassName: volume3
\ No newline at end of file
index 5b1016c..0294e37 100644 (file)
@@ -53,7 +53,7 @@ server:
 app:
   # Location of the component configuration file. The file will only be used if the Consul database is not used;
   # configuration from the Consul will override the file.
-  filepath: /opt/app/policy-agent/data/application_configuration.json
+  filepath: /var/policy-management-service/application_configuration.json
   webclient:
     # Configuration of the trust store used for the HTTP client (outgoing requests)
     # The file location and the password for the truststore is only relevant if trust-store-used == true
index 3ef2826..0930d07 100644 (file)
@@ -41,6 +41,21 @@ spec:
         release: {{ .Release.Name }}
     spec:
       hostname: {{ include "common.name.policymanagementservice" . }}
+      initContainers:
+      - name: copy
+        image: busybox:1.28
+        command:
+        - /bin/sh
+        - -c
+        - FILE=/var/policy-management-service/application_configuration.json;
+          if [ ! -f $FILE ]; then
+            cp  /etc/app/policy-management-service/initialdata/application_configuration.json $FILE;
+          fi
+        volumeMounts:
+        - name: {{ include "common.name.policymanagementservice" . }}-vardata
+          mountPath: "/var/policy-management-service"
+        - name: {{ include "common.name.policymanagementservice" . }}-policy-data
+          mountPath: /etc/app/policy-management-service/initialdata
       containers:
       - name: {{ include "common.container.policymanagementservice" . }}
         image: {{ .Values.policymanagementservice.image.registry }}/{{ .Values.policymanagementservice.image.name }}:{{ .Values.policymanagementservice.image.tag }}
@@ -67,7 +82,7 @@ spec:
         - name: {{ include "common.name.policymanagementservice" . }}-policy-config
           mountPath: /opt/app/policy-agent/config
         - name: {{ include "common.name.policymanagementservice" . }}-policy-data
-          mountPath: /opt/app/policy-agent/data
+          mountPath: /etc/app/policy-management-service/initialdata
       volumes:
         - name: {{ include "common.name.policymanagementservice" . }}-policy-config
           configMap: