Skip to content

Commit 5a893b1

Browse files
committed
Remove CentOS References from Docs
1 parent 257cda0 commit 5a893b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content/tutorial/update-cluster.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The Postgres image is referenced using the `spec.image` and looks similar to the
1717

1818
```
1919
spec:
20-
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-14.2-0
20+
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.2-0
2121
```
2222

2323
Diving into the tag a bit further, you will notice the `14.2-0` portion. This represents the Postgres minor version (`14.2`) and the patch number of the release `0`. If the patch number is incremented (e.g. `14.2-1`), this means that the container is rebuilt, but there are no changes to the Postgres version. If the minor version is incremented (e.g. `14.2-0`), this means that there is a newer bug fix release of Postgres within the container.
@@ -26,7 +26,7 @@ To update the image, you just need to modify the `spec.image` field with the new
2626

2727
```
2828
spec:
29-
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-14.2-1
29+
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.2-1
3030
```
3131

3232
You can apply the changes using `kubectl apply`. Similar to the rolling update example when we [resized the cluster]({{< relref "./resize-cluster.md" >}}), the update is first applied to the Postgres replicas, then a controlled switchover occurs, and the final instance is updated.

0 commit comments

Comments
 (0)