aboutsummaryrefslogtreecommitdiffstats
path: root/charts/aai-gizmo/templates/secrets.yaml
diff options
context:
space:
mode:
authorRavi Geda <gravik@amdocs.com>2018-09-30 21:14:41 +0100
committerRavi Geda <gravik@amdocs.com>2018-10-09 18:11:25 +0100
commit375666c83803e8afadd86c7255dd2777f5a2c0e3 (patch)
treeb9ceb482112064982b647a7b5e9d023a0eab1130 /charts/aai-gizmo/templates/secrets.yaml
parent622ee455715f0ae4ee39c1717c21fe8d4982782c (diff)
Add Pluggable Security to Gizmo
Note that by default this feature is turned off. To enable update the installSidecarSecurity in aai/values.yaml to true. Change-Id: If4c32b55aa6d8e123c9e86015ff084848fd01c25 Issue-ID: AAI-1694 Signed-off-by: Ravi Geda <gravik@amdocs.com>
Diffstat (limited to 'charts/aai-gizmo/templates/secrets.yaml')
-rw-r--r--charts/aai-gizmo/templates/secrets.yaml30
1 files changed, 30 insertions, 0 deletions
diff --git a/charts/aai-gizmo/templates/secrets.yaml b/charts/aai-gizmo/templates/secrets.yaml
index 58d5769..7db7605 100644
--- a/charts/aai-gizmo/templates/secrets.yaml
+++ b/charts/aai-gizmo/templates/secrets.yaml
@@ -40,3 +40,33 @@ type: Opaque
data:
KEY_STORE_PASSWORD: {{ .Values.config.keyStorePassword | b64enc | quote }}
KEY_MANAGER_PASSWORD: {{ .Values.config.keyManagerPassword | b64enc | quote }}
+
+{{ if .Values.global.installSidecarSecurity }}
+---
+apiVersion: v1
+kind: Secret
+metadata:
+ name: {{ include "common.fullname" . }}-fproxy-auth-config
+ namespace: {{ include "common.namespace" . }}
+type: Opaque
+data:
+{{ tpl (.Files.Glob "resources/fproxy/config/auth/*").AsSecrets . | indent 2 }}
+---
+apiVersion: v1
+kind: Secret
+metadata:
+ name: {{ include "common.fullname" . }}-rproxy-auth-config
+ namespace: {{ include "common.namespace" . }}
+type: Opaque
+data:
+{{ tpl (.Files.Glob "resources/rproxy/config/auth/*").AsSecrets . | indent 2 }}
+---
+apiVersion: v1
+kind: Secret
+metadata:
+ name: {{ include "common.fullname" . }}-rproxy-security-config
+ namespace: {{ include "common.namespace" . }}
+type: Opaque
+data:
+{{ tpl (.Files.Glob "resources/rproxy/config/security/*").AsSecrets . | indent 2 }}
+{{ end }}