mirror of
https://github.com/bitnami/charts.git
synced 2026-03-11 15:37:20 +08:00
* [bitnami/nginx] server_blocks * add concourse * add init contianer permissions * add concourse * add init contianer permissions * add readme-generator-for-helm and some review * add review comments * change names, update review changes * fix web svc * add change of review * more changes * added message to get username and password * add reviwe changes * Remove trailing spaces * Continue working on changes * fix * Add concourse * nodePort * Allow random password * Fix rbac * lint * lint * dashes * All done * Fix readme * Lint * Fix toleration * update values * Update readme * [bitnami/concourse] Update components versions Signed-off-by: Bitnami Containers <containers@bitnami.com> Co-authored-by: Javier Salmeron Garcia <jsalmeron@vmware.com> Co-authored-by: Javier J. Salmerón-García <jsalmeron@bitnami.com> Co-authored-by: Bitnami Containers <containers@bitnami.com>
29 lines
1.2 KiB
YAML
29 lines
1.2 KiB
YAML
{{- if and .Values.web.enabled (not .Values.web.existingConfigmap) -}}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ template "concourse.web.fullname" . }}
|
|
namespace: {{ .Release.Namespace | quote }}
|
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
|
app.kubernetes.io/component: web
|
|
{{- 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:
|
|
{{- if .Values.web.auth.mainTeam.config }}
|
|
main-team.yml: |-
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.web.auth.mainTeam.config "context" $ ) | nindent 4 }}
|
|
{{- end -}}
|
|
{{- if .Values.web.configRBAC }}
|
|
config-rbac.yml: |-
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.web.configRBAC "context" $ ) | nindent 4 }}
|
|
{{- end -}}
|
|
{{- if .Values.web.baseResourceTypeDefaults }}
|
|
brt-defaults.yml: |-
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.web.baseResourceTypeDefaults "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|