Skip to content

Commit 7c19e10

Browse files
Merge pull request #3971 from KyriosGN0/tempo-registry
[tempo] set docker.io as default registry
2 parents e5ee696 + f76632f commit 7c19e10

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

charts/tempo/Chart.yaml

Lines changed: 1 addition & 1 deletion
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.24.0
5+
version: 1.24.1
66
appVersion: 2.9.0
77
engine: gotpl
88
home: https://grafana.net

charts/tempo/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# tempo
22

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

55
Grafana Tempo Single Binary Mode
66

@@ -94,6 +94,7 @@ Grafana Tempo Single Binary Mode
9494
| tempo.receivers.opencensus | string | `nil` | |
9595
| tempo.receivers.otlp.protocols.grpc.endpoint | string | `"0.0.0.0:4317"` | |
9696
| tempo.receivers.otlp.protocols.http.endpoint | string | `"0.0.0.0:4318"` | |
97+
| tempo.registry | string | `"docker.io"` | |
9798
| tempo.reportingEnabled | bool | `true` | If true, Tempo will report anonymous usage data about the shape of a deployment to Grafana Labs |
9899
| tempo.repository | string | `"grafana/tempo"` | |
99100
| tempo.resources | object | `{}` | |

charts/tempo/templates/statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ spec:
6363
{{- range $key, $value := .Values.tempo.extraArgs }}
6464
- "-{{ $key }}{{ if $value }}={{ $value }}{{ end }}"
6565
{{- end }}
66-
image: {{ .Values.tempo.repository }}:{{ .Values.tempo.tag | default .Chart.AppVersion }}
66+
image: {{ .Values.tempo.registry }}/{{ .Values.tempo.repository }}:{{ .Values.tempo.tag | default .Chart.AppVersion }}
6767
imagePullPolicy: {{ .Values.tempo.pullPolicy }}
6868
name: tempo
6969
ports:

charts/tempo/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ labels: {}
2121
annotations: {}
2222

2323
tempo:
24+
registry: docker.io
2425
repository: grafana/tempo
2526
tag: ""
2627
pullPolicy: IfNotPresent

0 commit comments

Comments
 (0)