diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-04-06 12:35:18 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-04-06 12:35:18 +0000 |
commit | 7e8244a3a3a835a8758ffa865542f4dc53bb6771 (patch) | |
tree | f63fa226051851e441e363ee6d4aeb2d6a3ac709 /kubernetes/sdnc/components/sdnc-web/templates/deployment.yaml | |
parent | 333281b85d86c356ab0f09caab82890fce0442fb (diff) | |
parent | b43e92cc48e97622a3bdcb0cc385ae5bf894b1b5 (diff) |
Merge "[SDNC] Enable SDNC to use external oauth provider"
Diffstat (limited to 'kubernetes/sdnc/components/sdnc-web/templates/deployment.yaml')
-rw-r--r-- | kubernetes/sdnc/components/sdnc-web/templates/deployment.yaml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/kubernetes/sdnc/components/sdnc-web/templates/deployment.yaml b/kubernetes/sdnc/components/sdnc-web/templates/deployment.yaml index a2e3a48e25..7b04773ec5 100644 --- a/kubernetes/sdnc/components/sdnc-web/templates/deployment.yaml +++ b/kubernetes/sdnc/components/sdnc-web/templates/deployment.yaml @@ -85,7 +85,10 @@ spec: - name: TILEURL value: {{ .Values.config.topologyserver.tileserverUrl }} {{ end }} - + - name: ENABLE_OAUTH + value: "{{ .Values.config.oauth.enabled | default "false" }}" + - name: ENABLE_ODLUX_RBAC + value: "{{ .Values.config.oauth.odluxRbac.enabled | default "false" }}" volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }} - mountPath: /etc/localtime name: localtime |