mirror of
https://github.com/bitnami/charts.git
synced 2026-03-10 15:07:49 +08:00
* [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>
19 lines
824 B
YAML
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 }}
|