Skip to content

Commit 2c8ff0a

Browse files
github-actions[bot]NiccoloFei
authored andcommitted
Version tag to 1.20.2 (cloudnative-pg#2505)
Signed-off-by: Niccolò Fei <niccolo.fei@enterprisedb.com> Co-authored-by: Niccolò Fei <niccolo.fei@enterprisedb.com>
1 parent a9e4749 commit 2c8ff0a

File tree

3 files changed

+13220
-5
lines changed

3 files changed

+13220
-5
lines changed

docs/src/installation_upgrade.md

+2-2
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.20/releases/cnpg-1.20.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.2.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.20/releases/cnpg-1.20.1.yaml
15+
https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.20/releases/cnpg-1.20.2.yaml
1616
```
1717

1818
You can verify that with:

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.20.1"
23+
Version = "1.20.2"
2424

2525
// DefaultImageName is the default image used by the operator to create pods
2626
DefaultImageName = "ghcr.io/cloudnative-pg/postgresql:15.3"
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.20.1"
29+
DefaultOperatorImageName = "ghcr.io/cloudnative-pg/cloudnative-pg:1.20.2"
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.20.1"
39+
buildVersion = "1.20.2"
4040

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

0 commit comments

Comments
 (0)