diff options
author | bwong21 <bwong@amdocs.com> | 2019-03-14 17:15:58 +0000 |
---|---|---|
committer | bwong21 <bwong@amdocs.com> | 2019-03-14 17:25:13 +0000 |
commit | 8737f7ead2eb23a90926fcf36703d368f16cf10e (patch) | |
tree | 1b898fe81df2e1a279f4573b0971e9b8e905ff48 /kubernetes/aai/charts/aai-resources/templates/configmap.yaml | |
parent | a3589e313c7205754aecdc8e8430cb5459f20ef1 (diff) |
SidecarRproxy: uri-auth config file to configmap
OOM config change to the Sidecar rproxy's configuration file uri-authorization.json to a
configmap instead of secret
Change-Id: I75e1908177a930e88fe2640cc1395e48bc28f19e
Issue-ID: AAF-787
Signed-off-by: bwong21 <bwong@amdocs.com>
Diffstat (limited to 'kubernetes/aai/charts/aai-resources/templates/configmap.yaml')
-rw-r--r-- | kubernetes/aai/charts/aai-resources/templates/configmap.yaml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/kubernetes/aai/charts/aai-resources/templates/configmap.yaml b/kubernetes/aai/charts/aai-resources/templates/configmap.yaml index b5a7fc562f..0f40d04dae 100644 --- a/kubernetes/aai/charts/aai-resources/templates/configmap.yaml +++ b/kubernetes/aai/charts/aai-resources/templates/configmap.yaml @@ -203,6 +203,14 @@ data: {{ tpl (.Files.Glob "resources/rproxy/config/logback-spring.xml").AsConfig . | indent 2 }} --- apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "common.fullname" . }}-rproxy-uri-auth-config + namespace: {{ include "common.namespace" . }} +data: +{{ tpl (.Files.Glob "resources/rproxy/config/auth/uri-authorization.json").AsConfig . | indent 2 }} +--- +apiVersion: v1 kind: Secret metadata: name: {{ include "common.fullname" . }}-rproxy-auth-config |