X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fsimulator-group%2Fpolicy_agent%2Fapp.yaml;h=269d9ca47b654d04d9ba4bd70bd060bd09da99f9;hb=968b89731a192c2ee3f3393d00519879ad89ce56;hp=ddbae37269fd9872c1715c1ae16aca18bf78d972;hpb=e0b665e3ff544bb78411bdc7f6b3ba2818fdeed4;p=nonrtric.git diff --git a/test/simulator-group/policy_agent/app.yaml b/test/simulator-group/policy_agent/app.yaml index ddbae372..269d9ca4 100644 --- a/test/simulator-group/policy_agent/app.yaml +++ b/test/simulator-group/policy_agent/app.yaml @@ -17,10 +17,13 @@ spec: run: $POLICY_AGENT_APP_NAME autotest: PA spec: + securityContext: + runAsUser: 0 +# Need to run as root to be able to store files in dir mounted as a hostPath volume containers: - name: $POLICY_AGENT_APP_NAME image: $POLICY_AGENT_IMAGE - imagePullPolicy: Never + imagePullPolicy: $KUBE_IMAGE_PULL_POLICY ports: - name: http containerPort: $POLICY_AGENT_INTERNAL_PORT @@ -29,6 +32,10 @@ spec: volumeMounts: - mountPath: $POLICY_AGENT_CONFIG_MOUNT_PATH name: pa-conf-name +# volumeMounts: + - mountPath: $POLICY_AGENT_CONTAINER_MNT_DIR + name: pa-pv-data-name +# volumeMounts: - mountPath: $POLICY_AGENT_DATA_MOUNT_PATH name: pa-data-name volumes: @@ -39,4 +46,10 @@ spec: - configMap: defaultMode: 420 name: $POLICY_AGENT_DATA_CONFIGMAP_NAME - name: pa-data-name \ No newline at end of file + name: pa-data-name + - persistentVolumeClaim: + claimName: $POLICY_AGENT_DATA_PVC_NAME + name: pa-pv-data-name +# Selector will be set when pod is started first time + nodeSelector: +