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-webui.yaml b/5g-control-plane/templates/deployment-webui.yaml
index c71becb..d3a2527 100644
--- a/5g-control-plane/templates/deployment-webui.yaml
+++ b/5g-control-plane/templates/deployment-webui.yaml
@@ -61,22 +61,35 @@
       {{- end }}
         stdin: true
         tty: true
-        command: ["/free5gc/script/webui-run.sh"]
+        command: ["/free5gc/script/webui-run.sh", "/sdcore/script/webui-run.sh"]
       {{- if .Values.resources.enabled }}
         resources:
 {{ toYaml .Values.resources.webui | indent 10 }}
       {{- end }}
         volumeMounts:
-        - name: run-script
+        - name: run-script-tmp
           mountPath: /free5gc/script/webui-run.sh
           subPath: webui-run.sh
-        - name: nf-config
+        - name: nf-config-tmp
           mountPath: /free5gc/config
+        - name: run-script
+          mountPath: /sdcore/script/webui-run.sh
+          subPath: webui-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: webui
+          defaultMode: 493
+      - name: nf-config-tmp
+        configMap:
+          name: webui
+          defaultMode: 493
       - name: run-script
         configMap:
           name: webui