File tree 3 files changed +12797
-6
lines changed
3 files changed +12797
-6
lines changed Original file line number Diff line number Diff line change 7
7
The operator can be installed like any other resource in Kubernetes,
8
8
through a YAML manifest applied via ` kubectl ` .
9
9
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 )
11
11
for this minor release as follows:
12
12
13
13
``` sh
14
14
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
16
16
```
17
17
18
18
You can verify that with:
@@ -64,7 +64,7 @@ this minor release with:
64
64
65
65
``` sh
66
66
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 | \
68
68
kubectl apply -f -
69
69
```
70
70
Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ package versions
20
20
21
21
const (
22
22
// Version is the version of the operator
23
- Version = "1.19.1 "
23
+ Version = "1.20.0 "
24
24
25
25
// DefaultImageName is the default image used by the operator to create pods
26
26
DefaultImageName = "ghcr.io/cloudnative-pg/postgresql:15.2"
27
27
28
28
// 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 "
30
30
)
31
31
32
32
// BuildInfo is a struct containing all the info about the build
@@ -36,7 +36,7 @@ type BuildInfo struct {
36
36
37
37
var (
38
38
// buildVersion injected during the build
39
- buildVersion = "1.19.1 "
39
+ buildVersion = "1.20.0 "
40
40
41
41
// buildCommit injected during the build
42
42
buildCommit = "none"
You can’t perform that action at this time.
0 commit comments