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

[bitnami/postgresql-ha] Update extendedConf related documentation #29497

Merged
merged 5 commits into from
Sep 19, 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
8 changes: 6 additions & 2 deletions bitnami/postgresql-ha/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 14.2.28 (2024-09-13)
## 14.2.29 (2024-09-19)

* [bitnami/postgresql-ha] Release 14.2.28 ([#29405](https://github.com/bitnami/charts/pull/29405))
* [bitnami/postgresql-ha] Update extendedConf related documentation ([#29497](https://github.com/bitnami/charts/pull/29497))

## <small>14.2.28 (2024-09-13)</small>

* [bitnami/postgresql-ha] Release 14.2.28 (#29405) ([f6fd3fc](https://github.com/bitnami/charts/commit/f6fd3fc9cc4ba12843e4364d04575f97b7db180a)), closes [#29405](https://github.com/bitnami/charts/issues/29405)

## <small>14.2.27 (2024-09-10)</small>

Expand Down
2 changes: 1 addition & 1 deletion bitnami/postgresql-ha/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ maintainers:
name: postgresql-ha
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/postgresql-ha
version: 14.2.28
version: 14.2.29
8 changes: 4 additions & 4 deletions bitnami/postgresql-ha/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -483,8 +483,8 @@ A default `StorageClass` is needed in the Kubernetes cluster to dynamically prov
| `postgresql.configuration` | PostgreSQL configuration | `""` |
| `postgresql.pgHbaConfiguration` | PostgreSQL client authentication configuration | `""` |
| `postgresql.configurationCM` | Name of existing ConfigMap with configuration files | `""` |
| `postgresql.extendedConf` | Extended PostgreSQL configuration (appended to main or default configuration). Implies `volumePermissions.enabled`. | `""` |
| `postgresql.extendedConfCM` | ConfigMap with PostgreSQL extended configuration | `""` |
| `postgresql.extendedConf` | Extended PostgreSQL configuration (requires `volumePermissions.enabled` to be `true`) | `""` |
| `postgresql.extendedConfCM` | ConfigMap with PostgreSQL extended configuration (requires `volumePermissions.enabled` to be `true`) | `""` |
| `postgresql.initdbScripts` | Dictionary of initdb scripts | `{}` |
| `postgresql.initdbScriptsCM` | ConfigMap with scripts to be run at first boot | `""` |
| `postgresql.initdbScriptsSecret` | Secret with scripts to be run at first boot | `""` |
Expand Down Expand Up @@ -596,8 +596,8 @@ A default `StorageClass` is needed in the Kubernetes cluster to dynamically prov
| `witness.configuration` | PostgreSQL configuration | `""` |
| `witness.pgHbaConfiguration` | PostgreSQL client authentication configuration | `""` |
| `witness.configurationCM` | Name of existing ConfigMap with configuration files | `""` |
| `witness.extendedConf` | Extended PostgreSQL configuration (appended to main or default configuration). Implies `volumePermissions.enabled`. | `""` |
| `witness.extendedConfCM` | ConfigMap with PostgreSQL extended configuration | `""` |
| `witness.extendedConf` | Extended PostgreSQL configuration (requires `volumePermissions.enabled` to be `true`) | `""` |
| `witness.extendedConfCM` | ConfigMap with PostgreSQL extended configuration (requires `volumePermissions.enabled` to be `true`) | `""` |
| `witness.initdbScripts` | Dictionary of initdb scripts | `{}` |
| `witness.initdbScriptsCM` | ConfigMap with scripts to be run at first boot | `""` |
| `witness.initdbScriptsSecret` | Secret with scripts to be run at first boot | `""` |
Expand Down
12 changes: 6 additions & 6 deletions bitnami/postgresql-ha/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ postgresql:
## NOTE: This will override postgresql.repmgrConfiguration, postgresql.configuration and postgresql.pgHbaConfiguration
##
configurationCM: ""
## @param postgresql.extendedConf Extended PostgreSQL configuration (appended to main or default configuration). Implies `volumePermissions.enabled`.
## @param postgresql.extendedConf Extended PostgreSQL configuration (requires `volumePermissions.enabled` to be `true`)
## Similar to postgresql.configuration, but _appended_ to the main configuration
## ref: https://github.com/bitnami/containers/tree/main/bitnami/postgresql-repmgr#allow-settings-to-be-loaded-from-files-other-than-the-default-postgresqlconf
## Example:
Expand All @@ -636,8 +636,8 @@ postgresql:
## ...
##
extendedConf: ""
## @param postgresql.extendedConfCM ConfigMap with PostgreSQL extended configuration
## NOTE: This will override postgresql.extendedConf and implies `volumePermissions.enabled`
## @param postgresql.extendedConfCM ConfigMap with PostgreSQL extended configuration (requires `volumePermissions.enabled` to be `true`)
## NOTE: This will override postgresql.extendedConf
##
extendedConfCM: ""
## @param postgresql.initdbScripts Dictionary of initdb scripts
Expand Down Expand Up @@ -1079,7 +1079,7 @@ witness:
## NOTE: This will override witness.repmgrConfiguration, witness.configuration and witness.pgHbaConfiguration
##
configurationCM: ""
## @param witness.extendedConf Extended PostgreSQL configuration (appended to main or default configuration). Implies `volumePermissions.enabled`.
## @param witness.extendedConf Extended PostgreSQL configuration (requires `volumePermissions.enabled` to be `true`)
## Similar to witness.configuration, but _appended_ to the main configuration
## ref: https://github.com/bitnami/containers/tree/main/bitnami/postgresql-repmgr#allow-settings-to-be-loaded-from-files-other-than-the-default-postgresqlconf
## Example:
Expand All @@ -1089,8 +1089,8 @@ witness:
## ...
##
extendedConf: ""
## @param witness.extendedConfCM ConfigMap with PostgreSQL extended configuration
## NOTE: This will override witness.extendedConf and implies `volumePermissions.enabled`
## @param witness.extendedConfCM ConfigMap with PostgreSQL extended configuration (requires `volumePermissions.enabled` to be `true`)
## NOTE: This will override witness.extendedConf
##
extendedConfCM: ""
## @param witness.initdbScripts Dictionary of initdb scripts
Expand Down
Loading