Skip to content

Commit e706f86

Browse files
fix(ci): pull in latest k0s image patches (#3612)
* fix(ci): pull in latest k0s image patches * Update Makefile versions (#3613) Co-authored-by: emosbaugh <371319+emosbaugh@users.noreply.github.com> --------- Co-authored-by: replicated-ci-ec <replicated-ci-ec@replicated.com> Co-authored-by: emosbaugh <371319+emosbaugh@users.noreply.github.com>
1 parent 764f731 commit e706f86

5 files changed

Lines changed: 14 additions & 17 deletions

File tree

pkg/config/static/metadata-1_32.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ images:
3434
kube-proxy:
3535
repo: proxy.replicated.com/library/kube-proxy
3636
tag:
37-
amd64: v1.32.13-amd64@sha256:83842f25d3c39c3acbff12c1e13386ff1cd85d5aedce5a6b284518ceea8a6563
38-
arm64: v1.32.13-arm64@sha256:5cb41ad0a829588316dbeb3f72ecd1baa4e4ad6ec9c9ba57260e2c8911ae2fb6
37+
amd64: v1.32.13-amd64@sha256:4ee5df86460164a440d90b2438bfd3c28c4ce142353a0c5b68c79f899930d95e
38+
arm64: v1.32.13-arm64@sha256:1266152972d12901a8a08a126d7b86883a5263a159c7863c920da5250371e07d
3939
metrics-server:
4040
repo: proxy.replicated.com/library/metrics-server
4141
tag:

pkg/config/static/metadata-1_33.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ images:
3434
kube-proxy:
3535
repo: proxy.replicated.com/library/kube-proxy
3636
tag:
37-
amd64: v1.33.10-amd64@sha256:a757e89e6858240b7788c2758d1b55349c441efbffcbf022dd29cc4efa9263cc
38-
arm64: v1.33.10-arm64@sha256:2a3de8c86abe8577bd708687d56442e318b125bbd6181d79ff38364e03cce98a
37+
amd64: v1.33.10-amd64@sha256:7f438ad27f933ae1186493538a43f610f2652d5c61e9084ddb3e2fe01521ead0
38+
arm64: v1.33.10-arm64@sha256:8d53cbb00a76b412cc6810e6d15d3d25f507bb12e9a0e1b06a318ad3abf1a9e0
3939
metrics-server:
4040
repo: proxy.replicated.com/library/metrics-server
4141
tag:

pkg/config/static/metadata-1_34.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ images:
3434
kube-proxy:
3535
repo: proxy.replicated.com/library/kube-proxy
3636
tag:
37-
amd64: v1.34.6-amd64@sha256:d15fdfdbbb53b76025a99346513f87d0fed7b8a35cc2dbad7d756e4cc335d28f
38-
arm64: v1.34.6-arm64@sha256:e55fe5855f4fbeb26d34a9c172be0300eb30c089d60dcd1435652d970a4c3456
37+
amd64: v1.34.6-amd64@sha256:e3e97a19a4fd9b69af36349aa5956aa54bfdf099f7db8cd83e190d1e3980b2f6
38+
arm64: v1.34.6-arm64@sha256:c8c2f359f1d76310f61bd13f5ecdd640a9fcaea3a1ec2f5b0387b6225fce5bac
3939
metrics-server:
4040
repo: proxy.replicated.com/library/metrics-server
4141
tag:

scripts/k0s-update-dependencies.sh

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,13 @@ function main() {
4848
# pin to the current major.minor version
4949
sed "${SED_ARGS[@]}" "s/^K0S_MINOR_VERSION ?= .*$/K0S_MINOR_VERSION ?= $minor_version/" versions.mk
5050

51-
# only update images and code if there has been a change to the versions.mk file
52-
if ! git diff --exit-code --name-only versions.mk > /dev/null; then
53-
# update images for all major.minor versions
54-
UPDATE_ALL_IMAGES=true ./scripts/k0s-update-images.sh "$minor_version"
51+
# always update images for all major.minor versions to pull in the latest cve0 patches
52+
UPDATE_ALL_IMAGES=true ./scripts/k0s-update-images.sh "$minor_version"
5553

56-
# prepare the code for the current major.minor version
57-
export K0S_MINOR_VERSION="$minor_version"
58-
update_go_dependencies
59-
generate_crd_manifests
60-
fi
54+
# prepare the code for the current major.minor version
55+
export K0S_MINOR_VERSION="$minor_version"
56+
update_go_dependencies
57+
generate_crd_manifests
6158

6259
echo "Done"
6360
}

versions.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ K0S_VERSION = $(K0S_VERSION_1_$(K0S_MINOR_VERSION))
1818
K0S_GO_VERSION = $(K0S_VERSION_1_$(K0S_MINOR_VERSION))
1919

2020
# Troubleshoot Version
21-
TROUBLESHOOT_VERSION = v0.125.1
21+
TROUBLESHOOT_VERSION = v0.126.0
2222

2323
# Helm Version
24-
HELM_VERSION = v4.1.3
24+
HELM_VERSION = v4.1.4
2525

2626
# FIO Version (for performance testing)
2727
FIO_VERSION = 3.42

0 commit comments

Comments
 (0)