Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[loki-distributed] Update service templates as per Grafana documentation #2885

Draft
wants to merge 29 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
26b7613
Fixed deploying latest loki-distributed chart with istio service mesh…
Sheikh-Abubaker Jan 7, 2024
4bbe250
Merge branch 'main' into istio-pr
zanhsieh Jan 10, 2024
17f38d1
Merge branch 'main' of https://github.com/Sheikh-Abubaker/helm-charts…
Sheikh-Abubaker Jan 10, 2024
6ec932a
Merge branch 'grafana:main' into istio-pr
Sheikh-Abubaker Jan 10, 2024
7f8b7f5
Merge branch 'istio-pr' of https://github.com/Sheikh-Abubaker/helm-ch…
Sheikh-Abubaker Jan 10, 2024
04959ce
Merge branch 'main' of https://github.com/Sheikh-Abubaker/helm-charts…
Sheikh-Abubaker Jan 13, 2024
a3c3326
Bumped Version
Sheikh-Abubaker Jan 13, 2024
fc145d2
Merge branch 'main' of https://github.com/Sheikh-Abubaker/helm-charts…
Sheikh-Abubaker Jan 18, 2024
75da713
Merge branch 'main' into istio-pr
zanhsieh Jan 18, 2024
de03e85
Merge branch 'main' of https://github.com/Sheikh-Abubaker/helm-charts…
Sheikh-Abubaker Jan 19, 2024
b08890b
Merge branch 'grafana:main' into istio-pr
Sheikh-Abubaker Jan 19, 2024
5d5868c
Merge branch 'istio-pr' of https://github.com/Sheikh-Abubaker/helm-ch…
Sheikh-Abubaker Jan 19, 2024
a6e45d0
Merge branch 'main' of https://github.com/Sheikh-Abubaker/helm-charts…
Sheikh-Abubaker Jan 20, 2024
f72a24b
Merge branch 'main' of https://github.com/Sheikh-Abubaker/helm-charts…
Sheikh-Abubaker Jan 24, 2024
b635ac2
Bumped chart version
Sheikh-Abubaker Jan 24, 2024
01fe9b9
Merge branch 'main' of https://github.com/Sheikh-Abubaker/helm-charts…
Sheikh-Abubaker Feb 4, 2024
56c8e95
Merge branch 'main' of https://github.com/Sheikh-Abubaker/helm-charts…
Sheikh-Abubaker Feb 7, 2024
bff2234
Merge branch 'main' of https://github.com/Sheikh-Abubaker/helm-charts…
Sheikh-Abubaker Feb 17, 2024
79471a6
Merge branch 'main' of https://github.com/Sheikh-Abubaker/helm-charts…
Sheikh-Abubaker Feb 22, 2024
2d4c0a4
Resolved Conflicts
Sheikh-Abubaker Feb 27, 2024
52811d8
Merge branch 'main' of https://github.com/Sheikh-Abubaker/helm-charts…
Sheikh-Abubaker Mar 14, 2024
fc86ea7
Resolve Conflicts
Sheikh-Abubaker Apr 5, 2024
42a60ca
Resolve Conflicts
Sheikh-Abubaker Apr 19, 2024
934e16c
Merge branch 'main' of https://github.com/Sheikh-Abubaker/helm-charts…
Sheikh-Abubaker May 5, 2024
2f1b39c
Merge branch 'main' of https://github.com/Sheikh-Abubaker/helm-charts…
Sheikh-Abubaker Jun 3, 2024
b35c1fc
Merge branch 'main' of https://github.com/Sheikh-Abubaker/helm-charts…
Sheikh-Abubaker Jun 4, 2024
988491c
Merge branch 'main' into istio-pr
zanhsieh Jul 30, 2024
fab790f
Update README.md
zanhsieh Jul 30, 2024
e59c4c2
Update Chart.yaml
zanhsieh Jul 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/loki-distributed/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: loki-distributed
description: Helm chart for Grafana Loki in microservices mode
type: application
appVersion: 2.9.8
version: 0.79.1
version: 0.79.2
home: https://grafana.github.io/helm-charts
sources:
- https://github.com/grafana/loki
Expand Down
2 changes: 1 addition & 1 deletion charts/loki-distributed/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# loki-distributed

![Version: 0.79.1](https://img.shields.io/badge/Version-0.79.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.9.8](https://img.shields.io/badge/AppVersion-2.9.8-informational?style=flat-square)
![Version: 0.79.2](https://img.shields.io/badge/Version-0.79.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.9.8](https://img.shields.io/badge/AppVersion-2.9.8-informational?style=flat-square)

Helm chart for Grafana Loki in microservices mode

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ spec:
port: 9095
targetPort: grpc
protocol: TCP
{{- if .Values.distributor.appProtocol.grpc }}
appProtocol: {{ .Values.distributor.appProtocol.grpc }}
{{- end }}
appProtocol: tcp
selector:
{{- include "loki.distributorSelectorLabels" . | nindent 4 }}
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,10 @@ spec:
port: 3100
targetPort: http
protocol: TCP
- name: grpc
- appProtocol: tcp
name: grpc
port: 9095
targetPort: grpc
protocol: TCP
{{- if .Values.ingester.appProtocol.grpc }}
appProtocol: {{ .Values.ingester.appProtocol.grpc }}
{{- end }}
selector:
{{- include "loki.ingesterSelectorLabels" . | nindent 4 }}
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,10 @@ spec:
port: 3100
targetPort: http
protocol: TCP
- name: grpc
- appProtocol: tcp
name: grpc
port: 9095
targetPort: grpc
protocol: TCP
{{- if .Values.ingester.appProtocol.grpc }}
appProtocol: {{ .Values.ingester.appProtocol.grpc }}
{{- end }}
selector:
{{- include "loki.ingesterSelectorLabels" . | nindent 4 }}
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,10 @@ spec:
port: 3100
targetPort: http
protocol: TCP
- name: grpc
- appProtocol: tcp
name: grpc
port: 9095
targetPort: grpc
protocol: TCP
{{- if .Values.querier.appProtocol.grpc }}
appProtocol: {{ .Values.querier.appProtocol.grpc }}
{{- end }}
selector:
{{- include "loki.querierSelectorLabels" . | nindent 4 }}
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,15 @@ spec:
type: ClusterIP
publishNotReadyAddresses: true
ports:
- name: http
port: 3100
targetPort: http
protocol: TCP
- name: grpc
port: 9095
targetPort: grpc
protocol: TCP
{{- if .Values.queryFrontend.appProtocol.grpc }}
appProtocol: {{ .Values.queryFrontend.appProtocol.grpc }}
{{- end }}
- name: grpclb
port: 9096
targetPort: grpc
protocol: TCP
{{- if .Values.queryFrontend.appProtocol.grpc }}
appProtocol: {{ .Values.queryFrontend.appProtocol.grpc }}
{{- end }}
- appProtocol: http
name: http
port: 3100
protocol: TCP
targetPort: http
- appProtocol: tcp
name: grpclb
port: 9095
protocol: TCP
targetPort: grpc
selector:
{{- include "loki.queryFrontendSelectorLabels" . | nindent 4 }}
Loading