Skip to content

Commit b8917c9

Browse files
committed
docs: repair links to point to docs/devel
1 parent 79443c2 commit b8917c9

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

content/blog/customizing-hcl/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ uploaded there instead of the `localhost:5000` registry used in the
150150
### Step 3: Use it
151151

152152
The only missing step to use the images is to update your
153-
[Image Catalog / Cluster Image Catalog](https://cloudnative-pg.io/documentation/current/image_catalog/)
153+
[Image Catalog / Cluster Image Catalog](https://cloudnative-pg.io/docs/devel/image_catalog/)
154154
with the newly built images.
155155
Test them and stage them through your environment.
156156

content/blog/developing-webapps-with-cloudnative-pg/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ There are two powerful reasons:
3939

4040
1. It makes available a lot of powerful components built by the Kubernetes
4141
community. For example, in the
42-
[Quickstart guide](http://cloudnative-pg.io/documentation/current/quickstart/)
42+
[Quickstart guide](http://cloudnative-pg.io/docs/devel/quickstart/)
4343
for CloudNativePG you will find a section that takes you through installing
4444
the [Prometheus Operator](https://prometheus-operator.dev), with a
4545
[Grafana](https://grafana.com) dashboard to get metrics for your database.
@@ -77,7 +77,7 @@ Here's the game plan:
7777
### Hands-on
7878

7979
If you don't yet have a local Kubernetes cluster, please refer to the
80-
[Quickstart guide](http://cloudnative-pg.io/documentation/current/quickstart/).
80+
[Quickstart guide](http://cloudnative-pg.io/docs/devel/quickstart/).
8181
You will need `kind` installed, as well as `kubectl` and `docker`.
8282
If you want to run and compile the webapp locally to kick the tires, you will
8383
also need the [Go compiler](https://go.dev) - though this is not necessary if
@@ -105,7 +105,7 @@ several worker nodes with KinD.
105105
#### CloudNativePG operator
106106

107107
Now let's install the CloudNativePG operator. As explained in the
108-
[installation document](https://cloudnative-pg.io/documentation/current/installation_upgrade/),
108+
[installation document](https://cloudnative-pg.io/docs/devel/installation_upgrade/),
109109
you can deploy it by applying the latest manifest.
110110
At the time of this writing, this is version 1.20.1:
111111

@@ -159,7 +159,7 @@ kubectl apply -f \
159159
This YAML is part of a set of example cluster manifests provided with
160160
CloudNativePG that show off various features and are ready to deploy.
161161
You can find out more
162-
[in the CloudNativePG documentation](https://cloudnative-pg.io/documentation/current/samples/).
162+
[in the CloudNativePG documentation](https://cloudnative-pg.io/docs/devel/samples/).
163163

164164
In a few seconds, you should have the PostgreSQL cluster `cluster-example` up
165165
and ready. It is a 3-instance cluster, with a primary and two hot-standbys.
@@ -379,7 +379,7 @@ saw the possibility of doing port-forwarding. Port-forwarding could be used to
379379
expose one or more of the CloudNativePG services over regular TCP ports.
380380
Credentials too would be handled without much trouble.
381381

382-
For further information, please refer to the [use cases discussion](https://cloudnative-pg.io/documentation/current/use_cases/).
382+
For further information, please refer to the [use cases discussion](https://cloudnative-pg.io/docs/devel/use_cases/).
383383

384384
### Where to go from here
385385

@@ -419,12 +419,12 @@ are tradeoffs that you can now explore meaningfully at development time.
419419
You could add connection pooling. CloudNativePG offers support out of the
420420
box for [PgBouncer](https://www.pgbouncer.org/) through the `Pooler` resource.
421421
You can find more information in the
422-
[connection pooling document](https://cloudnative-pg.io/documentation/current/connection_pooling/).
422+
[connection pooling document](https://cloudnative-pg.io/docs/devel/connection_pooling/).
423423

424424
There's a lot of power to experiment and iterate through your system design.
425425

426426
We mentioned in the beginning that the
427-
[quickstart guide](http://cloudnative-pg.io/documentation/current/quickstart/)
427+
[quickstart guide](http://cloudnative-pg.io/docs/devel/quickstart/)
428428
takes you through adding Prometheus / Grafana monitoring for your database
429429
cluster. It would not be difficult to publish Prometheus metrics for your
430430
webserver too, and have a dashboard for your full system.

content/blog/hasura-graphql/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ for details.
3939
## Installing CloudNativePG
4040

4141
To install CloudNativePG, we'll follow the [installation and
42-
upgrade](https://cloudnative-pg.io/documentation/current/installation_upgrade/)
42+
upgrade](https://cloudnative-pg.io/docs/devel/installation_upgrade/)
4343
section of the CloudNativePG website.
4444

4545
At the time of writing, the latest version is 1.20. The following

content/blog/migrations-with-atlas-and-cloudnativepg/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Let's see an example of how to do that:
4343
First of all, you should have CloudNativePG running on your kubernetes cluster,
4444
and a Postgres cluster created with CloudNativePG.
4545
If you don't yet have this, you can follow the
46-
[CloudNativePG quickstart](https://cloudnative-pg.io/documentation/current/quickstart/).
46+
[CloudNativePG quickstart](https://cloudnative-pg.io/docs/devel/quickstart/).
4747

4848
Whether you follow the quickstart or you already had a CloudNativePG/Postgres
4949
cluster up and running, we'll assume for the rest of this post that your

content/blog/postgresql-16-beta1/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ PostgreSQL 16beta1 (Debian 16~beta1-2.pgdg110+1) on x86_64-pc-linux-gnu,
5858

5959
If you are interested in trying CloudNativePG on your laptop with 'kind'
6060
(Kubernetes in Docker), follow the instructions you find in the
61-
[Quickstart](https://cloudnative-pg.io/documentation/current/quickstart/).
61+
[Quickstart](https://cloudnative-pg.io/docs/devel/quickstart/).
6262

6363
One last note: at the moment, PGAudit is not compatible with PostgreSQL 16
6464
and cannot be used with the operator. There's a

layouts/_partials/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<h3 class="text-3xl font-semibold mb-0">Learn</h3>
1010
<div class="space-y-2 text-base text-red-500">
1111
<div><a href="/docs" class="hover:text-red-700 transition">Documentation</a></div>
12-
<div><a href="https://cloudnative-pg.io/documentation/current/quickstart/"
12+
<div><a href="https://cloudnative-pg.io/docs/devel/quickstart/"
1313
class="hover:text-red-600 transition">Quickstart Guide</a></div>
1414
<div><a href="/tags/tutorial" class="hover:text-red-600 transition">Tutorials</a></div>
1515
</div>

0 commit comments

Comments
 (0)