Skip to content

Commit 21b910d

Browse files
committed
Tempo: replace kubectl default image with alpine/kubectl
The current image does not provide a suitable shell Signed-off-by: A. Stoewer <[email protected]>
1 parent 43d422e commit 21b910d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

charts/tempo-distributed/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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)