checking sdcore or free5gc directory exist in a image

tested these changes on aiab setup with all sdcore images/free5gc images.
All pods are up and running, registration call flow is fine with gnbsim

Change-Id: I8a0fdab559cf3cb524cf159ae1d7b201acfd05f3
diff --git a/5g-control-plane/templates/deployment-udm.yaml b/5g-control-plane/templates/deployment-udm.yaml
index 2714ef0..962f0ff 100644
--- a/5g-control-plane/templates/deployment-udm.yaml
+++ b/5g-control-plane/templates/deployment-udm.yaml
@@ -55,7 +55,7 @@
       {{- end }}
         stdin: true
         tty: true
-        command: ["/free5gc/script/udm-run.sh"]
+        command: ["/free5gc/script/udm-run.sh", "/sdcore/script/udm-run.sh"]
         env:
         - name: GRPC_GO_LOG_VERBOSITY_LEVEL
           value: {{ .Values.config.grpc.golog_verbosity | quote }}
@@ -78,16 +78,29 @@
 {{ toYaml .Values.resources.udm | indent 10 }}
       {{- end }}
         volumeMounts:
-        - name: run-script
+        - name: run-script-tmp
           mountPath: /free5gc/script/udm-run.sh
           subPath: udm-run.sh
-        - name: nf-config
+        - name: nf-config-tmp
           mountPath: /free5gc/config
+        - name: run-script
+          mountPath: /sdcore/script/udm-run.sh
+          subPath: udm-run.sh
+        - name: nf-config
+          mountPath: /sdcore/config
       {{- if .Values.config.coreDump.enabled }}
         - name: coredump
           mountPath: /tmp/coredump
       {{- end }}
       volumes:
+      - name: run-script-tmp
+        configMap:
+          name: udm
+          defaultMode: 493
+      - name: nf-config-tmp
+        configMap:
+          name: udm
+          defaultMode: 493
       - name: run-script
         configMap:
           name: udm