mirror of
				https://github.com/zulip/docker-zulip.git
				synced 2025-11-03 21:43:26 +00:00 
			
		
		
		
	This is possibly useful with both `SECRET_...`[^1] and `SETTING_...`[^2][^3] values. [^1]: https://kubernetes.io/docs/tasks/inject-data-application/distribute-credentials-secure/ [^2]: https://kubernetes.io/docs/tasks/inject-data-application/environment-variable-expose-pod-information/ [^3]: https://kubernetes.io/docs/tasks/configure-pod-container/configure-pod-configmap/ Co-authored-by: Alex Vandiver <alexmv@zulip.com>
		
			
				
	
	
		
			100 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Smarty
		
	
	
	
	
	
			
		
		
	
	
			100 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Smarty
		
	
	
	
	
	
{{/*
 | 
						|
Expand the name of the chart.
 | 
						|
*/}}
 | 
						|
{{- define "zulip.name" -}}
 | 
						|
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }}
 | 
						|
{{- end }}
 | 
						|
 | 
						|
{{/*
 | 
						|
Create a default fully qualified app name.
 | 
						|
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
 | 
						|
If release name contains chart name it will be used as a full name.
 | 
						|
*/}}
 | 
						|
{{- define "zulip.fullname" -}}
 | 
						|
{{- if .Values.fullnameOverride }}
 | 
						|
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
 | 
						|
{{- else }}
 | 
						|
{{- $name := default .Chart.Name .Values.nameOverride }}
 | 
						|
{{- if contains $name .Release.Name }}
 | 
						|
{{- .Release.Name | trunc 63 | trimSuffix "-" }}
 | 
						|
{{- else }}
 | 
						|
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }}
 | 
						|
{{- end }}
 | 
						|
{{- end }}
 | 
						|
{{- end }}
 | 
						|
 | 
						|
{{/*
 | 
						|
Create chart name and version as used by the chart label.
 | 
						|
*/}}
 | 
						|
{{- define "zulip.chart" -}}
 | 
						|
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
 | 
						|
{{- end }}
 | 
						|
 | 
						|
{{/*
 | 
						|
Common labels
 | 
						|
*/}}
 | 
						|
{{- define "zulip.labels" -}}
 | 
						|
helm.sh/chart: {{ include "zulip.chart" . }}
 | 
						|
{{ include "zulip.selectorLabels" . }}
 | 
						|
{{- if .Chart.AppVersion }}
 | 
						|
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
 | 
						|
{{- end }}
 | 
						|
app.kubernetes.io/managed-by: {{ .Release.Service }}
 | 
						|
{{- end }}
 | 
						|
 | 
						|
{{/*
 | 
						|
Selector labels
 | 
						|
*/}}
 | 
						|
{{- define "zulip.selectorLabels" -}}
 | 
						|
app.kubernetes.io/name: {{ include "zulip.name" . }}
 | 
						|
app.kubernetes.io/instance: {{ .Release.Name }}
 | 
						|
{{- end }}
 | 
						|
 | 
						|
{{/*
 | 
						|
Create the name of the service account to use
 | 
						|
*/}}
 | 
						|
{{- define "zulip.serviceAccountName" -}}
 | 
						|
{{- if .Values.serviceAccount.create }}
 | 
						|
{{- default (include "zulip.fullname" .) .Values.serviceAccount.name }}
 | 
						|
{{- else }}
 | 
						|
{{- default "default" .Values.serviceAccount.name }}
 | 
						|
{{- end }}
 | 
						|
{{- end }}
 | 
						|
 | 
						|
{{/*
 | 
						|
include all env variables for Zulip pods
 | 
						|
*/}}
 | 
						|
{{- define "zulip.env" -}}
 | 
						|
 | 
						|
- name: DB_HOST
 | 
						|
  value: "{{ template "postgresql.v1.primary.fullname" .Subcharts.postgresql }}"
 | 
						|
- name: DB_HOST_PORT
 | 
						|
  value: "{{ template "postgresql.v1.service.port" .Subcharts.postgresql }}"
 | 
						|
- name: DB_USER
 | 
						|
  value: "postgres"
 | 
						|
- name: SETTING_MEMCACHED_LOCATION
 | 
						|
  value: "{{ template "common.names.fullname" .Subcharts.memcached }}:11211"
 | 
						|
- name: SETTING_RABBITMQ_HOST
 | 
						|
  value: "{{ template "common.names.fullname" .Subcharts.rabbitmq }}"
 | 
						|
- name: SETTING_REDIS_HOST
 | 
						|
  value: "{{ template "common.names.fullname" .Subcharts.redis }}-headless"
 | 
						|
- name: SECRETS_rabbitmq_password
 | 
						|
  value: "{{ .Values.rabbitmq.auth.password }}"
 | 
						|
- name: SECRETS_postgres_password
 | 
						|
  value: "{{ .Values.postgresql.auth.password }}"
 | 
						|
- name: SECRETS_memcached_password
 | 
						|
  value: "{{ .Values.memcached.memcachedPassword }}"
 | 
						|
- name: SECRETS_redis_password
 | 
						|
  value: "{{ .Values.redis.auth.password }}"
 | 
						|
- name: SECRETS_secret_key
 | 
						|
  value: "{{ .Values.zulip.password }}"
 | 
						|
{{- range $key, $value := .Values.zulip.environment }}
 | 
						|
- name: {{ $key }}
 | 
						|
  {{- if kindIs "map" $value }}
 | 
						|
  {{- toYaml $value | nindent 2 }}
 | 
						|
  {{- else }}
 | 
						|
  value: {{ $value | quote }}
 | 
						|
  {{- end }}
 | 
						|
{{- end }}
 | 
						|
{{- end }}
 |