Skip to content

Commit 008bb80

Browse files
Version tag to 1.20.0 (cloudnative-pg#1971)
Signed-off-by: Jaime Silvela <jaime.silvela@enterprisedb.com> Co-authored-by: Jaime Silvela <jaime.silvela@enterprisedb.com>
1 parent 41812c2 commit 008bb80

File tree

3 files changed

+12797
-6
lines changed

3 files changed

+12797
-6
lines changed

docs/src/installation_upgrade.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
The operator can be installed like any other resource in Kubernetes,
88
through a YAML manifest applied via `kubectl`.
99

10-
You can install the [latest operator manifest](https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.19/releases/cnpg-1.19.1.yaml)
10+
You can install the [latest operator manifest](https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.20/releases/cnpg-1.20.0.yaml)
1111
for this minor release as follows:
1212

1313
```sh
1414
kubectl apply -f \
15-
https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.19/releases/cnpg-1.19.1.yaml
15+
https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.20/releases/cnpg-1.20.0.yaml
1616
```
1717

1818
You can verify that with:
@@ -64,7 +64,7 @@ this minor release with:
6464

6565
```sh
6666
curl -sSfL \
67-
https://raw.githubusercontent.com/cloudnative-pg/artifacts/release-1.19/manifests/operator-manifest.yaml | \
67+
https://raw.githubusercontent.com/cloudnative-pg/artifacts/release-1.20/manifests/operator-manifest.yaml | \
6868
kubectl apply -f -
6969
```
7070

pkg/versions/versions.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ package versions
2020

2121
const (
2222
// Version is the version of the operator
23-
Version = "1.19.1"
23+
Version = "1.20.0"
2424

2525
// DefaultImageName is the default image used by the operator to create pods
2626
DefaultImageName = "ghcr.io/cloudnative-pg/postgresql:15.2"
2727

2828
// DefaultOperatorImageName is the default operator image used by the controller in the pods running PostgreSQL
29-
DefaultOperatorImageName = "ghcr.io/cloudnative-pg/cloudnative-pg:1.19.1"
29+
DefaultOperatorImageName = "ghcr.io/cloudnative-pg/cloudnative-pg:1.20.0"
3030
)
3131

3232
// BuildInfo is a struct containing all the info about the build
@@ -36,7 +36,7 @@ type BuildInfo struct {
3636

3737
var (
3838
// buildVersion injected during the build
39-
buildVersion = "1.19.1"
39+
buildVersion = "1.20.0"
4040

4141
// buildCommit injected during the build
4242
buildCommit = "none"

0 commit comments

Comments
 (0)