blob: 2f837ade33d7e9b16bdd0d9c168942670068a03d [file] [log] [blame]
Mohammed Naser8a2c8fb2023-02-19 17:23:55 +00001{{/*
2Enforce valid label value.
3See https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#syntax-and-character-set
4*/}}
5{{- define "loki.validLabelValue" -}}
6{{- (regexReplaceAllLiteral "[^a-zA-Z0-9._-]" . "-") | trunc 63 | trimSuffix "-" | trimSuffix "_" | trimSuffix "." }}
7{{- end }}
8
9{{/*
10Expand the name of the chart.
11*/}}
12{{- define "loki.name" -}}
13{{- $default := ternary "enterprise-logs" "loki" .Values.enterprise.enabled }}
14{{- coalesce .Values.nameOverride $default | trunc 63 | trimSuffix "-" }}
15{{- end }}
16
17{{/*
18singleBinary fullname
19*/}}
20{{- define "loki.singleBinaryFullname" -}}
21{{- if .Values.fullnameOverride -}}
22{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
23{{- else -}}
24{{- $name := default .Chart.Name .Values.nameOverride -}}
25{{- if contains $name .Release.Name -}}
26{{- .Release.Name | trunc 63 | trimSuffix "-" -}}
27{{- else -}}
28{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
29{{- end -}}
30{{- end -}}
31{{- end -}}
32
33{{/*
34Resource name template
35Params:
36 ctx = . context
37 component = component name (optional)
38 rolloutZoneName = rollout zone name (optional)
39*/}}
40{{- define "loki.resourceName" -}}
41{{- $resourceName := include "loki.fullname" .ctx -}}
42{{- if .component -}}{{- $resourceName = printf "%s-%s" $resourceName .component -}}{{- end -}}
43{{- if and (not .component) .rolloutZoneName -}}{{- printf "Component name cannot be empty if rolloutZoneName (%s) is set" .rolloutZoneName | fail -}}{{- end -}}
44{{- if .rolloutZoneName -}}{{- $resourceName = printf "%s-%s" $resourceName .rolloutZoneName -}}{{- end -}}
45{{- if gt (len $resourceName) 253 -}}{{- printf "Resource name (%s) exceeds kubernetes limit of 253 character. To fix: shorten release name if this will be a fresh install or shorten zone names (e.g. \"a\" instead of \"zone-a\") if using zone-awareness." $resourceName | fail -}}{{- end -}}
46{{- $resourceName -}}
47{{- end -}}
48
49{{/*
50Return if deployment mode is simple scalable
51*/}}
52{{- define "loki.deployment.isScalable" -}}
53 {{- and (eq (include "loki.isUsingObjectStorage" . ) "true") (eq (int .Values.singleBinary.replicas) 0) }}
54{{- end -}}
55
56{{/*
57Return if deployment mode is single binary
58*/}}
59{{- define "loki.deployment.isSingleBinary" -}}
60 {{- $nonZeroReplicas := gt (int .Values.singleBinary.replicas) 0 }}
61 {{- or (eq (include "loki.isUsingObjectStorage" . ) "false") ($nonZeroReplicas) }}
62{{- end -}}
63
64{{/*
65Create a default fully qualified app name.
66We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
67If release name contains chart name it will be used as a full name.
68*/}}
69{{- define "loki.fullname" -}}
70{{- if .Values.fullnameOverride }}
71{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
72{{- else }}
73{{- $name := include "loki.name" . }}
74{{- if contains $name .Release.Name }}
75{{- .Release.Name | trunc 63 | trimSuffix "-" }}
76{{- else }}
77{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }}
78{{- end }}
79{{- end }}
80{{- end }}
81
82{{/* Create a default storage config that uses filesystem storage
83This is required for CI, but Loki will not be queryable with this default
84applied, thus it is encouraged that users override this.
85*/}}
86{{- define "loki.storageConfig" -}}
87{{- if .Values.loki.storageConfig -}}
88{{- .Values.loki.storageConfig | toYaml | nindent 4 -}}
89{{- else }}
90{{- .Values.loki.defaultStorageConfig | toYaml | nindent 4 }}
91{{- end}}
92{{- end}}
93
94{{/*
95Create chart name and version as used by the chart label.
96*/}}
97{{- define "loki.chart" -}}
98{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
99{{- end }}
100
101{{/*
102Common labels
103*/}}
104{{- define "loki.labels" -}}
105helm.sh/chart: {{ include "loki.chart" . }}
106{{ include "loki.selectorLabels" . }}
107{{- if or (.Chart.AppVersion) (.Values.loki.image.tag) }}
108app.kubernetes.io/version: {{ include "loki.validLabelValue" (.Values.loki.image.tag | default .Chart.AppVersion) | quote }}
109{{- end }}
110app.kubernetes.io/managed-by: {{ .Release.Service }}
111{{- end }}
112
113{{/*
114Selector labels
115*/}}
116{{- define "loki.selectorLabels" -}}
117app.kubernetes.io/name: {{ include "loki.name" . }}
118app.kubernetes.io/instance: {{ .Release.Name }}
119{{- end }}
120
121{{/*
122Create the name of the service account to use
123*/}}
124{{- define "loki.serviceAccountName" -}}
125{{- if .Values.serviceAccount.create -}}
126 {{ default (include "loki.name" .) .Values.serviceAccount.name }}
127{{- else -}}
128 {{ default "default" .Values.serviceAccount.name }}
129{{- end -}}
130{{- end -}}
131
132{{/*
133Base template for building docker image reference
134*/}}
135{{- define "loki.baseImage" }}
136{{- $registry := .global.registry | default .service.registry | default "" -}}
137{{- $repository := .service.repository | default "" -}}
138{{- $tag := .service.tag | default .defaultVersion | toString -}}
139{{- if and $registry $repository -}}
140 {{- printf "%s/%s:%s" $registry $repository $tag -}}
141{{- else -}}
142 {{- printf "%s%s:%s" $registry $repository $tag -}}
143{{- end -}}
144{{- end -}}
145
146{{/*
147Docker image name for Loki
148*/}}
149{{- define "loki.lokiImage" -}}
150{{- $dict := dict "service" .Values.loki.image "global" .Values.global.image "defaultVersion" .Chart.AppVersion -}}
151{{- include "loki.baseImage" $dict -}}
152{{- end -}}
153
154{{/*
155Docker image name for enterprise logs
156*/}}
157{{- define "loki.enterpriseImage" -}}
158{{- $dict := dict "service" .Values.enterprise.image "global" .Values.global.image "defaultVersion" .Values.enterprise.version -}}
159{{- include "loki.baseImage" $dict -}}
160{{- end -}}
161
162{{/*
163Docker image name
164*/}}
165{{- define "loki.image" -}}
166{{- if .Values.enterprise.enabled -}}{{- include "loki.enterpriseImage" . -}}{{- else -}}{{- include "loki.lokiImage" . -}}{{- end -}}
167{{- end -}}
168
169{{/*
170Docker image name for kubectl container
171*/}}
172{{- define "loki.kubectlImage" -}}
173{{- $dict := dict "service" .Values.kubectlImage "global" .Values.global.image "defaultVersion" "latest" -}}
174{{- include "loki.baseImage" $dict -}}
175{{- end -}}
176
177{{/*
178Generated storage config for loki common config
179*/}}
180{{- define "loki.commonStorageConfig" -}}
181{{- if .Values.minio.enabled -}}
182s3:
183 endpoint: {{ include "loki.minio" $ }}
184 bucketnames: {{ $.Values.loki.storage.bucketNames.chunks }}
185 secret_access_key: {{ $.Values.minio.rootPassword }}
186 access_key_id: {{ $.Values.minio.rootUser }}
187 s3forcepathstyle: true
188 insecure: true
189{{- else if eq .Values.loki.storage.type "s3" -}}
190{{- with .Values.loki.storage.s3 }}
191s3:
192 {{- with .s3 }}
193 s3: {{ . }}
194 {{- end }}
195 {{- with .endpoint }}
196 endpoint: {{ . }}
197 {{- end }}
198 {{- with .region }}
199 region: {{ . }}
200 {{- end}}
201 bucketnames: {{ $.Values.loki.storage.bucketNames.chunks }}
202 {{- with .secretAccessKey }}
203 secret_access_key: {{ . }}
204 {{- end }}
205 {{- with .accessKeyId }}
206 access_key_id: {{ . }}
207 {{- end }}
208 s3forcepathstyle: {{ .s3ForcePathStyle }}
209 insecure: {{ .insecure }}
210 {{- with .http_config}}
211 http_config:
212 {{- with .idle_conn_timeout }}
213 idle_conn_timeout: {{ . }}
214 {{- end}}
215 {{- with .response_header_timeout }}
216 response_header_timeout: {{ . }}
217 {{- end}}
218 {{- with .insecure_skip_verify }}
219 insecure_skip_verify: {{ . }}
220 {{- end}}
221 {{- with .ca_file}}
222 ca_file: {{ . }}
223 {{- end}}
224 {{- end }}
225{{- end -}}
226{{- else if eq .Values.loki.storage.type "gcs" -}}
227{{- with .Values.loki.storage.gcs }}
228gcs:
229 bucket_name: {{ $.Values.loki.storage.bucketNames.chunks }}
230 chunk_buffer_size: {{ .chunkBufferSize }}
231 request_timeout: {{ .requestTimeout }}
232 enable_http2: {{ .enableHttp2 }}
233{{- end -}}
234{{- else if eq .Values.loki.storage.type "azure" -}}
235{{- with .Values.loki.storage.azure }}
236azure:
237 account_name: {{ .accountName }}
238 {{- with .accountKey }}
239 account_key: {{ . }}
240 {{- end }}
241 container_name: {{ $.Values.loki.storage.bucketNames.chunks }}
242 use_managed_identity: {{ .useManagedIdentity }}
243 {{- with .userAssignedId }}
244 user_assigned_id: {{ . }}
245 {{- end }}
246 {{- with .requestTimeout }}
247 request_timeout: {{ . }}
248 {{- end }}
249{{- end -}}
250{{- else -}}
251{{- with .Values.loki.storage.filesystem }}
252filesystem:
253 chunks_directory: {{ .chunks_directory }}
254 rules_directory: {{ .rules_directory }}
255{{- end -}}
256{{- end -}}
257{{- end -}}
258
259{{/*
260Storage config for ruler
261*/}}
262{{- define "loki.rulerStorageConfig" -}}
263{{- if .Values.minio.enabled -}}
264type: "s3"
265s3:
266 bucketnames: {{ $.Values.loki.storage.bucketNames.ruler }}
267{{- else if eq .Values.loki.storage.type "s3" -}}
268{{- with .Values.loki.storage.s3 }}
269type: "s3"
270s3:
271 {{- with .s3 }}
272 s3: {{ . }}
273 {{- end }}
274 {{- with .endpoint }}
275 endpoint: {{ . }}
276 {{- end }}
277 {{- with .region }}
278 region: {{ . }}
279 {{- end}}
280 bucketnames: {{ $.Values.loki.storage.bucketNames.ruler }}
281 {{- with .secretAccessKey }}
282 secret_access_key: {{ . }}
283 {{- end }}
284 {{- with .accessKeyId }}
285 access_key_id: {{ . }}
286 {{- end }}
287 s3forcepathstyle: {{ .s3ForcePathStyle }}
288 insecure: {{ .insecure }}
289{{- end -}}
290{{- else if eq .Values.loki.storage.type "gcs" -}}
291{{- with .Values.loki.storage.gcs }}
292type: "gcs"
293gcs:
294 bucket_name: {{ $.Values.loki.storage.bucketNames.ruler }}
295 chunk_buffer_size: {{ .chunkBufferSize }}
296 request_timeout: {{ .requestTimeout }}
297 enable_http2: {{ .enableHttp2 }}
298{{- end -}}
299{{- else if eq .Values.loki.storage.type "azure" -}}
300{{- with .Values.loki.storage.azure }}
301type: "azure"
302azure:
303 account_name: {{ .accountName }}
304 {{- with .accountKey }}
305 account_key: {{ . }}
306 {{- end }}
307 container_name: {{ $.Values.loki.storage.bucketNames.ruler }}
308 use_managed_identity: {{ .useManagedIdentity }}
309 {{- with .userAssignedId }}
310 user_assigned_id: {{ . }}
311 {{- end }}
312 {{- with .requestTimeout }}
313 request_timeout: {{ . }}
314 {{- end }}
315{{- end -}}
316{{- else }}
317type: "local"
318{{- end -}}
319{{- end -}}
320
321{{/* Loki ruler config */}}
322{{- define "loki.rulerConfig" }}
323ruler:
324 storage:
325 {{- include "loki.rulerStorageConfig" . | nindent 4}}
326{{- if (not (empty .Values.loki.rulerConfig)) }}
327{{- toYaml .Values.loki.rulerConfig | nindent 2}}
328{{- end }}
329{{- end }}
330
331{{/*
332Memcached Docker image
333*/}}
334{{- define "loki.memcachedImage" -}}
335{{- $dict := dict "service" .Values.memcached.image "global" .Values.global.image -}}
336{{- include "loki.image" $dict -}}
337{{- end }}
338
339{{/*
340Memcached Exporter Docker image
341*/}}
342{{- define "loki.memcachedExporterImage" -}}
343{{- $dict := dict "service" .Values.memcachedExporter.image "global" .Values.global.image -}}
344{{- include "loki.image" $dict -}}
345{{- end }}
346
347{{/*
348Return the appropriate apiVersion for ingress.
349*/}}
350{{- define "loki.ingress.apiVersion" -}}
351 {{- if and (.Capabilities.APIVersions.Has "networking.k8s.io/v1") (semverCompare ">= 1.19-0" .Capabilities.KubeVersion.Version) -}}
352 {{- print "networking.k8s.io/v1" -}}
353 {{- else if .Capabilities.APIVersions.Has "networking.k8s.io/v1beta1" -}}
354 {{- print "networking.k8s.io/v1beta1" -}}
355 {{- else -}}
356 {{- print "extensions/v1beta1" -}}
357 {{- end -}}
358{{- end -}}
359
360{{/*
361Return if ingress is stable.
362*/}}
363{{- define "loki.ingress.isStable" -}}
364 {{- eq (include "loki.ingress.apiVersion" .) "networking.k8s.io/v1" -}}
365{{- end -}}
366
367{{/*
368Return if ingress supports ingressClassName.
369*/}}
370{{- define "loki.ingress.supportsIngressClassName" -}}
371 {{- or (eq (include "loki.ingress.isStable" .) "true") (and (eq (include "loki.ingress.apiVersion" .) "networking.k8s.io/v1beta1") (semverCompare ">= 1.18-0" .Capabilities.KubeVersion.Version)) -}}
372{{- end -}}
373
374{{/*
375Return if ingress supports pathType.
376*/}}
377{{- define "loki.ingress.supportsPathType" -}}
378 {{- or (eq (include "loki.ingress.isStable" .) "true") (and (eq (include "loki.ingress.apiVersion" .) "networking.k8s.io/v1beta1") (semverCompare ">= 1.18-0" .Capabilities.KubeVersion.Version)) -}}
379{{- end -}}
380
381{{/*
382Generate list of ingress service paths based on deployment type
383*/}}
384{{- define "loki.ingress.servicePaths" -}}
385{{- if (eq (include "loki.deployment.isScalable" .) "true") -}}
386{{- include "loki.ingress.scalableServicePaths" . }}
387{{- else -}}
388{{- include "loki.ingress.singleBinaryServicePaths" . }}
389{{- end -}}
390{{- end -}}
391
392{{/*
393Ingress service paths for scalable deployment
394*/}}
395{{- define "loki.ingress.scalableServicePaths" -}}
396{{- include "loki.ingress.servicePath" (dict "ctx" . "svcName" "read" "paths" .Values.ingress.paths.read )}}
397{{- include "loki.ingress.servicePath" (dict "ctx" . "svcName" "write" "paths" .Values.ingress.paths.write )}}
398{{- end -}}
399
400{{/*
401Ingress service paths for single binary deployment
402*/}}
403{{- define "loki.ingress.singleBinaryServicePaths" -}}
404{{- include "loki.ingress.servicePath" (dict "ctx" . "svcName" "singleBinary" "paths" .Values.ingress.paths.singleBinary )}}
405{{- end -}}
406
407{{/*
408Ingress service path helper function
409Params:
410 ctx = . context
411 svcName = service name without the "loki.fullname" part (ie. read, write)
412 paths = list of url paths to allow ingress for
413*/}}
414{{- define "loki.ingress.servicePath" -}}
415{{- $ingressApiIsStable := eq (include "loki.ingress.isStable" .ctx) "true" -}}
416{{- $ingressSupportsPathType := eq (include "loki.ingress.supportsPathType" .ctx) "true" -}}
417{{- range .paths }}
418- path: {{ . }}
419 {{- if $ingressSupportsPathType }}
420 pathType: Prefix
421 {{- end }}
422 backend:
423 {{- if $ingressApiIsStable }}
424 {{- $serviceName := include "loki.ingress.serviceName" (dict "ctx" $.ctx "svcName" $.svcName) }}
425 service:
426 name: {{ $serviceName }}
427 port:
428 number: 3100
429 {{- else }}
430 serviceName: {{ $serviceName }}
431 servicePort: 3100
432{{- end -}}
433{{- end -}}
434{{- end -}}
435
436{{/*
437Ingress service name helper function
438Params:
439 ctx = . context
440 svcName = service name without the "loki.fullname" part (ie. read, write)
441*/}}
442{{- define "loki.ingress.serviceName" -}}
443{{- if (eq .svcName "singleBinary") }}
444{{- printf "%s" (include "loki.fullname" .ctx) }}
445{{- else }}
446{{- printf "%s-%s" (include "loki.fullname" .ctx) .svcName }}
447{{- end -}}
448{{- end -}}
449
450{{/*
451Create the service endpoint including port for MinIO.
452*/}}
453{{- define "loki.minio" -}}
454{{- if .Values.minio.enabled -}}
455{{- printf "%s-%s.%s.svc:%s" .Release.Name "minio" .Release.Namespace (.Values.minio.service.port | toString) -}}
456{{- end -}}
457{{- end -}}
458
459{{/* Return the appropriate apiVersion for PodDisruptionBudget. */}}
460{{- define "loki.podDisruptionBudget.apiVersion" -}}
461 {{- if and (.Capabilities.APIVersions.Has "policy/v1") (semverCompare ">= 1.21-0" .Capabilities.KubeVersion.Version) -}}
462 {{- print "policy/v1" -}}
463 {{- else -}}
464 {{- print "policy/v1beta1" -}}
465 {{- end -}}
466{{- end -}}
467
468{{/* Determine if deployment is using object storage */}}
469{{- define "loki.isUsingObjectStorage" -}}
470{{- or (eq .Values.loki.storage.type "gcs") (eq .Values.loki.storage.type "s3") (eq .Values.loki.storage.type "azure") -}}
471{{- end -}}
472
473{{/* Configure the correct name for the memberlist service */}}
474{{- define "loki.memberlist" -}}
475{{ include "loki.name" . }}-memberlist
476{{- end -}}
477
478{{/* Determine the public host for the Loki cluster */}}
479{{- define "loki.host" -}}
480{{- $isSingleBinary := eq (include "loki.deployment.isSingleBinary" .) "true" -}}
481{{- $url := printf "%s.%s.svc.%s." (include "loki.gatewayFullname" .) .Release.Namespace .Values.global.clusterDomain }}
482{{- if and $isSingleBinary (not .Values.gateway.enabled) }}
483 {{- $url = printf "%s.%s.svc.%s.:3100" (include "loki.singleBinaryFullname" .) .Release.Namespace .Values.global.clusterDomain }}
484{{- end }}
485{{- printf "%s" $url -}}
486{{- end -}}
487
488{{/* Determine the public endpoint for the Loki cluster */}}
489{{- define "loki.address" -}}
490{{- printf "http://%s" (include "loki.host" . ) -}}
491{{- end -}}
492
493{{/* Name of the cluster */}}
494{{- define "loki.clusterName" -}}
495{{- $name := .Values.enterprise.cluster_name | default .Release.Name }}
496{{- printf "%s" $name -}}
497{{- end -}}
498
499{{/* Name of kubernetes secret to persist GEL admin token to */}}
500{{- define "enterprise-logs.adminTokenSecret" }}
501{{- .Values.enterprise.adminToken.secret | default (printf "%s-admin-token" (include "loki.name" . )) -}}
502{{- end -}}
503
504{{/* Prefix for provisioned secrets created for each provisioned tenant */}}
505{{- define "enterprise-logs.provisionedSecretPrefix" }}
506{{- .Values.enterprise.provisioner.provisionedSecretPrefix | default (printf "%s-provisioned" (include "loki.name" . )) -}}
507{{- end -}}
508
509{{/* Name of kubernetes secret to persist canary credentials in */}}
510{{- define "enterprise-logs.selfMonitoringTenantSecret" }}
511{{- .Values.enterprise.canarySecret | default (printf "%s-%s" (include "enterprise-logs.provisionedSecretPrefix" . ) .Values.monitoring.selfMonitoring.tenant.name) -}}
512{{- end -}}
513
514{{/* Snippet for the nginx file used by gateway */}}
515{{- define "loki.nginxFile" }}
516worker_processes 5; ## Default: 1
517error_log /dev/stderr;
518pid /tmp/nginx.pid;
519worker_rlimit_nofile 8192;
520
521events {
522 worker_connections 4096; ## Default: 1024
523}
524
525http {
526 client_body_temp_path /tmp/client_temp;
527 proxy_temp_path /tmp/proxy_temp_path;
528 fastcgi_temp_path /tmp/fastcgi_temp;
529 uwsgi_temp_path /tmp/uwsgi_temp;
530 scgi_temp_path /tmp/scgi_temp;
531
532 client_max_body_size 4M;
533
534 proxy_read_timeout 600; ## 6 minutes
535 proxy_send_timeout 600;
536 proxy_connect_timeout 600;
537
538 proxy_http_version 1.1;
539
540 default_type application/octet-stream;
541 log_format {{ .Values.gateway.nginxConfig.logFormat }}
542
543 {{- if .Values.gateway.verboseLogging }}
544 access_log /dev/stderr main;
545 {{- else }}
546
547 map $status $loggable {
548 ~^[23] 0;
549 default 1;
550 }
551 access_log /dev/stderr main if=$loggable;
552 {{- end }}
553
554 sendfile on;
555 tcp_nopush on;
556 resolver {{ .Values.global.dnsService }}.{{ .Values.global.dnsNamespace }}.svc.{{ .Values.global.clusterDomain }}.;
557
558 {{- with .Values.gateway.nginxConfig.httpSnippet }}
559 {{ . | nindent 2 }}
560 {{- end }}
561
562 server {
563 listen 8080;
564
565 {{- if .Values.gateway.basicAuth.enabled }}
566 auth_basic "Loki";
567 auth_basic_user_file /etc/nginx/secrets/.htpasswd;
568 {{- end }}
569
570 location = / {
571 return 200 'OK';
572 auth_basic off;
573 }
574
575 {{- $backendHost := include "loki.backendFullname" .}}
576 {{- $readHost := include "loki.readFullname" .}}
577 {{- $writeHost := include "loki.writeFullname" .}}
578
579 {{- if .Values.read.legacyReadTarget }}
580 {{- $backendHost = include "loki.readFullname" . }}
581 {{- end }}
582
583 {{- if gt (int .Values.singleBinary.replicas) 0 }}
584 {{- $backendHost = include "loki.singleBinaryFullname" . }}
585 {{- $readHost = include "loki.singleBinaryFullname" .}}
586 {{- $writeHost = include "loki.singleBinaryFullname" .}}
587 {{- end }}
588
589 {{- $writeUrl := printf "http://%s.%s.svc.%s:3100" $writeHost .Release.Namespace .Values.global.clusterDomain }}
590 {{- $readUrl := printf "http://%s.%s.svc.%s:3100" $readHost .Release.Namespace .Values.global.clusterDomain }}
591 {{- $backendUrl := printf "http://%s.%s.svc.%s:3100" $backendHost .Release.Namespace .Values.global.clusterDomain }}
592
593 {{- if .Values.gateway.nginxConfig.customWriteUrl }}
594 {{- $writeUrl = .Values.gateway.nginxConfig.customWriteUrl }}
595 {{- end }}
596 {{- if .Values.gateway.nginxConfig.customReadUrl }}
597 {{- $readUrl = .Values.gateway.nginxConfig.customReadUrl }}
598 {{- end }}
599 {{- if .Values.gateway.nginxConfig.customBackendUrl }}
600 {{- $backendUrl = .Values.gateway.nginxConfig.customBackendUrl }}
601 {{- end }}
602
603 location = /api/prom/push {
604 proxy_pass {{ $writeUrl }}$request_uri;
605 }
606
607 location = /api/prom/tail {
608 proxy_pass {{ $readUrl }}$request_uri;
609 proxy_set_header Upgrade $http_upgrade;
610 proxy_set_header Connection "upgrade";
611 }
612
613 location ~ /api/prom/.* {
614 proxy_pass {{ $readUrl }}$request_uri;
615 }
616
617 location ~ /prometheus/api/v1/alerts.* {
618 proxy_pass {{ $backendUrl }}$request_uri;
619 }
620 location ~ /prometheus/api/v1/rules.* {
621 proxy_pass {{ $backendUrl }}$request_uri;
622 }
623 location ~ /ruler/.* {
624 proxy_pass {{ $backendUrl }}$request_uri;
625 }
626
627 location = /loki/api/v1/push {
628 proxy_pass {{ $writeUrl }}$request_uri;
629 }
630
631 location = /loki/api/v1/tail {
632 proxy_pass {{ $readUrl }}$request_uri;
633 proxy_set_header Upgrade $http_upgrade;
634 proxy_set_header Connection "upgrade";
635 }
636
637 location ~ /compactor/.* {
638 proxy_pass {{ $backendUrl }}$request_uri;
639 }
640
641 location ~ /distributor/.* {
642 proxy_pass {{ $writeUrl }}$request_uri;
643 }
644
645 location ~ /ring {
646 proxy_pass {{ $writeUrl }}$request_uri;
647 }
648
649 location ~ /ingester/.* {
650 proxy_pass {{ $writeUrl }}$request_uri;
651 }
652
653 location ~ /store-gateway/.* {
654 proxy_pass {{ $backendUrl }}$request_uri;
655 }
656
657 location ~ /query-scheduler/.* {
658 proxy_pass {{ $backendUrl }}$request_uri;
659 }
660 location ~ /scheduler/.* {
661 proxy_pass {{ $backendUrl }}$request_uri;
662 }
663
664 location ~ /loki/api/.* {
665 proxy_pass {{ $readUrl }}$request_uri;
666 }
667
668 location ~ /admin/api/.* {
669 proxy_pass {{ $writeUrl }}$request_uri;
670 }
671
672 {{- with .Values.gateway.nginxConfig.serverSnippet }}
673 {{ . | nindent 4 }}
674 {{- end }}
675 }
676}
677{{- end }}
678
679{{/* Configure enableServiceLinks in pod */}}
680{{- define "loki.enableServiceLinks" -}}
681{{- if semverCompare ">=1.13-0" .Capabilities.KubeVersion.Version -}}
682{{- if or (.Values.loki.enableServiceLinks) (ne .Values.loki.enableServiceLinks false) -}}
683enableServiceLinks: true
684{{- else -}}
685enableServiceLinks: false
686{{- end -}}
687{{- end -}}
688{{- end -}}
689
690{{/* Determine compactor address based on target configuration */}}
691{{- define "loki.compactorAddress" -}}
692{{- $isSimpleScalable := eq (include "loki.deployment.isScalable" .) "true" -}}
693{{- $compactorAddress := include "loki.backendFullname" . -}}
694{{- if and $isSimpleScalable .Values.read.legacyReadTarget -}}
695{{/* 2 target configuration */}}
696{{- $compactorAddress = include "loki.readFullname" . -}}
697{{- else if (not $isSimpleScalable) -}}
698{{/* single binary */}}
699{{- $compactorAddress = include "loki.singleBinaryFullname" . -}}
700{{- end -}}
701{{- printf "%s" $compactorAddress }}
702{{- end }}
703