* style: CRLF -> LF * build: Use AppVersion for image * chore: Helm YAML indent_size = 2 * ci: Deploy settings_local.py via helm * ci: misc progress on the helm chart (WIP) * ci: move configmap to env in values.yaml * ci: Refactor env and configmap formats * ci: merge fixup + helm debugging * ci: Fix rabbitmq.yaml and its values * ci: fix up other deployments * ci: fix copy error in beat.yaml and celery.yaml * ci: install correct images and volumes
13 lines
370 B
YAML
13 lines
370 B
YAML
{{- if .Values.serviceAccounts.rabbitmq.create -}}
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: {{ include "datatracker.serviceAccountName.rabbitmq" . }}
|
|
labels:
|
|
{{- include "datatracker.labels" . | nindent 4 }}
|
|
{{- with .Values.serviceAccounts.rabbitmq.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- end -}}
|