Skip to content

Commit e88f100

Browse files
committed
Update CAPT and Tink stack components to latest release for consuming L3 provisioning changes
Signed-off-by: Rahul Ganesh <[email protected]>
1 parent 250d525 commit e88f100

34 files changed

+855
-620
lines changed

UPSTREAM_PROJECTS.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -267,16 +267,16 @@ projects:
267267
repos:
268268
- name: boots
269269
versions:
270-
- tag: v0.11.0
271-
go_version: "1.21"
270+
- tag: v0.15.1
271+
go_version: "1.23"
272272
- name: charts
273273
versions:
274-
- tag: v0.4.5
274+
- tag: v0.6.2
275275
go_version: "1.21"
276276
- name: cluster-api-provider-tinkerbell
277277
versions:
278-
- tag: v0.5.3
279-
go_version: "1.21"
278+
- tag: v0.6.1
279+
go_version: "1.23"
280280
- name: hegel
281281
versions:
282282
- tag: v0.12.0
@@ -295,8 +295,8 @@ projects:
295295
go_version: N/A
296296
- name: rufio
297297
versions:
298-
- tag: v0.5.2
299-
go_version: "1.23"
298+
- tag: v0.6.1
299+
go_version: "1.22"
300300
- name: tink
301301
versions:
302302
- tag: v0.10.1

build/lib/helm_replace.sh

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,12 @@ DEST_DIR=${OUTPUT_DIR}/helm/${CHART_NAME}
3939
#
4040
TEMPLATE_DIR=helm/templates
4141
SEDFILE=${OUTPUT_DIR}/helm/sedfile
42-
for file in Chart.yaml values.yaml
43-
do
44-
build::common::echo_and_run $SED -f ${SEDFILE} -i ${DEST_DIR}/${file}
45-
done
42+
build::common::echo_and_run $SED -f ${SEDFILE} -i ${DEST_DIR}/Chart.yaml
43+
44+
# Process values.yaml if it exists
45+
if [ -f ${DEST_DIR}/values.yaml ]; then
46+
build::common::echo_and_run $SED -f ${SEDFILE} -i ${DEST_DIR}/values.yaml
47+
fi
4648

4749
if [ -d ${OUTPUT_DIR}/helm/${CHART_NAME}/crds ]; then
4850
for file in crds/*.yaml

0 commit comments

Comments
 (0)