Skip to content

Commit 8cb2573

Browse files
authored
Merge branch 'main' into DOCS-grafana
Signed-off-by: MH <zanhsieh@gmail.com>
2 parents 478c732 + a57b3b7 commit 8cb2573

File tree

10 files changed

+17
-9
lines changed

10 files changed

+17
-9
lines changed

.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/charts/loki-distributed/ @grafana/loki-squad @unguiculus @Whyeasy
1111
/charts/loki-canary/ @grafana/loki-squad @unguiculus @Whyeasy
1212
/charts/promtail/ @grafana/loki-squad @unguiculus @Whyeasy
13-
/charts/tempo/ @grafana/tempo @dgzlopes @swartz-k @BitProcessor @faustodavid
13+
/charts/tempo/ @grafana/tempo @Sheikh-Abubaker @dgzlopes @swartz-k @BitProcessor @faustodavid
1414
/charts/tempo-distributed/ @grafana/tempo @Sheikh-Abubaker @mapno @swartz-k @BitProcessor @faustodavid
1515
/charts/enterprise-metrics/ @grafana/mimir-maintainers
1616
/charts/rollout-operator/ @grafana/mimir-maintainers

charts/grafana/templates/image-renderer-network-policy.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ spec:
6969
to:
7070
- namespaceSelector:
7171
matchLabels:
72-
name: {{ include "grafana.namespace" . }}
72+
kubernetes.io/metadata.name: {{ include "grafana.namespace" . }}
7373
podSelector:
7474
matchLabels:
7575
{{- include "grafana.selectorLabels" . | nindent 14 }}

charts/loki-distributed/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: loki-distributed
33
description: Helm chart for Grafana Loki in microservices mode
44
type: application
5-
appVersion: 2.9.6
6-
version: 0.79.0
5+
appVersion: 2.9.8
6+
version: 0.79.1
77
home: https://grafana.github.io/helm-charts
88
sources:
99
- https://github.com/grafana/loki

charts/loki-distributed/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# loki-distributed
22

3-
![Version: 0.79.0](https://img.shields.io/badge/Version-0.79.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.9.6](https://img.shields.io/badge/AppVersion-2.9.6-informational?style=flat-square)
3+
![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)
44

55
Helm chart for Grafana Loki in microservices mode
66

charts/tempo-distributed/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: tempo-distributed
33
description: Grafana Tempo in MicroService mode
44
type: application
5-
version: 1.14.0
5+
version: 1.15.0
66
appVersion: 2.5.0
77
engine: gotpl
88
home: https://grafana.com/docs/tempo/latest/

charts/tempo-distributed/README.md

100644100755
+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# tempo-distributed
22

3-
![Version: 1.14.0](https://img.shields.io/badge/Version-1.14.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.5.0](https://img.shields.io/badge/AppVersion-2.5.0-informational?style=flat-square)
3+
![Version: 1.15.0](https://img.shields.io/badge/Version-1.15.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.5.0](https://img.shields.io/badge/AppVersion-2.5.0-informational?style=flat-square)
44

55
Grafana Tempo in MicroService mode
66

@@ -325,6 +325,7 @@ The memcached default args are removed and should be provided manually. The sett
325325
| distributor.replicas | int | `1` | Number of replicas for the distributor |
326326
| distributor.resources | object | `{}` | Resource requests and limits for the distributor |
327327
| distributor.service.annotations | object | `{}` | Annotations for distributor service |
328+
| distributor.service.externalTrafficPolicy | string | `nil` | If type is LoadBalancer you can set it to 'Local' [preserve the client source IP](https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip) |
328329
| distributor.service.labels | object | `{}` | Labels for distributor service |
329330
| distributor.service.loadBalancerIP | string | `""` | If type is LoadBalancer you can assign the IP to the LoadBalancer |
330331
| distributor.service.loadBalancerSourceRanges | list | `[]` | If type is LoadBalancer limit incoming traffic from IPs. |

charts/tempo-distributed/templates/distributor/service-distributor.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@ spec:
9090
{{- if .Values.distributor.service.loadBalancerIP }}
9191
loadBalancerIP: {{ .Values.distributor.service.loadBalancerIP }}
9292
{{- end }}
93+
{{- with .Values.distributor.service.externalTrafficPolicy }}
94+
externalTrafficPolicy: {{ . }}
95+
{{- end }}
9396
{{- with .Values.distributor.service.loadBalancerSourceRanges}}
9497
loadBalancerSourceRanges:
9598
{{ toYaml . | nindent 4 }}

charts/tempo-distributed/values.yaml

100644100755
+2
Original file line numberDiff line numberDiff line change
@@ -465,6 +465,8 @@ distributor:
465465
loadBalancerIP: ''
466466
# -- If type is LoadBalancer limit incoming traffic from IPs.
467467
loadBalancerSourceRanges: []
468+
# -- If type is LoadBalancer you can set it to 'Local' [preserve the client source IP](https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip)
469+
externalTrafficPolicy: null
468470
serviceDiscovery:
469471
# -- Annotations for distributorDiscovery service
470472
annotations: {}

charts/tempo/Chart.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: tempo
33
description: Grafana Tempo Single Binary Mode
44
type: application
5-
version: 1.10.0
5+
version: 1.10.1
66
appVersion: 2.5.0
77
engine: gotpl
88
home: https://grafana.net
@@ -18,3 +18,5 @@ maintainers:
1818
- name: mdisibio
1919
- name: dgzlopes
2020
- name: mapno
21+
- name: Sheikh-Abubaker
22+
email: sheikhabubaker761@gmail.com

charts/tempo/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# tempo
22

3-
![Version: 1.10.0](https://img.shields.io/badge/Version-1.10.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.5.0](https://img.shields.io/badge/AppVersion-2.5.0-informational?style=flat-square)
3+
![Version: 1.10.1](https://img.shields.io/badge/Version-1.10.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.5.0](https://img.shields.io/badge/AppVersion-2.5.0-informational?style=flat-square)
44

55
Grafana Tempo Single Binary Mode
66

0 commit comments

Comments
 (0)