Skip to content

Releases: cloudnative-pg/charts

cluster-v0.2.1

02 Feb 03:55
b7fe14f
Compare
Choose a tag to compare

Deploys and manages a CloudNativePG cluster and its associated resources.

What's Changed

  • chore(deps): update helm/chart-testing-action action to v2.7.0 by @renovate in #497
  • chore(deps): update helm/chart-releaser-action action to v1.7.0 by @renovate in #496
  • fix: use consistent namespace templating by @bwdmr in #481
  • chore(deps): update actions/setup-python action to v5.4.0 by @renovate in #504
  • Add configuration options for cluster services to chart by @RaicuRobert in #478
  • Release cluster-v0.2.1 by @github-actions in #508

New Contributors

Full Changelog: cluster-v0.2.0...cluster-v0.2.1

cluster-v0.2.0

07 Jan 17:56
dc3137e
Compare
Choose a tag to compare

Deploys and manages a CloudNativePG cluster and its associated resources.

What's Changed

  • Fix readme to redirect to the cluster recovery by @JensPauwels in #485
  • Feature: support backup.barmanObjectStore.s3Credentials.inheritFromIAMRole by @jessebot in #488

New Contributors

Full Changelog: cluster-v0.1.3...cluster-v0.2.0

cloudnative-pg-v0.23.0

23 Dec 17:30
037bb1a
Compare
Choose a tag to compare

CloudNativePG Operator Helm Chart

What's Changed

  • fix(cnpg): syntax error in deployment template prevents config.clusterWide from working by @mrksngl in #473
  • Release cloudnative-pg-v1.25.0 by @github-actions in #477

New Contributors

Full Changelog: cloudnative-pg-v0.23.0-rc1...cloudnative-pg-v0.23.0

cloudnative-pg-v0.23.0-rc1

18 Dec 16:05
4801848
Compare
Choose a tag to compare

CloudNativePG Operator Helm Chart

What's Changed

  • CloudNativePG 1.25.0-rc1
  • feat(cloudnative-pg): add support for dual stack clusters by @M0NsTeRRR in #250

New Contributors

Full Changelog: cloudnative-pg-v0.22.1...cloudnative-pg-v0.23.0-rc1

cluster-v0.1.3

17 Dec 18:29
afa1273
Compare
Choose a tag to compare

Deploys and manages a CloudNativePG cluster and its associated resources.

What's Changed

  • Bug Fix: namespaceOverride template error in Scheduled Backups by @itay-grudev in #471

Full Changelog: cluster-v0.1.2...cluster-v0.1.3

cluster-v0.1.2

17 Dec 13:16
68b5b94
Compare
Choose a tag to compare

Deploys and manages a CloudNativePG cluster and its associated resources.

What's Changed

New Contributors

Full Changelog: cluster-v0.1.1...cluster-v0.1.2

cluster-v0.1.1

07 Dec 17:03
8f5349c
Compare
Choose a tag to compare

Deploys and manages a CloudNativePG cluster and its associated resources.

What's Changed

  • fix(cluster): correct CNPGClusterOffline rule description by @mymasse in #429
  • feat: support cnpg operator namespace-restricted installation by @NiccoloFei in #430
  • Adds serviceAccountTemplate to cluster configuration for IAM support by @itay-grudev in #463
  • feat(cluster): added support for enablePDB option by @mbugeia in #431
  • add PGDBNAME to database-ping-test by @UgurcanAkkok in #369

New Contributors

Full Changelog: cluster-v0.1.0...cluster-v0.1.1

cluster-v0.1.0

24 Oct 16:13
3c5dd5d
Compare
Choose a tag to compare

Important

This version introduces some breaking changes. Refer to the migration guide below.

Deploys and manages a CloudNativePG cluster and its associated resources.

What's Changed

Migration Guide

Specifying PostgreSQL major version

The PostgreSQL major version is now controlled via the version.postgresql parameter. Defaults to 16. It's used when you haven't specified your own cluster.imageName or cluster.imageCatalogRef. You may need to explicitly specify it if that's the case for you.

version:
  postgresql: 15

PostgreSQL parameters

The PostgreSQL parameters have been moved from cluster.postgresql to cluster.postgresql.parameters.

Before:

cluster:
  postgresql:
    max_connections: 300

After:

cluster:
  postgresql:
    parameters:
      max_connections: 300

Multiple Poolers

The pooler parameter is not longer supported. Instead you should use: poolers, which represents a list of poolers.

Before:

pooler:
  enabled: true
  type: rw
  poolMode: transaction

After:

poolers:
  - name: rw
    type: rw
    poolMode: transaction

Pooler poolMode

The Pooler poolMode is now session by default instead of transaction. Look at the example above and explicitly set it if required. Session is the safest most-polite connection pooling method.

New Contributors

Full Changelog: cloudnative-pg-v0.22.1...cluster-v0.1.0

cloudnative-pg-v0.22.1

17 Oct 11:47
90299d6
Compare
Choose a tag to compare

CloudNativePG Operator Helm Chart

What's Changed

  • Release cloudnative-pg-v0.22.1 by @github-actions in #418

Full Changelog: cluster-v0.0.11...cloudnative-pg-v0.22.1

cluster-v0.0.11

03 Sep 10:04
b0b08c5
Compare
Choose a tag to compare

Important

The next minor version of the cluster chart will contain breaking changes. This will be the last version with the current API.

What's Changed

  • Added a walStorage.enabled flag disabled by default to retain backwards compatibility by @brinnjoyce in #367

New Contributors

Full Changelog: cluster-v0.0.10...cluster-v0.0.11