54 lines
2.1 KiB
YAML
54 lines
2.1 KiB
YAML
|
{{- if (and (not .Values.useStatefulSet) (or (not .Values.persistence.enabled) (eq .Values.persistence.type "pvc"))) }}
|
||
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: {{ include "grafana.fullname" . }}
|
||
|
namespace: {{ include "grafana.namespace" . }}
|
||
|
labels:
|
||
|
{{- include "grafana.labels" . | nindent 4 }}
|
||
|
{{- with .Values.labels }}
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
{{- with .Values.annotations }}
|
||
|
annotations:
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
spec:
|
||
|
{{- if (not .Values.autoscaling.enabled) }}
|
||
|
replicas: {{ .Values.replicas }}
|
||
|
{{- end }}
|
||
|
revisionHistoryLimit: {{ .Values.revisionHistoryLimit }}
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
{{- include "grafana.selectorLabels" . | nindent 6 }}
|
||
|
{{- with .Values.deploymentStrategy }}
|
||
|
strategy:
|
||
|
{{- toYaml . | trim | nindent 4 }}
|
||
|
{{- end }}
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
{{- include "grafana.selectorLabels" . | nindent 8 }}
|
||
|
{{- with .Values.podLabels }}
|
||
|
{{- toYaml . | nindent 8 }}
|
||
|
{{- end }}
|
||
|
annotations:
|
||
|
checksum/config: {{ include "grafana.configData" . | sha256sum }}
|
||
|
{{- if .Values.dashboards }}
|
||
|
checksum/dashboards-json-config: {{ include (print $.Template.BasePath "/dashboards-json-configmap.yaml") . | sha256sum }}
|
||
|
{{- end }}
|
||
|
checksum/sc-dashboard-provider-config: {{ include "grafana.configDashboardProviderData" . | sha256sum }}
|
||
|
{{- if and (or (and (not .Values.admin.existingSecret) (not .Values.env.GF_SECURITY_ADMIN_PASSWORD__FILE) (not .Values.env.GF_SECURITY_ADMIN_PASSWORD)) (and .Values.ldap.enabled (not .Values.ldap.existingSecret))) (not .Values.env.GF_SECURITY_DISABLE_INITIAL_ADMIN_CREATION) }}
|
||
|
checksum/secret: {{ include "grafana.secretsData" . | sha256sum }}
|
||
|
{{- end }}
|
||
|
{{- if .Values.envRenderSecret }}
|
||
|
checksum/secret-env: {{ tpl (toYaml .Values.envRenderSecret) . | sha256sum }}
|
||
|
{{- end }}
|
||
|
kubectl.kubernetes.io/default-container: {{ .Chart.Name }}
|
||
|
{{- with .Values.podAnnotations }}
|
||
|
{{- toYaml . | nindent 8 }}
|
||
|
{{- end }}
|
||
|
spec:
|
||
|
{{- include "grafana.pod" . | nindent 6 }}
|
||
|
{{- end }}
|