Skip to content

Commit cd00f92

Browse files
committed
docs: updated recipes
Signed-off-by: Gabriele Bartolini <gabriele.bartolini@enterprisedb.com>
1 parent 530d8de commit cd00f92

2 files changed

Lines changed: 26 additions & 20 deletions

File tree

  • content/posts

content/posts/20240814-kind-multi-node/index.md

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ self-managed, or fully managed._
2121

2222
<!--more-->
2323

24+
_NOTE: this article has been updated on April 14th, 2026 with the most recent
25+
version of `kind`._
26+
2427
---
2528

2629
One standout tool in the Kubernetes ecosystem is
@@ -106,7 +109,7 @@ Returning:
106109

107110
```console
108111
Creating cluster "cnpg" ...
109-
✓ Ensuring node image (kindest/node:v1.30.0) 🖼
112+
✓ Ensuring node image (kindest/node:v1.35.0) 🖼
110113
✓ Preparing nodes 📦 📦 📦 📦 📦 📦
111114
✓ Writing configuration 📜
112115
✓ Starting control-plane 🕹️
@@ -132,12 +135,12 @@ This command will return:
132135

133136
```console
134137
NAME STATUS ROLES AGE VERSION
135-
cnpg-control-plane Ready control-plane 5m4s v1.30.0
136-
cnpg-worker Ready <none> 4m44s v1.30.0
137-
cnpg-worker2 Ready <none> 4m44s v1.30.0
138-
cnpg-worker3 Ready <none> 4m45s v1.30.0
139-
cnpg-worker4 Ready <none> 4m44s v1.30.0
140-
cnpg-worker5 Ready <none> 4m45s v1.30.0
138+
cnpg-control-plane Ready control-plane 5m4s v1.35.0
139+
cnpg-worker Ready <none> 4m44s v1.35.0
140+
cnpg-worker2 Ready <none> 4m44s v1.35.0
141+
cnpg-worker3 Ready <none> 4m45s v1.35.0
142+
cnpg-worker4 Ready <none> 4m44s v1.35.0
143+
cnpg-worker5 Ready <none> 4m45s v1.35.0
141144
```
142145

143146
As you can see, only the `cnpg-control-plane` node has a `control-plane` role.
@@ -178,12 +181,12 @@ Now, if you rerun the `kubectl get nodes` command, you should see the updated ro
178181

179182
```console
180183
NAME STATUS ROLES AGE VERSION
181-
cnpg-control-plane Ready control-plane 19m v1.30.0
182-
cnpg-worker Ready infra 19m v1.30.0
183-
cnpg-worker2 Ready app 19m v1.30.0
184-
cnpg-worker3 Ready postgres 19m v1.30.0
185-
cnpg-worker4 Ready postgres 19m v1.30.0
186-
cnpg-worker5 Ready postgres 19m v1.30.0
184+
cnpg-control-plane Ready control-plane 19m v1.35.0
185+
cnpg-worker Ready infra 19m v1.35.0
186+
cnpg-worker2 Ready app 19m v1.35.0
187+
cnpg-worker3 Ready postgres 19m v1.35.0
188+
cnpg-worker4 Ready postgres 19m v1.35.0
189+
cnpg-worker5 Ready postgres 19m v1.35.0
187190
```
188191

189192
This output makes it clear that we have six nodes, each ideally dedicated to

content/posts/20240816-kind-multi-node-taints/index.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ PostgreSQL cluster in Kubernetes._
2121

2222
<!--more-->
2323

24+
_NOTE: this article has been updated on April 14th, 2026 with the most recent
25+
version of `kind`._
26+
2427
---
2528

2629
In [CNPG Recipe #10]({{< relref "../20240814-kind-multi-node/index.md" >}}), I
@@ -96,13 +99,13 @@ configured:
9699

97100
```console
98101
NAME STATUS ROLES AGE VERSION
99-
cnpg-control-plane Ready control-plane 5m14s v1.31.0
100-
cnpg-worker Ready infra 5m1s v1.31.0
101-
cnpg-worker2 Ready app 5m1s v1.31.0
102-
cnpg-worker3 Ready postgres 5m v1.31.0
103-
cnpg-worker4 Ready postgres 5m1s v1.31.0
104-
cnpg-worker5 Ready postgres 5m1s v1.31.0
105-
cnpg-worker6 Ready <none> 5m1s v1.31.0
102+
cnpg-control-plane Ready control-plane 5m14s v1.35.0
103+
cnpg-worker Ready infra 5m1s v1.35.0
104+
cnpg-worker2 Ready app 5m1s v1.35.0
105+
cnpg-worker3 Ready postgres 5m v1.35.0
106+
cnpg-worker4 Ready postgres 5m1s v1.35.0
107+
cnpg-worker5 Ready postgres 5m1s v1.35.0
108+
cnpg-worker6 Ready <none> 5m1s v1.35.0
106109
```
107110

108111
To inspect the taints applied to a specific node, use:

0 commit comments

Comments
 (0)