Skip to content

Commit 2e8f2bc

Browse files
authored
Merge pull request #3869 from grafana/tempo-replace-bitnami-kubectl-2
[tempo-distributed] replace kubectl default image with alpine/kubectl
2 parents 43d422e + ecca198 commit 2e8f2bc

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

charts/tempo-distributed/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-distributed
33
description: Grafana Tempo in MicroService mode
44
type: application
5-
version: 1.46.4
5+
version: 1.46.5
66
appVersion: 2.8.2
77
engine: gotpl
88
home: https://grafana.com/docs/tempo/latest/

charts/tempo-distributed/README.md

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

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

55
Grafana Tempo in MicroService mode
66

@@ -641,8 +641,8 @@ The memcached default args are removed and should be provided manually. The sett
641641
| ingress.paths.ingester[1].path | string | `"/shutdown"` | |
642642
| ingress.paths.query-frontend[0].path | string | `"/api"` | |
643643
| kubectlImage.pullPolicy | string | `"IfNotPresent"` | |
644-
| kubectlImage.repository | string | `"registry.k8s.io/kubectl"` | |
645-
| kubectlImage.tag | string | `"v1.33.3"` | |
644+
| kubectlImage.repository | string | `"alpine/kubectl"` | |
645+
| kubectlImage.tag | string | `"latest"` | |
646646
| license.contents | string | `"NOTAVALIDLICENSE"` | |
647647
| license.external | bool | `false` | |
648648
| license.secretName | string | `"{{ include \"tempo.resourceName\" (dict \"ctx\" . \"component\" \"license\") }}"` | |

charts/tempo-distributed/templates/provisioner/provisioner-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ spec:
8484
image: {{ .Values.kubectlImage.repository }}:{{ .Values.kubectlImage.tag }}
8585
imagePullPolicy: {{ .Values.kubectlImage.pullPolicy | default "IfNotPresent" }}
8686
command:
87-
- /bin/bash
87+
- /bin/sh
8888
- -exuc
8989
- |
9090
# In this case, the admin resources have already been created, the provisioner job

charts/tempo-distributed/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2372,8 +2372,8 @@ provisioner:
23722372

23732373

23742374
kubectlImage:
2375-
repository: registry.k8s.io/kubectl
2376-
tag: v1.33.3
2375+
repository: alpine/kubectl
2376+
tag: latest
23772377
pullPolicy: IfNotPresent
23782378

23792379
# Settings for the admin_api service providing authentication and authorization service.

0 commit comments

Comments
 (0)