Skip to content

Commit

Permalink
Version tag to 1.15.2 (#377)
Browse files Browse the repository at this point in the history
Closes #378

Signed-off-by: Leonardo Cecchi <leonardo.cecchi@enterprisedb.com>
  • Loading branch information
github-actions[bot] committed Jul 7, 2022
1 parent 9bb4f09 commit 39d0032
Show file tree
Hide file tree
Showing 3 changed files with 11,007 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/src/installation_upgrade.md
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/main/releases/cnpg-1.15.1.yaml)
You can install the [latest operator manifest](https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/main/releases/cnpg-1.15.2.yaml)
as follows:

```sh
kubectl apply -f \
https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/main/releases/cnpg-1.15.1.yaml
https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/main/releases/cnpg-1.15.2.yaml
```

Once you have run the `kubectl` command, CloudNativePG will be installed in your Kubernetes cluster.
Expand Down
6 changes: 3 additions & 3 deletions pkg/versions/versions.go
Expand Up @@ -20,13 +20,13 @@ package versions

const (
// Version is the version of the operator
Version = "1.15.1"
Version = "1.15.2"

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

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

// 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.15.1"
buildVersion = "1.15.2"

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

0 comments on commit 39d0032

Please sign in to comment.