diff options
author | Alexis de Talhouƫt <alexis.de_talhouet@bell.ca> | 2018-12-07 18:12:59 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-12-07 18:12:59 +0000 |
commit | 3535168b237838e1d2dbd5582709044385617d7d (patch) | |
tree | 1eef86148d0c124427f8cce6a5db3e7a59d650aa /charts/aai-champ/templates/secrets.yaml | |
parent | 11867817ce212f3b44a9623a25704412a169aaf1 (diff) | |
parent | b3b41fa798e158d1a26a7588f45c8871ba59e7dc (diff) |
Merge "Add Pluggable Security to Champ"
Diffstat (limited to 'charts/aai-champ/templates/secrets.yaml')
-rw-r--r-- | charts/aai-champ/templates/secrets.yaml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/charts/aai-champ/templates/secrets.yaml b/charts/aai-champ/templates/secrets.yaml index dddf156..a0a1519 100644 --- a/charts/aai-champ/templates/secrets.yaml +++ b/charts/aai-champ/templates/secrets.yaml @@ -37,3 +37,32 @@ 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 }}
\ No newline at end of file |