Mohammed Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 1 | {{- $isSimpleScalable := eq (include "loki.deployment.isScalable" .) "true" -}} |
| 2 | {{- if and $isSimpleScalable (not .Values.read.legacyReadTarget ) }} |
| 3 | --- |
| 4 | apiVersion: apps/v1 |
| 5 | kind: StatefulSet |
| 6 | metadata: |
| 7 | name: {{ include "loki.backendFullname" . }} |
Giovanni Tirloni | 59219b6 | 2024-04-09 14:50:25 -0300 | [diff] [blame] | 8 | namespace: {{ $.Release.Namespace }} |
Mohammed Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 9 | labels: |
| 10 | {{- include "loki.backendLabels" . | nindent 4 }} |
| 11 | app.kubernetes.io/part-of: memberlist |
Giovanni Tirloni | 59219b6 | 2024-04-09 14:50:25 -0300 | [diff] [blame] | 12 | {{- 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 Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 21 | spec: |
Mohammed Naser | 7d1623e | 2024-06-17 09:12:39 -0400 | [diff] [blame] | 22 | {{- if not .Values.backend.autoscaling.enabled }} |
Mohammed Naser | 65cda13 | 2024-05-02 14:34:08 -0400 | [diff] [blame] | 23 | {{- if eq .Values.deploymentMode "SingleBinary" }} |
| 24 | replicas: 0 |
| 25 | {{- else }} |
Mohammed Naser | 7d1623e | 2024-06-17 09:12:39 -0400 | [diff] [blame] | 26 | replicas: {{ .Values.backend.replicas }} |
Mohammed Naser | 65cda13 | 2024-05-02 14:34:08 -0400 | [diff] [blame] | 27 | {{- end }} |
Giovanni Tirloni | 59219b6 | 2024-04-09 14:50:25 -0300 | [diff] [blame] | 28 | {{- end }} |
| 29 | podManagementPolicy: {{ .Values.backend.podManagementPolicy }} |
Mohammed Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 30 | updateStrategy: |
| 31 | rollingUpdate: |
| 32 | partition: 0 |
| 33 | serviceName: {{ include "loki.backendFullname" . }}-headless |
| 34 | revisionHistoryLimit: {{ .Values.loki.revisionHistoryLimit }} |
Giovanni Tirloni | 59219b6 | 2024-04-09 14:50:25 -0300 | [diff] [blame] | 35 | {{- if and (semverCompare ">= 1.23-0" .Capabilities.KubeVersion.Version) (.Values.backend.persistence.enableStatefulSetAutoDeletePVC) (.Values.backend.persistence.volumeClaimsEnabled) }} |
Mohammed Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 36 | {{/* |
| 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 Tirloni | 59219b6 | 2024-04-09 14:50:25 -0300 | [diff] [blame] | 50 | checksum/config: {{ include (print .Template.BasePath "/config.yaml") . | sha256sum }} |
Mohammed Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 51 | {{- 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 Tirloni | 59219b6 | 2024-04-09 14:50:25 -0300 | [diff] [blame] | 87 | {{- 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 Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 156 | - 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 Tirloni | 59219b6 | 2024-04-09 14:50:25 -0300 | [diff] [blame] | 168 | containerPort: {{ .Values.loki.server.http_listen_port }} |
Mohammed Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 169 | protocol: TCP |
| 170 | - name: grpc |
Giovanni Tirloni | 59219b6 | 2024-04-09 14:50:25 -0300 | [diff] [blame] | 171 | containerPort: {{ .Values.loki.server.grpc_listen_port }} |
Mohammed Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 172 | 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 Tirloni | 59219b6 | 2024-04-09 14:50:25 -0300 | [diff] [blame] | 201 | {{- if .Values.sidecar.rules.enabled }} |
| 202 | - name: sc-rules-volume |
| 203 | mountPath: {{ .Values.sidecar.rules.folder | quote }} |
| 204 | {{- end}} |
Mohammed Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 205 | {{- 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 Naser | 65cda13 | 2024-05-02 14:34:08 -0400 | [diff] [blame] | 212 | {{- toYaml . | nindent 8 }} |
Mohammed Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 213 | {{- end }} |
Giovanni Tirloni | 59219b6 | 2024-04-09 14:50:25 -0300 | [diff] [blame] | 214 | {{- with .Values.backend.dnsConfig }} |
| 215 | dnsConfig: |
| 216 | {{- tpl . $ | nindent 8 }} |
| 217 | {{- end }} |
Mohammed Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 218 | {{- with .Values.backend.nodeSelector }} |
| 219 | nodeSelector: |
| 220 | {{- toYaml . | nindent 8 }} |
| 221 | {{- end }} |
Giovanni Tirloni | 59219b6 | 2024-04-09 14:50:25 -0300 | [diff] [blame] | 222 | {{- with .Values.backend.topologySpreadConstraints }} |
| 223 | topologySpreadConstraints: |
| 224 | {{- toYaml . | nindent 8 }} |
| 225 | {{- end }} |
Mohammed Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 226 | {{- with .Values.backend.tolerations }} |
| 227 | tolerations: |
| 228 | {{- toYaml . | nindent 8 }} |
| 229 | {{- end }} |
| 230 | volumes: |
| 231 | - name: tmp |
| 232 | emptyDir: {} |
Giovanni Tirloni | 59219b6 | 2024-04-09 14:50:25 -0300 | [diff] [blame] | 233 | {{- if not .Values.backend.persistence.volumeClaimsEnabled }} |
| 234 | - name: data |
| 235 | {{- toYaml .Values.backend.persistence.dataVolumeParameters | nindent 10 }} |
| 236 | {{- end}} |
Mohammed Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 237 | - name: config |
Giovanni Tirloni | 59219b6 | 2024-04-09 14:50:25 -0300 | [diff] [blame] | 238 | {{- include "loki.configVolume" . | nindent 10 }} |
Mohammed Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 239 | - 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 Tirloni | 59219b6 | 2024-04-09 14:50:25 -0300 | [diff] [blame] | 251 | {{- 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 Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 260 | {{- with .Values.backend.extraVolumes }} |
| 261 | {{- toYaml . | nindent 8 }} |
| 262 | {{- end }} |
Giovanni Tirloni | 59219b6 | 2024-04-09 14:50:25 -0300 | [diff] [blame] | 263 | {{- if .Values.backend.persistence.volumeClaimsEnabled }} |
Mohammed Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 264 | volumeClaimTemplates: |
Giovanni Tirloni | 59219b6 | 2024-04-09 14:50:25 -0300 | [diff] [blame] | 265 | - apiVersion: v1 |
| 266 | kind: PersistentVolumeClaim |
| 267 | metadata: |
Mohammed Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 268 | name: data |
Mohammed Naser | 7d1623e | 2024-06-17 09:12:39 -0400 | [diff] [blame] | 269 | {{- with .Values.backend.persistence.annotations }} |
| 270 | annotations: |
| 271 | {{- toYaml . | nindent 10 }} |
| 272 | {{- end }} |
Mohammed Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 273 | 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 Tirloni | 59219b6 | 2024-04-09 14:50:25 -0300 | [diff] [blame] | 286 | {{- end }} |
Mohammed Naser | 8a2c8fb | 2023-02-19 17:23:55 +0000 | [diff] [blame] | 287 | {{- end }} |