Skip to content

Commit

Permalink
Version tag to 1.24.0-rc1 (#39)
Browse files Browse the repository at this point in the history
Signed-off-by: Niccolò Fei <[email protected]>
Co-authored-by: Niccolò Fei <[email protected]>
  • Loading branch information
github-actions[bot] and NiccoloFei authored Jun 24, 2024
1 parent 674506e commit 3475f5f
Show file tree
Hide file tree
Showing 3 changed files with 16,167 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/src/installation_upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
The operator can be installed like any other resource in Kubernetes,
through a YAML manifest applied via `kubectl`.

You can install the [latest operator manifest](https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.23/releases/cnpg-1.23.2.yaml)
You can install the [latest operator manifest](https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/main/releases/cnpg-1.24.0-rc1.yaml)
for this minor release as follows:

```sh
kubectl apply --server-side -f \
https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.23/releases/cnpg-1.23.2.yaml
https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/main/releases/cnpg-1.24.0-rc1.yaml
```

You can verify that with:
Expand Down Expand Up @@ -72,7 +72,7 @@ specific minor release, you can just run:

```sh
curl -sSfL \
https://raw.githubusercontent.com/cloudnative-pg/artifacts/release-1.23/manifests/operator-manifest.yaml | \
https://raw.githubusercontent.com/cloudnative-pg/artifacts/main/manifests/operator-manifest.yaml | \
kubectl apply --server-side -f -
```

Expand Down
6 changes: 3 additions & 3 deletions pkg/versions/versions.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ package versions

const (
// Version is the version of the operator
Version = "1.23.2"
Version = "1.24.0-rc1"

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

// DefaultOperatorImageName is the default operator image used by the controller in the pods running PostgreSQL
DefaultOperatorImageName = "ghcr.io/cloudnative-pg/cloudnative-pg:1.23.2"
DefaultOperatorImageName = "ghcr.io/cloudnative-pg/cloudnative-pg:1.24.0-rc1"
)

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

var (
// buildVersion injected during the build
buildVersion = "1.23.2"
buildVersion = "1.24.0-rc1"

// buildCommit injected during the build
buildCommit = "none"
Expand Down
Loading

0 comments on commit 3475f5f

Please sign in to comment.