summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorBorislav Glozman <Borislav.Glozman@amdocs.com>2019-02-10 10:59:25 +0000
committerGerrit Code Review <gerrit@onap.org>2019-02-10 10:59:25 +0000
commit0d31ee939daad7848f04ce74f79f4505ca2ace9c (patch)
tree59356219942c1a4f827c04b43634ce587d030dc4 /templates
parentb6c4bb2837f6d7ced11b956c1cf69dc0b73a0309 (diff)
parentf988fcca66394550f5530f479574f34f6caaea2d (diff)
Merge "Update Gizmo and Champ security config"
Diffstat (limited to 'templates')
-rw-r--r--templates/configmap.yaml30
1 files changed, 29 insertions, 1 deletions
diff --git a/templates/configmap.yaml b/templates/configmap.yaml
index a23ed5f..651bf8d 100644
--- a/templates/configmap.yaml
+++ b/templates/configmap.yaml
@@ -72,4 +72,32 @@ type: Opaque
data:
{{ tpl (.Files.Glob "resources/config/aai/*").AsSecrets . | indent 2 }}
-
+{{ if .Values.global.installSidecarSecurity }}
+---
+apiVersion: v1
+kind: Secret
+metadata:
+ name: aai-fproxy-auth-certs
+ namespace: {{ include "common.namespace" . }}
+type: Opaque
+data:
+{{ tpl (.Files.Glob "resources/config/fproxy/auth/*").AsSecrets . | indent 2 }}
+---
+apiVersion: v1
+kind: Secret
+metadata:
+ name: aai-rproxy-auth-certs
+ namespace: {{ include "common.namespace" . }}
+type: Opaque
+data:
+{{ tpl (.Files.Glob "resources/config/rproxy/auth/*").AsSecrets . | indent 2 }}
+---
+apiVersion: v1
+kind: Secret
+metadata:
+ name: aai-rproxy-security-config
+ namespace: {{ include "common.namespace" . }}
+type: Opaque
+data:
+{{ tpl (.Files.Glob "resources/config/rproxy/security/*").AsSecrets . | indent 2 }}
+{{ end }} \ No newline at end of file