blob: 534190d4a4533d297783565c86b1a2fae0bcba1a [file] [log] [blame]
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +00001{{- $isSimpleScalable := eq (include "loki.deployment.isScalable" .) "true" -}}
2{{- if and $isSimpleScalable (not .Values.read.legacyReadTarget ) }}
3---
4apiVersion: apps/v1
5kind: StatefulSet
6metadata:
7 name: {{ include "loki.backendFullname" . }}
Giovanni Tirloni59219b62024-04-09 14:50:25 -03008 namespace: {{ $.Release.Namespace }}
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +00009 labels:
10 {{- include "loki.backendLabels" . | nindent 4 }}
11 app.kubernetes.io/part-of: memberlist
Giovanni Tirloni59219b62024-04-09 14:50:25 -030012 {{- if or (not (empty .Values.loki.annotations)) (not (empty .Values.backend.annotations))}}
13 annotations:
14 {{- with .Values.loki.annotations }}
15 {{- toYaml . | nindent 4 }}
16 {{- end }}
17 {{- with .Values.backend.annotations }}
18 {{- toYaml . | nindent 4 }}
19 {{- end }}
20 {{- end }}
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +000021spec:
Mohammed Naser7d1623e2024-06-17 09:12:39 -040022{{- if not .Values.backend.autoscaling.enabled }}
Mohammed Naser65cda132024-05-02 14:34:08 -040023 {{- if eq .Values.deploymentMode "SingleBinary" }}
24 replicas: 0
25 {{- else }}
Mohammed Naser7d1623e2024-06-17 09:12:39 -040026 replicas: {{ .Values.backend.replicas }}
Mohammed Naser65cda132024-05-02 14:34:08 -040027 {{- end }}
Giovanni Tirloni59219b62024-04-09 14:50:25 -030028{{- end }}
29 podManagementPolicy: {{ .Values.backend.podManagementPolicy }}
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +000030 updateStrategy:
31 rollingUpdate:
32 partition: 0
33 serviceName: {{ include "loki.backendFullname" . }}-headless
34 revisionHistoryLimit: {{ .Values.loki.revisionHistoryLimit }}
Giovanni Tirloni59219b62024-04-09 14:50:25 -030035 {{- if and (semverCompare ">= 1.23-0" .Capabilities.KubeVersion.Version) (.Values.backend.persistence.enableStatefulSetAutoDeletePVC) (.Values.backend.persistence.volumeClaimsEnabled) }}
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +000036 {{/*
37 Data on the backend nodes is easy to replace, so we want to always delete PVCs to make
38 operation easier, and will rely on re-fetching data when needed.
39 */}}
40 persistentVolumeClaimRetentionPolicy:
41 whenDeleted: Delete
42 whenScaled: Delete
43 {{- end }}
44 selector:
45 matchLabels:
46 {{- include "loki.backendSelectorLabels" . | nindent 6 }}
47 template:
48 metadata:
49 annotations:
Giovanni Tirloni59219b62024-04-09 14:50:25 -030050 checksum/config: {{ include (print .Template.BasePath "/config.yaml") . | sha256sum }}
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +000051 {{- with .Values.loki.podAnnotations }}
52 {{- toYaml . | nindent 8 }}
53 {{- end }}
54 {{- with .Values.backend.podAnnotations }}
55 {{- toYaml . | nindent 8 }}
56 {{- end }}
57 labels:
58 {{- include "loki.backendSelectorLabels" . | nindent 8 }}
59 {{- with .Values.loki.podLabels }}
60 {{- toYaml . | nindent 8 }}
61 {{- end }}
62 {{- with .Values.backend.podLabels }}
63 {{- toYaml . | nindent 8 }}
64 {{- end }}
65 {{- with .Values.backend.selectorLabels }}
66 {{- tpl (toYaml .) $ | nindent 8 }}
67 {{- end }}
68 app.kubernetes.io/part-of: memberlist
69 spec:
70 serviceAccountName: {{ include "loki.serviceAccountName" . }}
71 automountServiceAccountToken: {{ .Values.serviceAccount.automountServiceAccountToken }}
72 {{- with .Values.imagePullSecrets }}
73 imagePullSecrets:
74 {{- toYaml . | nindent 8 }}
75 {{- end }}
76 {{- include "loki.backendPriorityClassName" . | nindent 6 }}
77 securityContext:
78 {{- toYaml .Values.loki.podSecurityContext | nindent 8 }}
79 terminationGracePeriodSeconds: {{ .Values.backend.terminationGracePeriodSeconds }}
80 {{- if .Values.backend.initContainers }}
81 initContainers:
82 {{- with .Values.backend.initContainers }}
83 {{- toYaml . | nindent 8 }}
84 {{- end }}
85 {{- end }}
86 containers:
Giovanni Tirloni59219b62024-04-09 14:50:25 -030087 {{- if .Values.sidecar.rules.enabled }}
88 - name: loki-sc-rules
89 {{- if .Values.sidecar.image.sha }}
90 image: "{{ .Values.sidecar.image.repository }}:{{ .Values.sidecar.image.tag }}@sha256:{{ .Values.sidecar.image.sha }}"
91 {{- else }}
92 image: "{{ .Values.sidecar.image.repository }}:{{ .Values.sidecar.image.tag }}"
93 {{- end }}
94 imagePullPolicy: {{ .Values.sidecar.image.pullPolicy }}
95 env:
96 - name: METHOD
97 value: {{ .Values.sidecar.rules.watchMethod }}
98 - name: LABEL
99 value: "{{ .Values.sidecar.rules.label }}"
100 {{- if .Values.sidecar.rules.labelValue }}
101 - name: LABEL_VALUE
102 value: {{ quote .Values.sidecar.rules.labelValue }}
103 {{- end }}
104 - name: FOLDER
105 value: "{{ .Values.sidecar.rules.folder }}"
106 - name: RESOURCE
107 value: {{ quote .Values.sidecar.rules.resource }}
108 {{- if .Values.sidecar.enableUniqueFilenames }}
109 - name: UNIQUE_FILENAMES
110 value: "{{ .Values.sidecar.enableUniqueFilenames }}"
111 {{- end }}
112 {{- if .Values.sidecar.rules.searchNamespace }}
113 - name: NAMESPACE
114 value: "{{ .Values.sidecar.rules.searchNamespace | join "," }}"
115 {{- end }}
116 {{- if .Values.sidecar.skipTlsVerify }}
117 - name: SKIP_TLS_VERIFY
118 value: "{{ .Values.sidecar.skipTlsVerify }}"
119 {{- end }}
120 {{- if .Values.sidecar.rules.script }}
121 - name: SCRIPT
122 value: "{{ .Values.sidecar.rules.script }}"
123 {{- end }}
124 {{- if .Values.sidecar.rules.watchServerTimeout }}
125 - name: WATCH_SERVER_TIMEOUT
126 value: "{{ .Values.sidecar.rules.watchServerTimeout }}"
127 {{- end }}
128 {{- if .Values.sidecar.rules.watchClientTimeout }}
129 - name: WATCH_CLIENT_TIMEOUT
130 value: "{{ .Values.sidecar.rules.watchClientTimeout }}"
131 {{- end }}
132 {{- if .Values.sidecar.rules.logLevel }}
133 - name: LOG_LEVEL
134 value: "{{ .Values.sidecar.rules.logLevel }}"
135 {{- end }}
136 {{- if .Values.sidecar.livenessProbe }}
137 livenessProbe:
138 {{- toYaml .Values.sidecar.livenessProbe | nindent 12 }}
139 {{- end }}
140 {{- if .Values.sidecar.readinessProbe }}
141 readinessProbe:
142 {{- toYaml .Values.sidecar.readinessProbe | nindent 12 }}
143 {{- end }}
144 {{- if .Values.sidecar.resources }}
145 resources:
146 {{- toYaml .Values.sidecar.resources | nindent 12 }}
147 {{- end }}
148 {{- if .Values.sidecar.securityContext }}
149 securityContext:
150 {{- toYaml .Values.sidecar.securityContext | nindent 12 }}
151 {{- end }}
152 volumeMounts:
153 - name: sc-rules-volume
154 mountPath: {{ .Values.sidecar.rules.folder | quote }}
155 {{- end}}
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +0000156 - name: loki
157 image: {{ include "loki.image" . }}
158 imagePullPolicy: {{ .Values.loki.image.pullPolicy }}
159 args:
160 - -config.file=/etc/loki/config/config.yaml
161 - -target={{ .Values.backend.targetModule }}
162 - -legacy-read-mode=false
163 {{- with .Values.backend.extraArgs }}
164 {{- toYaml . | nindent 12 }}
165 {{- end }}
166 ports:
167 - name: http-metrics
Giovanni Tirloni59219b62024-04-09 14:50:25 -0300168 containerPort: {{ .Values.loki.server.http_listen_port }}
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +0000169 protocol: TCP
170 - name: grpc
Giovanni Tirloni59219b62024-04-09 14:50:25 -0300171 containerPort: {{ .Values.loki.server.grpc_listen_port }}
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +0000172 protocol: TCP
173 - name: http-memberlist
174 containerPort: 7946
175 protocol: TCP
176 {{- with .Values.backend.extraEnv }}
177 env:
178 {{- toYaml . | nindent 12 }}
179 {{- end }}
180 {{- with .Values.backend.extraEnvFrom }}
181 envFrom:
182 {{- toYaml . | nindent 12 }}
183 {{- end }}
184 securityContext:
185 {{- toYaml .Values.loki.containerSecurityContext | nindent 12 }}
186 readinessProbe:
187 {{- toYaml .Values.loki.readinessProbe | nindent 12 }}
188 volumeMounts:
189 - name: config
190 mountPath: /etc/loki/config
191 - name: runtime-config
192 mountPath: /etc/loki/runtime-config
193 - name: tmp
194 mountPath: /tmp
195 - name: data
196 mountPath: /var/loki
197 {{- if .Values.enterprise.enabled }}
198 - name: license
199 mountPath: /etc/loki/license
200 {{- end}}
Giovanni Tirloni59219b62024-04-09 14:50:25 -0300201 {{- if .Values.sidecar.rules.enabled }}
202 - name: sc-rules-volume
203 mountPath: {{ .Values.sidecar.rules.folder | quote }}
204 {{- end}}
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +0000205 {{- with .Values.backend.extraVolumeMounts }}
206 {{- toYaml . | nindent 12 }}
207 {{- end }}
208 resources:
209 {{- toYaml .Values.backend.resources | nindent 12 }}
210 {{- with .Values.backend.affinity }}
211 affinity:
Mohammed Naser65cda132024-05-02 14:34:08 -0400212 {{- toYaml . | nindent 8 }}
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +0000213 {{- end }}
Giovanni Tirloni59219b62024-04-09 14:50:25 -0300214 {{- with .Values.backend.dnsConfig }}
215 dnsConfig:
216 {{- tpl . $ | nindent 8 }}
217 {{- end }}
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +0000218 {{- with .Values.backend.nodeSelector }}
219 nodeSelector:
220 {{- toYaml . | nindent 8 }}
221 {{- end }}
Giovanni Tirloni59219b62024-04-09 14:50:25 -0300222 {{- with .Values.backend.topologySpreadConstraints }}
223 topologySpreadConstraints:
224 {{- toYaml . | nindent 8 }}
225 {{- end }}
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +0000226 {{- with .Values.backend.tolerations }}
227 tolerations:
228 {{- toYaml . | nindent 8 }}
229 {{- end }}
230 volumes:
231 - name: tmp
232 emptyDir: {}
Giovanni Tirloni59219b62024-04-09 14:50:25 -0300233 {{- if not .Values.backend.persistence.volumeClaimsEnabled }}
234 - name: data
235 {{- toYaml .Values.backend.persistence.dataVolumeParameters | nindent 10 }}
236 {{- end}}
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +0000237 - name: config
Giovanni Tirloni59219b62024-04-09 14:50:25 -0300238 {{- include "loki.configVolume" . | nindent 10 }}
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +0000239 - name: runtime-config
240 configMap:
241 name: {{ template "loki.name" . }}-runtime
242 {{- if .Values.enterprise.enabled }}
243 - name: license
244 secret:
245 {{- if .Values.enterprise.useExternalLicense }}
246 secretName: {{ .Values.enterprise.externalLicenseName }}
247 {{- else }}
248 secretName: enterprise-logs-license
249 {{- end }}
250 {{- end }}
Giovanni Tirloni59219b62024-04-09 14:50:25 -0300251 {{- if .Values.sidecar.rules.enabled }}
252 - name: sc-rules-volume
253 {{- if .Values.sidecar.rules.sizeLimit }}
254 emptyDir:
255 sizeLimit: {{ .Values.sidecar.rules.sizeLimit }}
256 {{- else }}
257 emptyDir: {}
258 {{- end -}}
259 {{- end -}}
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +0000260 {{- with .Values.backend.extraVolumes }}
261 {{- toYaml . | nindent 8 }}
262 {{- end }}
Giovanni Tirloni59219b62024-04-09 14:50:25 -0300263 {{- if .Values.backend.persistence.volumeClaimsEnabled }}
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +0000264 volumeClaimTemplates:
Giovanni Tirloni59219b62024-04-09 14:50:25 -0300265 - apiVersion: v1
266 kind: PersistentVolumeClaim
267 metadata:
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +0000268 name: data
Mohammed Naser7d1623e2024-06-17 09:12:39 -0400269 {{- with .Values.backend.persistence.annotations }}
270 annotations:
271 {{- toYaml . | nindent 10 }}
272 {{- end }}
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +0000273 spec:
274 accessModes:
275 - ReadWriteOnce
276 {{- with .Values.backend.persistence.storageClass }}
277 storageClassName: {{ if (eq "-" .) }}""{{ else }}{{ . }}{{ end }}
278 {{- end }}
279 resources:
280 requests:
281 storage: {{ .Values.backend.persistence.size | quote }}
282 {{- with .Values.backend.persistence.selector }}
283 selector:
284 {{- toYaml . | nindent 10 }}
285 {{- end }}
Giovanni Tirloni59219b62024-04-09 14:50:25 -0300286 {{- end }}
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +0000287{{- end }}