Skip to content

Commit 3f607b7

Browse files
Bump k8s version to v1.27.0 in quickstart docs and Tiltfile
Signed-off by: Furkat Gofurov ([email protected])
1 parent e774ad5 commit 3f607b7

File tree

3 files changed

+20
-13
lines changed

3 files changed

+20
-13
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.26.0"
7+
kubernetes_version = "v1.27.0"
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.26.0
328+
KUBERNETES_VERSION: v1.27.0
329329
CONTROL_PLANE_MACHINE_COUNT: 1
330330
WORKER_MACHINE_COUNT: 3
331331
```

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

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1215,7 +1215,7 @@ The Docker provider is not designed for production use and is intended for devel
12151215
12161216
```bash
12171217
clusterctl generate cluster capi-quickstart --flavor development \
1218-
--kubernetes-version v1.26.0 \
1218+
--kubernetes-version v1.27.0 \
12191219
--control-plane-machine-count=3 \
12201220
--worker-machine-count=3 \
12211221
> capi-quickstart.yaml
@@ -1227,7 +1227,7 @@ clusterctl generate cluster capi-quickstart --flavor development \
12271227
```bash
12281228
export CLUSTER_NAME=kind
12291229
export CLUSTER_NAMESPACE=vcluster
1230-
export KUBERNETES_VERSION=1.26.0
1230+
export KUBERNETES_VERSION=1.27.0
12311231
export HELM_VALUES="service:\n type: NodePort"
12321232
12331233
kubectl create namespace ${CLUSTER_NAMESPACE}
@@ -1258,7 +1258,7 @@ clusterctl generate cluster capi-quickstart \
12581258
12591259
```bash
12601260
clusterctl generate cluster capi-quickstart \
1261-
--kubernetes-version v1.26.0 \
1261+
--kubernetes-version v1.27.0 \
12621262
--control-plane-machine-count=3 \
12631263
--worker-machine-count=3 \
12641264
> capi-quickstart.yaml
@@ -1308,6 +1308,13 @@ You can also get an "at glance" view of the cluster and its resources by running
13081308
clusterctl describe cluster capi-quickstart
13091309
```
13101310
1311+
and see an output similar to this:
1312+
1313+
```bash
1314+
NAME PHASE AGE VERSION
1315+
capi-quickstart Provisioned 8s v1.27.0
1316+
```
1317+
13111318
To verify the first control plane is up:
13121319
13131320
```bash
@@ -1318,7 +1325,7 @@ You should see an output is similar to this:
13181325
13191326
```bash
13201327
NAME CLUSTER INITIALIZED API SERVER AVAILABLE REPLICAS READY UPDATED UNAVAILABLE AGE VERSION
1321-
capi-quickstart-g2trk capi-quickstart true 3 3 3 4m7s v1.26.0
1328+
capi-quickstart-g2trk capi-quickstart true 3 3 3 4m7s v1.27.0
13221329
```
13231330
13241331
<aside class="note warning">
@@ -1537,13 +1544,13 @@ let's check the status using `kubectl get nodes`:
15371544
kubectl --kubeconfig=./capi-quickstart.kubeconfig get nodes
15381545
```
15391546
```bash
1540-
NAME STATUS ROLES AGE VERSION
1541-
capi-quickstart-g2trk-9xrjv Ready control-plane 12m v1.26.0
1542-
capi-quickstart-g2trk-bmm9v Ready control-plane 11m v1.26.0
1543-
capi-quickstart-g2trk-hvs9q Ready control-plane 13m v1.26.0
1544-
capi-quickstart-md-0-55x6t-5649968bd7-8tq9v Ready <none> 12m v1.26.0
1545-
capi-quickstart-md-0-55x6t-5649968bd7-glnjd Ready <none> 12m v1.26.0
1546-
capi-quickstart-md-0-55x6t-5649968bd7-sfzp6 Ready <none> 12m v1.26.0
1547+
NAME STATUS ROLES AGE VERSION
1548+
capi-quickstart-vs89t-gmbld Ready control-plane 5m33s v1.27.0
1549+
capi-quickstart-vs89t-kf9l5 Ready control-plane 6m20s v1.27.0
1550+
capi-quickstart-vs89t-t8cfn Ready control-plane 7m10s v1.27.0
1551+
capi-quickstart-md-0-55x6t-5649968bd7-8tq9v Ready <none> 6m5s v1.27.0
1552+
capi-quickstart-md-0-55x6t-5649968bd7-glnjd Ready <none> 6m9s v1.27.0
1553+
capi-quickstart-md-0-55x6t-5649968bd7-sfzp6 Ready <none> 6m9s v1.27.0
15471554
```
15481555
15491556
{{#/tab }}

0 commit comments

Comments
 (0)