Configurable repository for container images.

Configurable repository for container images. By default
pull the images from docker hub

Change-Id: Iabcf97318be11c20e6fcb7b7766c9325512bb867
diff --git a/5g-control-plane/templates/deployment-webui.yaml b/5g-control-plane/templates/deployment-webui.yaml
index 5aebec2..f023a13 100644
--- a/5g-control-plane/templates/deployment-webui.yaml
+++ b/5g-control-plane/templates/deployment-webui.yaml
@@ -34,7 +34,7 @@
     {{- end }}
       initContainers:
       - name: wait-webui-module
-        image: {{ .Values.images.tags.init | quote }}
+        image: {{ .Values.images.repository }}{{ .Values.images.tags.init }}
         imagePullPolicy: {{ .Values.images.pullPolicy }}
         command: ['sh', '-c', 'until nslookup webui; do echo waiting for webui; sleep 4; done;']
     {{- if .Values.config.coreDump.enabled }}
@@ -42,7 +42,7 @@
     {{- end }}
       containers:
       - name: webui
-        image: {{ .Values.images.tags.webui }}
+        image: {{ .Values.images.repository }}{{ .Values.images.tags.webui }}
         env:
         - name: GRPC_GO_LOG_VERBOSITY_LEVEL
           value: {{ .Values.config.grpc.golog_verbosity | quote }}