diff options
author | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2018-03-21 14:58:11 -0700 |
---|---|---|
committer | Mike Elliott <mike.elliott@amdocs.com> | 2018-04-05 15:47:15 -0400 |
commit | cb38238247608ba5db7e7112735d76f12bdc4af1 (patch) | |
tree | dbb23c399f33c6cd4916f2eb37ea0979a2f246f7 /templates | |
parent | e371d049390220a25901481e62b51d91c7c338ec (diff) |
Add support for secret management service
Adding Helm charts for deployment of secret
management service. Adding them as a subchart under aaf.
Solved the values problem by using env variable to
pass values to SMS about the backend service URL
Issue-ID: AAF-162
Change-Id: Iac7973fdf38281a1d1b6ccb0fbfb5c3a052ac7ae
Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
Signed-off-by: Mike Elliott <mike.elliott@amdocs.com>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/deployment.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/deployment.yaml b/templates/deployment.yaml index 03506b5..2a4e7d2 100644 --- a/templates/deployment.yaml +++ b/templates/deployment.yaml @@ -52,7 +52,7 @@ spec: - env: - name: CASSANDRA_CLUSTER value: cassandra_container - image: "{{ .Values.global.repository | default .Values.repository }}/{{ .Values.image }}" + image: "{{ include "common.repository" . }}/{{ .Values.image }}" imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} volumeMounts: - mountPath: /data |