Skip to content

Commit

Permalink
fix: update kubernetes version to 1.29.9 (#1195) (#1197)
Browse files Browse the repository at this point in the history
* fix: update kubernetes version to 1.29.9

* fix: rebuild devkit image if kubernetes version changes
  • Loading branch information
supershal authored Oct 8, 2024
1 parent 73172e0 commit 4a75ac6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ buildx:
###### Devkit container image
DEVKIT_IMAGE_DOCKERFILE ?= Dockerfile.devkit
DEVKIT_IMAGE_NAME ?= mesosphere/konvoy-image-builder-devkit
DEVKIT_IMAGE_TAG ?= $(shell cat ${DEVKIT_IMAGE_DOCKERFILE} requirements.txt requirements-devkit.txt | sha256sum | cut -d" " -f 1)
DEVKIT_IMAGE_TAG ?= $(shell cat ${DEVKIT_IMAGE_DOCKERFILE} requirements.txt requirements-devkit.txt ansible/group_vars/all/defaults.yaml | sha256sum | cut -d" " -f 1)

.PHONY: devkit-image
## first tries to pull an image, if doesn't exist build and push the image
Expand Down
2 changes: 1 addition & 1 deletion ansible/group_vars/all/defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ python_path: ""
# If it's not there, the kubernetes_full_version will have "None" for a version number.
#
# IMPORTANT When you update kubernetes_version, also update crictl_version.
kubernetes_version: "1.29.6"
kubernetes_version: "1.29.9"
kubernetes_major_minor: "{{ (kubernetes_version.split('.') | map('trim'))[:2] | join('.') }}"
kubernetes_semver: "v{{ kubernetes_version }}"

Expand Down
2 changes: 1 addition & 1 deletion images/common.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
kubernetes_version: "1.29.6"
kubernetes_version: "1.29.9"

packer:
goss_arch: amd64
Expand Down

0 comments on commit 4a75ac6

Please sign in to comment.