You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
along with the ability to replicate across Kubernetes clusters, also known as [replica clusters](https://cloudnative-pg.io/documentation/current/replica_cluster/).
227
+
Key features encompass [continuous backup](https://cloudnative-pg.io/docs/1.28/backup/)
228
+
and [point-in-time recovery](https://cloudnative-pg.io/docs/1.28/recovery/),
along with the ability to replicate across Kubernetes clusters, also known as [replica clusters](https://cloudnative-pg.io/docs/1.28/replica_cluster/).
233
233
234
-
CloudNativePG features a powerful [`kubectl` plugin known as `cnpg`](https://cloudnative-pg.io/documentation/current/kubectl-plugin/),
234
+
CloudNativePG features a powerful [`kubectl` plugin known as `cnpg`](https://cloudnative-pg.io/docs/1.28/kubectl-plugin/),
235
235
serving as the official command-line interface (CLI) for the product. It is
236
236
compatible with any supported Kubernetes distribution and can be effortlessly
237
237
tested on your laptop using `kind` (Kubernetes in Docker), as outlined in the
Copy file name to clipboardExpand all lines: content/posts/20240303-recipe-local-setup/index.md
+28-29Lines changed: 28 additions & 29 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ your future CloudNativePG explorations with a fully open source stack._
19
19
20
20
<!--more-->
21
21
22
-
_NOTE: this article has been updated on June 5th, 2025 with the most recent
22
+
_NOTE: this article has been updated on January 4th, 2026 with the most recent
23
23
versions of `kind` and `cloudnative-pg`. You might also be interested in
24
24
the [CNPG Playground project]({{< relref "../20240920-cnpg-playground/index.md">}})
25
25
that was launched in the meantime._
@@ -53,7 +53,7 @@ kind version
53
53
```
54
54
55
55
On my laptop, as of the time of the last update, the output is
56
-
`kind v0.29.0 go1.24.3 darwin/amd64`.
56
+
`kind v0.31.0 go1.25.5 darwin/arm64`.
57
57
58
58
Now, proceed to establish your initial local Kubernetes cluster for
59
59
CloudNativePG with:
@@ -66,7 +66,7 @@ Upon execution, you'll observe the following output:
66
66
67
67
```console
68
68
Creating cluster "cnpg" ...
69
-
✓ Ensuring node image (kindest/node:v1.33.1) 🖼
69
+
✓ Ensuring node image (kindest/node:v1.35.0) 🖼
70
70
✓ Preparing nodes 📦
71
71
✓ Writing configuration 📜
72
72
✓ Starting control-plane 🕹️
@@ -103,14 +103,14 @@ Now that our local Kubernetes playground is set up, let's explore the
103
103
installation of CloudNativePG.
104
104
105
105
To deploy the latest stable version, refer to the
106
-
[CloudNativePG documentation for instructions on installing the operator via Kubernetes manifests](https://cloudnative-pg.io/documentation/current/installation_upgrade/#directly-using-the-operator-manifest).
106
+
[CloudNativePG documentation for instructions on installing the operator via Kubernetes manifests](https://cloudnative-pg.io/docs/1.28/installation_upgrade/#directly-using-the-operator-manifest).
107
107
108
-
For instance, to install version 1.26.1, the latest available at the time of
108
+
For instance, to install version 1.28.0, the latest available at the time of
@@ -426,7 +426,7 @@ single database within a cluster. Rather than consolidating multiple databases
426
426
within a single Postgres cluster, the recommendation is to create distinct
427
427
clusters, each dedicated to a [microservice database]({{< relref "../20240228-maximizing-microservice-databases-with-k8s-postgres-cloudnativepg/index.md">}}).
428
428
Detailed insights into this strategy are available in our
0 commit comments