Skip to content

Commit

Permalink
bump kind version
Browse files Browse the repository at this point in the history
  • Loading branch information
makowalcz committed Jul 19, 2024
1 parent f77cde4 commit 944bc7b
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/devkit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: devkit

on:
push:
branches: [ master ]
branches: [ feature/atl-28412 ]
pull_request:
branches: [ master ]

Expand Down
8 changes: 4 additions & 4 deletions devkit/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ REPO ?= csi-baremetal-devkit
TAG ?= $(major).$(minor).$(patch)-$(git_rev)
IMAGE_REPO_TAG := $(REPO):$(TAG)

DOCKER_VERSION ?= 20.10.14_ce
GO_VERSION ?= 1.21.5
DOCKER_VERSION ?= 24.0.7_ce
GO_VERSION ?= 1.22.4
GOLANGCI_VERSION ?= 1.55.2
PROTOBUF_VERSION ?= 3.11.0
PROTOC_GEN_GO_VER ?= v1.3.2
KUBECTL_VERSION ?= 1.25.3
KUBECTL_VERSION ?= 1.29.4
HELM_VERSION ?= 3.8.1
KIND_BUILDER ?= golang:1.21
KIND_BUILDER ?= golang:1.22
PYTHON_VERSION ?= 3.6.15

#
Expand Down
24 changes: 24 additions & 0 deletions devkit/kind/kind-0.23.0.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
diff -Naur kind-0.23.0/pkg/cluster/internal/providers/docker/provision.go kind-0.23.0-patched/pkg/cluster/internal/providers/docker/provision.go
--- kind-0.23.0/pkg/cluster/internal/providers/docker/provision.go 2024-05-14 03:51:45.000000000 +0200
+++ kind-0.23.0-patched/pkg/cluster/internal/providers/docker/provision.go 2024-07-18 11:28:51.094894819 +0200
@@ -236,6 +236,8 @@
"--volume", "/var",
// some k8s things want to read /lib/modules
"--volume", "/lib/modules:/lib/modules:ro",
+ // ipc host
+ "--ipc", "host",
// propagate KIND_EXPERIMENTAL_CONTAINERD_SNAPSHOTTER to the entrypoint script
"-e", "KIND_EXPERIMENTAL_CONTAINERD_SNAPSHOTTER",
},
diff -Naur kind-0.23.0/pkg/cmd/kind/version/version.go kind-0.23.0-patched/pkg/cmd/kind/version/version.go
--- kind-0.23.0/pkg/cmd/kind/version/version.go 2024-05-14 03:51:45.000000000 +0200
+++ kind-0.23.0-patched/pkg/cmd/kind/version/version.go 2024-07-18 11:29:23.614811195 +0200
@@ -54,7 +54,7 @@
}

// versionCore is the core portion of the kind CLI version per Semantic Versioning 2.0.0
-const versionCore = "0.23.0"
+const versionCore = "0.23.0-patched"

// versionPreRelease is the base pre-release portion of the kind CLI version per
// Semantic Versioning 2.0.0
2 changes: 1 addition & 1 deletion devkit/kind/kind-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Env
KIND_DIR=$1
KIND=$KIND_DIR/kind
KIND_VER=0.17.0
KIND_VER=0.23.0

# Get kind sources
wget -O $KIND_DIR/kind-src https://codeload.github.com/kubernetes-sigs/kind/tar.gz/refs/tags/v$KIND_VER
Expand Down

0 comments on commit 944bc7b

Please sign in to comment.