Skip to content

Commit 811079b

Browse files
Bump kind to v0.19.0
Signed-off-by: killianmuldoon <[email protected]>
1 parent c2f930f commit 811079b

File tree

14 files changed

+38
-38
lines changed

14 files changed

+38
-38
lines changed

Tiltfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ envsubst_cmd = "./hack/tools/bin/envsubst"
44
clusterctl_cmd = "./bin/clusterctl"
55
kubectl_cmd = "kubectl"
66
default_build_engine = "docker"
7-
kubernetes_version = "v1.27.0"
7+
kubernetes_version = "v1.27.1"
88

99
if str(local("command -v " + kubectl_cmd + " || true", quiet = True)) == "":
1010
fail("Required command '" + kubectl_cmd + "' not found in PATH")

docs/book/src/developer/tilt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ Custom values for variable substitutions can be set using `kustomize_substitutio
325325
```yaml
326326
kustomize_substitutions:
327327
NAMESPACE: default
328-
KUBERNETES_VERSION: v1.27.0
328+
KUBERNETES_VERSION: v1.27.1
329329
CONTROL_PLANE_MACHINE_COUNT: 1
330330
WORKER_MACHINE_COUNT: 3
331331
```

docs/book/src/user/quick-start.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1217,7 +1217,7 @@ The Docker provider is not designed for production use and is intended for devel
12171217
12181218
```bash
12191219
clusterctl generate cluster capi-quickstart --flavor development \
1220-
--kubernetes-version v1.27.0 \
1220+
--kubernetes-version v1.27.1 \
12211221
--control-plane-machine-count=3 \
12221222
--worker-machine-count=3 \
12231223
> capi-quickstart.yaml
@@ -1260,7 +1260,7 @@ clusterctl generate cluster capi-quickstart \
12601260
12611261
```bash
12621262
clusterctl generate cluster capi-quickstart \
1263-
--kubernetes-version v1.27.0 \
1263+
--kubernetes-version v1.27.1 \
12641264
--control-plane-machine-count=3 \
12651265
--worker-machine-count=3 \
12661266
> capi-quickstart.yaml
@@ -1314,7 +1314,7 @@ and see an output similar to this:
13141314
13151315
```bash
13161316
NAME PHASE AGE VERSION
1317-
capi-quickstart Provisioned 8s v1.27.0
1317+
capi-quickstart Provisioned 8s v1.27.1
13181318
```
13191319
13201320
To verify the first control plane is up:
@@ -1327,7 +1327,7 @@ You should see an output is similar to this:
13271327
13281328
```bash
13291329
NAME CLUSTER INITIALIZED API SERVER AVAILABLE REPLICAS READY UPDATED UNAVAILABLE AGE VERSION
1330-
capi-quickstart-g2trk capi-quickstart true 3 3 3 4m7s v1.27.0
1330+
capi-quickstart-g2trk capi-quickstart true 3 3 3 4m7s v1.27.1
13311331
```
13321332
13331333
<aside class="note warning">
@@ -1547,12 +1547,12 @@ kubectl --kubeconfig=./capi-quickstart.kubeconfig get nodes
15471547
```
15481548
```bash
15491549
NAME STATUS ROLES AGE VERSION
1550-
capi-quickstart-vs89t-gmbld Ready control-plane 5m33s v1.27.0
1551-
capi-quickstart-vs89t-kf9l5 Ready control-plane 6m20s v1.27.0
1552-
capi-quickstart-vs89t-t8cfn Ready control-plane 7m10s v1.27.0
1553-
capi-quickstart-md-0-55x6t-5649968bd7-8tq9v Ready <none> 6m5s v1.27.0
1554-
capi-quickstart-md-0-55x6t-5649968bd7-glnjd Ready <none> 6m9s v1.27.0
1555-
capi-quickstart-md-0-55x6t-5649968bd7-sfzp6 Ready <none> 6m9s v1.27.0
1550+
capi-quickstart-vs89t-gmbld Ready control-plane 5m33s v1.27.1
1551+
capi-quickstart-vs89t-kf9l5 Ready control-plane 6m20s v1.27.1
1552+
capi-quickstart-vs89t-t8cfn Ready control-plane 7m10s v1.27.1
1553+
capi-quickstart-md-0-55x6t-5649968bd7-8tq9v Ready <none> 6m5s v1.27.1
1554+
capi-quickstart-md-0-55x6t-5649968bd7-glnjd Ready <none> 6m9s v1.27.1
1555+
capi-quickstart-md-0-55x6t-5649968bd7-sfzp6 Ready <none> 6m9s v1.27.1
15561556
```
15571557
15581558
{{#/tab }}

hack/ensure-kind.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ fi
2626
source "$(dirname "${BASH_SOURCE[0]}")/utils.sh"
2727

2828
GOPATH_BIN="$(go env GOPATH)/bin"
29-
MINIMUM_KIND_VERSION=v0.18.0
29+
MINIMUM_KIND_VERSION=v0.19.0
3030
goarch="$(go env GOARCH)"
3131
goos="$(go env GOOS)"
3232

test/e2e/clusterctl_upgrade_test.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ var _ = Describe("When testing clusterctl upgrades (v1.3=>current)", func() {
146146
// try to deploy the latest version of our test-extension from docker.yaml.
147147
InitWithRuntimeExtensionProviders: []string{},
148148
InitWithProvidersContract: "v1beta1",
149-
InitWithKubernetesVersion: "v1.26.3",
150-
WorkloadKubernetesVersion: "v1.26.3",
149+
InitWithKubernetesVersion: "v1.26.4",
150+
WorkloadKubernetesVersion: "v1.26.4",
151151
MgmtFlavor: "topology",
152152
WorkloadFlavor: "",
153153
// This check ensures that ownerReference apiVersions are updated for all types after the upgrade.
@@ -185,8 +185,8 @@ var _ = Describe("When testing clusterctl upgrades using ClusterClass (v1.3=>cur
185185
// try to deploy the latest version of our test-extension from docker.yaml.
186186
InitWithRuntimeExtensionProviders: []string{},
187187
InitWithProvidersContract: "v1beta1",
188-
InitWithKubernetesVersion: "v1.26.3",
189-
WorkloadKubernetesVersion: "v1.26.3",
188+
InitWithKubernetesVersion: "v1.26.4",
189+
WorkloadKubernetesVersion: "v1.26.4",
190190
MgmtFlavor: "topology",
191191
WorkloadFlavor: "topology",
192192
// This check ensures that ownerReference apiVersions are updated for all types after the upgrade.
@@ -214,8 +214,8 @@ var _ = Describe("When testing clusterctl upgrades (v1.4=>current)", func() {
214214
SkipCleanup: skipCleanup,
215215
InitWithBinary: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.4.0/clusterctl-{OS}-{ARCH}",
216216
InitWithProvidersContract: "v1beta1",
217-
InitWithKubernetesVersion: "v1.27.0",
218-
WorkloadKubernetesVersion: "v1.27.0",
217+
InitWithKubernetesVersion: "v1.27.1",
218+
WorkloadKubernetesVersion: "v1.27.1",
219219
MgmtFlavor: "topology",
220220
WorkloadFlavor: "",
221221
// This check ensures that ownerReference apiVersions are updated for all types after the upgrade.
@@ -243,8 +243,8 @@ var _ = Describe("When testing clusterctl upgrades using ClusterClass (v1.4=>cur
243243
SkipCleanup: skipCleanup,
244244
InitWithBinary: "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.4.0/clusterctl-{OS}-{ARCH}",
245245
InitWithProvidersContract: "v1beta1",
246-
InitWithKubernetesVersion: "v1.27.0",
247-
WorkloadKubernetesVersion: "v1.27.0",
246+
InitWithKubernetesVersion: "v1.27.1",
247+
WorkloadKubernetesVersion: "v1.27.1",
248248
MgmtFlavor: "topology",
249249
WorkloadFlavor: "topology",
250250
// This check ensures that ownerReference apiVersions are updated for all types after the upgrade.

test/e2e/config/docker.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -296,10 +296,10 @@ variables:
296296
# allowing the same e2e config file to be re-used in different Prow jobs e.g. each one with a K8s version permutation.
297297
# The following Kubernetes versions should be the latest versions with already published kindest/node images.
298298
# This avoids building node images in the default case which improves the test duration significantly.
299-
KUBERNETES_VERSION_MANAGEMENT: "v1.27.0"
300-
KUBERNETES_VERSION: "v1.27.0"
301-
KUBERNETES_VERSION_UPGRADE_FROM: "v1.26.3"
302-
KUBERNETES_VERSION_UPGRADE_TO: "v1.27.0"
299+
KUBERNETES_VERSION_MANAGEMENT: "v1.27.1"
300+
KUBERNETES_VERSION: "v1.27.1"
301+
KUBERNETES_VERSION_UPGRADE_FROM: "v1.26.4"
302+
KUBERNETES_VERSION_UPGRADE_TO: "v1.27.1"
303303
ETCD_VERSION_UPGRADE_TO: "3.5.7-0"
304304
COREDNS_VERSION_UPGRADE_TO: "v1.10.1"
305305
DOCKER_SERVICE_DOMAIN: "cluster.local"

test/framework/bootstrap/kind_provider.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const (
3737
DefaultNodeImageRepository = "kindest/node"
3838

3939
// DefaultNodeImageVersion is the default Kubernetes version to be used for creating a kind cluster.
40-
DefaultNodeImageVersion = "v1.27.0"
40+
DefaultNodeImageVersion = "v1.27.1"
4141
)
4242

4343
// KindClusterOption is a NewKindClusterProvider option.

test/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ require (
2424
k8s.io/utils v0.0.0-20221128185143-99ec85e7a448
2525
sigs.k8s.io/cluster-api v0.0.0-00010101000000-000000000000
2626
sigs.k8s.io/controller-runtime v0.14.6
27-
sigs.k8s.io/kind v0.18.0
27+
sigs.k8s.io/kind v0.19.0
2828
sigs.k8s.io/yaml v1.3.0
2929
)
3030

test/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -926,8 +926,8 @@ sigs.k8s.io/controller-runtime v0.14.6 h1:oxstGVvXGNnMvY7TAESYk+lzr6S3V5VFxQ6d92
926926
sigs.k8s.io/controller-runtime v0.14.6/go.mod h1:WqIdsAY6JBsjfc/CqO0CORmNtoCtE4S6qbPc9s68h+0=
927927
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 h1:iXTIw73aPyC+oRdyqqvVJuloN1p0AC/kzH07hu3NE+k=
928928
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2/go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0=
929-
sigs.k8s.io/kind v0.18.0 h1:ahgZdVV1pdhXlYe1f+ztISakT23KdrBl/NFY9JMygzs=
930-
sigs.k8s.io/kind v0.18.0/go.mod h1:Qqp8AiwOlMZmJWs37Hgs31xcbiYXjtXlRBSftcnZXQk=
929+
sigs.k8s.io/kind v0.19.0 h1:ZSUh6/kpab6fiowT6EqL4k8xSbedI2NWxyuUOtoPFe4=
930+
sigs.k8s.io/kind v0.19.0/go.mod h1:aBlbxg08cauDgZ612shr017/rZwqd7AS563FvpWKPVs=
931931
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 h1:PRbqxJClWWYMNV1dhaG4NsibJbArud9kFxnAMREiWFE=
932932
sigs.k8s.io/structured-merge-diff/v4 v4.2.3/go.mod h1:qjx8mGObPmV2aSZepjQjbmb2ihdVs8cGKBraizNC69E=
933933
sigs.k8s.io/yaml v1.3.0 h1:a2VclLzOGrwOHDiV8EfBGhvjHvP46CtW5j6POvhYGGo=

test/infrastructure/docker/examples/machine-pool.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ metadata:
3535
namespace: default
3636
spec:
3737
replicas: 1
38-
version: v1.27.0
38+
version: v1.27.1
3939
machineTemplate:
4040
infrastructureRef:
4141
apiVersion: infrastructure.cluster.x-k8s.io/v1beta1
@@ -80,7 +80,7 @@ spec:
8080
replicas: 2
8181
template:
8282
spec:
83-
version: v1.27.0
83+
version: v1.27.1
8484
clusterName: my-cluster
8585
bootstrap:
8686
configRef:

0 commit comments

Comments
 (0)