From 9a57f4dca77d6c62ff657b33bd381c82b75ef634 Mon Sep 17 00:00:00 2001 From: mayankg2703 Date: Wed, 31 Jan 2018 13:55:56 +0000 Subject: sdnc ueb config segrigation Change-Id: Ie67e41f09dceb058d5b60f4ff90c4c819ec7387a Issue-ID: OOM-641 Signed-off-by: mayankg2703 --- kubernetes/sdnc/templates/ueb-deployment-configmap.yaml | 9 +++++++++ kubernetes/sdnc/templates/ueb-deployment.yaml | 7 ++++--- 2 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 kubernetes/sdnc/templates/ueb-deployment-configmap.yaml (limited to 'kubernetes/sdnc/templates') diff --git a/kubernetes/sdnc/templates/ueb-deployment-configmap.yaml b/kubernetes/sdnc/templates/ueb-deployment-configmap.yaml new file mode 100644 index 0000000000..4970de01b6 --- /dev/null +++ b/kubernetes/sdnc/templates/ueb-deployment-configmap.yaml @@ -0,0 +1,9 @@ +#{{ if not .Values.disableSdncUeb }} +apiVersion: v1 +kind: ConfigMap +metadata: + name: sdnc-ueb-configmap + namespace: {{ .Values.nsPrefix }}-sdnc +data: +{{ tpl (.Files.Glob "resources/config/ueb/*").AsConfig . | indent 2 }} +#{{ end }} diff --git a/kubernetes/sdnc/templates/ueb-deployment.yaml b/kubernetes/sdnc/templates/ueb-deployment.yaml index 324e0e1724..a7e5e748bd 100644 --- a/kubernetes/sdnc/templates/ueb-deployment.yaml +++ b/kubernetes/sdnc/templates/ueb-deployment.yaml @@ -47,14 +47,15 @@ spec: name: localtime readOnly: true - mountPath: /opt/onap/sdnc/data/properties/ueb-listener.properties + subPath: ueb-listener.properties name: ueb-config volumes: - name: localtime hostPath: path: /etc/localtime - name: ueb-config - hostPath: - path: /dockerdata-nfs/{{ .Values.nsPrefix }}/sdnc/ueb/ueb-listener.properties + configMap: + name: sdnc-ueb-configmap imagePullSecrets: - name: "{{ .Values.nsPrefix }}-docker-registry-key" -#{{ end }} \ No newline at end of file +#{{ end }} -- cgit 1.2.3-korg