Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

K8SPG-497 - Update pg-db and pg-operator charts for 2.3.1 release #283

Merged
merged 1 commit into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/pg-db/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: pg-db
description: 'A Helm chart to deploy the PostgreSQL database with the Percona Operator for PostgreSQL'
type: application
version: 2.3.1
appVersion: 2.3.0
version: 2.3.2
appVersion: 2.3.1
home: https://docs.percona.com/percona-operator-for-postgresql/2.0/
maintainers:
- name: tplavcic
Expand Down
8 changes: 4 additions & 4 deletions charts/pg-db/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ To install the chart with the `pg` release name using a dedicated namespace (rec

```sh
helm repo add percona https://percona.github.io/percona-helm-charts/
helm install my-db percona/pg-db --version 2.3.0 --namespace my-namespace
helm install my-db percona/pg-db --version 2.3.1 --namespace my-namespace
```

The chart can be customized using the following configurable parameters:

| Parameter | Description | Default |
| ------------------------------- | ------------------------------------------------------------------------------|-------------------------------------------------------------|
| `finalizers` | Finalizers list | `{}` |
| `crVersion` | CR Cluster Manifest version | `2.3.0` |
| `crVersion` | CR Cluster Manifest version | `2.3.1` |
| `repository` | PostgreSQL container image repository | `percona/percona-postgresql-operator` |
| `image` | Postgres image | `percona/percona-postgresql-operator:2.3.0-ppg16-postgres` |
| `image` | Postgres image | `percona/percona-postgresql-operator:2.3.1-ppg16-postgres` |
| `imagePullPolicy` | image Pull Policy | `Always` |
| `port` | PostgreSQL port | `5432` |
| `postgresVersion` | PostgreSQL container version tag | `16` |
Expand Down Expand Up @@ -116,7 +116,7 @@ The chart can be customized using the following configurable parameters:
| `backups.restore.enabled` | Enables or disables restoring a previously made backup | `false` |
| `backups.restore.repoName` | Name of the pgBackRest repository that contains the backup to be restored | `repo1` |
| `backups.restore.options` | The pgBackRest command-line options for the pgBackRest restore command | `--type=time` |
| `backups.pgbackrest.image` | Set this variable if you need to use a custom pgBackrest image | `percona/percona-postresql-operator:2.3.0-ppg16-pgbackrest` |
| `backups.pgbackrest.image` | Set this variable if you need to use a custom pgBackrest image | `percona/percona-postresql-operator:2.3.1-ppg16-pgbackrest` |
| `backups.repos.repo2.s3.bucket` | Storage bucket | `` |
| `backups.repos.repo2.s3.region` | S3-compatible storage name | `` |
| `backups.repos.repo2.s3.endpoint` | S3-compatible storage endpoint | `` |
Expand Down
4 changes: 2 additions & 2 deletions charts/pg-db/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ finalizers:
# Set this if you want that operator deletes the ssl objects on cluster deletion
# - percona.com/delete-ssl

crVersion: 2.3.0
crVersion: 2.3.1
repository: registry-1.percona.com/percona/percona-postgresql-operator
image: ""
imagePullPolicy: Always
Expand Down Expand Up @@ -284,7 +284,7 @@ pmm:
# work_mem: 2MB
#
# extensions:
# image: percona/percona-postgresql-operator:2.3.0
# image: percona/percona-postgresql-operator:2.3.1
# imagePullPolicy: Always
# storage:
# type: s3
Expand Down
4 changes: 2 additions & 2 deletions charts/pg-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: pg-operator
description: 'A Helm chart to deploy the Percona Operator for PostgreSQL'
type: application
version: 2.3.2
appVersion: 2.3.0
version: 2.3.3
appVersion: 2.3.1
home: https://docs.percona.com/percona-operator-for-postgresql/2.0/
maintainers:
- name: tplavcic
Expand Down
4 changes: 2 additions & 2 deletions charts/pg-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Chart.

| Parameter | Description | Default |
| ------------------------------- | ------------------------------------------------------------------------| -------------------------------------------------|
| `image` | PG Operator Container image full path | `percona/percona-postgresql-operator:2.3.0` |
| `image` | PG Operator Container image full path | `percona/percona-postgresql-operator:2.3.1` |
| `imagePullPolicy` | PG Operator Container pull policy | `Always`|
| `resources` | Resource requests and limits | `{}` |
| `nodeSelector` | Labels for Pod assignment | `{}` |
Expand All @@ -49,7 +49,7 @@ Chart.
To deploy Percona Operator for PostgreSQL cluster with disabled telemetry run the following command:

```sh
helm install my-db percona/pg-db --version 2.3.0 --namespace my-namespace
helm install my-db percona/pg-db --version 2.3.1 --namespace my-namespace
```

See more about Percona Operator for PostgreSQL deployment in its chart [here](https://github.com/percona/percona-helm-charts/tree/main/charts/pg-db) or in the [Helm chart installation guide](https://www.percona.com/doc/kubernetes-operator-for-postgresql/helm.html).