diff --git a/DEPENDENCIES b/DEPENDENCIES index 1f8436bd10..2c8ab3a577 100644 --- a/DEPENDENCIES +++ b/DEPENDENCIES @@ -4,8 +4,8 @@ core: cluster-api: v1.5.1 capi-kubeadm-bootstrap-system: v1.5.1 capi-kubeadm-control-plane-system: v1.5.1 - cluster-operator-chart: v0.1.3 - cluster-operator: v0.1.3 + cluster-operator-chart: v0.1.4-36d41ca + cluster-operator: v0.1.4-36d41ca calico: calicoctl: v3.26.1 tigera-operator: v1.30.5 diff --git a/pkg/cluster/internal/create/actions/createworker/provider.go b/pkg/cluster/internal/create/actions/createworker/provider.go index 18231d52c0..4d883bf892 100644 --- a/pkg/cluster/internal/create/actions/createworker/provider.go +++ b/pkg/cluster/internal/create/actions/createworker/provider.go @@ -57,8 +57,8 @@ const ( scName = "keos" - keosClusterChart = "0.1.3" - keosClusterImage = "0.1.3" + keosClusterChart = "0.1.4-36d41ca" + keosClusterImage = "0.1.4-36d41ca" ) const machineHealthCheckWorkerNodePath = "/kind/manifests/machinehealthcheckworkernode.yaml" diff --git a/pkg/cmd/kind/version/version.go b/pkg/cmd/kind/version/version.go index c66b83a563..0a025d1b79 100644 --- a/pkg/cmd/kind/version/version.go +++ b/pkg/cmd/kind/version/version.go @@ -54,11 +54,11 @@ func DisplayVersion() string { } // versionCore is the core portion of the kind CLI version per Semantic Versioning 2.0.0 -const versionCore = "0.17.0-0.3.3" +const versionCore = "0.17.0-0.3.4" // versionPreRelease is the base pre-release portion of the kind CLI version per // Semantic Versioning 2.0.0 -const versionPreRelease = "" +const versionPreRelease = "SNAPSHOT" // gitTag is the git tag used to build the kind binary, if available. // It is injected at build time.