Skip to content

Commit 4b3b2de

Browse files
authored
Make curl jq image configurable (#228)
1 parent 238b6da commit 4b3b2de

File tree

5 files changed

+16
-11
lines changed

5 files changed

+16
-11
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.2.5-dev
1+
2.2.5

deployment/charts/cluster-manager/Chart.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ type: application
1616
# This is the chart version. This version number should be incremented each time you make changes
1717
# to the chart and its templates, including the app version.
1818
# Versions are expected to follow Semantic Versioning (https://semver.org/)
19-
version: 2.2.5-dev
20-
appVersion: 2.2.5-dev
19+
version: 2.2.5
20+
appVersion: 2.2.5
2121
annotations:
22-
revision: 34cd5c5097171cc078d9b19b4d67b50c81f975c7
23-
created: "2025-11-14T14:34:54Z"
22+
revision: 238b6da916f645b72e15c397fb2b60f1ec52497a
23+
created: "2025-11-19T13:14:49Z"

deployment/charts/cluster-manager/templates/job-m2m-credentials.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ spec:
3232
type: RuntimeDefault
3333
containers:
3434
- name: credentials-m2m
35-
image: badouralix/curl-jq@sha256:fe8a5ee49f613495df3b57afa86b39f081bd1b3b9ed61248f46c3d3d7df56092
36-
imagePullPolicy: IfNotPresent
35+
image: "{{ .Values.curlImage.name }}:{{ .Values.curlImage.tag }}"
36+
imagePullPolicy: {{ .Values.curlImage.pullPolicy }}
3737
command: ["/bin/sh"]
3838
args: ["/scripts/credentials-m2m.sh"]
3939
env:

deployment/charts/cluster-manager/values.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ serviceAccount:
2121
# If not set and create is true, a name is generated using the fullname template.
2222
name: ""
2323

24+
curlImage:
25+
name: badouralix/curl-jq@sha256
26+
tag: fe8a5ee49f613495df3b57afa86b39f081bd1b3b9ed61248f46c3d3d7df56092
27+
pullPolicy: IfNotPresent
28+
2429
clusterManager:
2530
image:
2631
registry:

deployment/charts/cluster-template-crd/Chart.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ apiVersion: v2
66
name: cluster-template-crd
77
description: A Helm chart for the ClusterTemplate CRD
88
type: application
9-
version: 2.2.5-dev
10-
appVersion: 2.2.5-dev
9+
version: 2.2.5
10+
appVersion: 2.2.5
1111
annotations:
12-
revision: 34cd5c5097171cc078d9b19b4d67b50c81f975c7
13-
created: "2025-11-14T14:34:54Z"
12+
revision: 238b6da916f645b72e15c397fb2b60f1ec52497a
13+
created: "2025-11-19T13:14:49Z"

0 commit comments

Comments
 (0)