Files
charts/bitnami/oauth2-proxy/templates/configmap.yaml
Carlos Rodríguez Hernández 99ace8d438 [bitnami/oauth2-proxy] Add oauth2-proxy to the catalog (#6688)
* [bitnami/oauth2-proxy] WIP Add oauth2-proxy to the catalog

* Apply suggestions

* Add missing elements

* Fix tables

* Fix readme

* Architecture

* Add to generate-chart-readme

* Fix port

* Fix chart

Co-authored-by: Javier Salmeron Garcia <jsalmeron@vmware.com>
Co-authored-by: Javier J. Salmerón-García <jsalmeron@bitnami.com>
2021-07-14 19:16:16 +02:00

19 lines
824 B
YAML

{{- if and (.Values.configuration.content) (not .Values.configuration.existingConfigmap) }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ template "common.names.fullname" . }}
namespace: {{ .Release.Namespace | quote }}
labels: {{- include "common.labels.standard" . | nindent 4 }}
app.kubernetes.io/component: oauth2-proxy
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
data:
oauth2_proxy.cfg: |
{{- include "common.tplvalues.render" ( dict "value" .Values.configuration.content "context" $ ) | nindent 4 }}
{{- end }}