From 5fc9e70318c08c263fdf009ffa99f84a4a258dc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20No=C3=ABl?= Date: Tue, 24 Sep 2024 19:22:56 -0400 Subject: [PATCH] Clean up rename --- README.md | 2 +- charts/paradedb/README.md | 6 +++--- charts/paradedb/README.md.gotmpl | 2 +- charts/paradedb/values.schema.json | 4 ++-- charts/paradedb/values.yaml | 2 ++ 5 files changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index d116adc70..b885da8f3 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ helm upgrade --install paradedb \ --namespace paradedb-database \ --create-namespace \ --values values.yaml \ -paradedb/cluster +paradedb/paradedb ``` Refer to the [CloudNativePG Cluster Chart documentation](charts/paradedb/README.md) for advanced configuration options. diff --git a/charts/paradedb/README.md b/charts/paradedb/README.md index 64d064c4c..e553893a6 100644 --- a/charts/paradedb/README.md +++ b/charts/paradedb/README.md @@ -1,4 +1,4 @@ -# CloudNativePG Cluster +# ParadeDB CloudNativePG Cluster This README documents the Helm chart for deploying and managing [ParadeDB](https://github.com/paradedb/paradedb) on Kubernetes via [CloudNativePG](https://cloudnative-pg.io/), including advanced settings. @@ -40,7 +40,7 @@ helm upgrade --install paradedb \ --namespace paradedb-database \ --create-namespace \ --values values.yaml \ -paradedb/cluster +paradedb/paradedb ``` A more detailed guide can be found in the [Getting Started docs](<./docs/Getting Started.md>). @@ -230,7 +230,7 @@ refer to the [CloudNativePG Documentation](https://cloudnative-pg.io/documentat | recovery.secret.create | bool | `true` | Whether to create a secret for the backup credentials | | recovery.secret.name | string | `""` | Name of the backup credentials secret | | type | string | `"paradedb"` | Type of the CNPG database. Available types: * `paradedb` | -| version.paradedb | string | `"0.10.0"` | The ParadeDB version, set in the publish CI workflow from the latest paradedb/paradedb GitHub tag | +| version.paradedb | string | `"0.10.0"` | ParadeDB defaults to v0.10.0 for testing and local development | | version.postgresql | string | `"16"` | PostgreSQL major version to use | ## Maintainers diff --git a/charts/paradedb/README.md.gotmpl b/charts/paradedb/README.md.gotmpl index e79c99379..2c403782a 100644 --- a/charts/paradedb/README.md.gotmpl +++ b/charts/paradedb/README.md.gotmpl @@ -44,7 +44,7 @@ helm upgrade --install paradedb \ --namespace paradedb-database \ --create-namespace \ --values values.yaml \ -paradedb/cluster +paradedb/paradedb ``` A more detailed guide can be found in the [Getting Started docs](<./docs/Getting Started.md>). diff --git a/charts/paradedb/values.schema.json b/charts/paradedb/values.schema.json index 9c4c75c79..7a19fc41b 100644 --- a/charts/paradedb/values.schema.json +++ b/charts/paradedb/values.schema.json @@ -588,10 +588,10 @@ "version": { "type": "object", "properties": { - "postgresql": { + "paradedb": { "type": "string" }, - "paradedb": { + "postgresql": { "type": "string" } } diff --git a/charts/paradedb/values.yaml b/charts/paradedb/values.yaml index e154903c4..aa5877925 100644 --- a/charts/paradedb/values.yaml +++ b/charts/paradedb/values.yaml @@ -242,8 +242,10 @@ cluster: # -- PostgreSQL Host Based Authentication rules (lines to be appended to the pg_hba.conf file) pg_hba: [] # - host all all 10.244.0.0/16 md5 + # -- PostgreSQL User Name Maps rules (lines to be appended to the pg_ident.conf file) pg_ident: [] # - mymap /^(.*)@mydomain\.com$ \1 + # -- Lists of shared preload libraries to add to the default ones shared_preload_libraries: [] # - pgaudit