From 9f81a23676c2e91d35991fc6c57b03ff9a6b1a70 Mon Sep 17 00:00:00 2001 From: groundhog2k <10630407+groundhog2k@users.noreply.github.com> Date: Sun, 13 Dec 2020 15:49:24 +0100 Subject: [PATCH] Improved readme (#134) --- charts/postgres/Chart.yaml | 2 +- charts/postgres/README.md | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/charts/postgres/Chart.yaml b/charts/postgres/Chart.yaml index fd3cf305..245b5d2f 100644 --- a/charts/postgres/Chart.yaml +++ b/charts/postgres/Chart.yaml @@ -7,6 +7,6 @@ type: application maintainers: - name: groundhog2k -version: 0.2.1 +version: 0.2.2 appVersion: "13.1" diff --git a/charts/postgres/README.md b/charts/postgres/README.md index 5f0031f0..c73210de 100644 --- a/charts/postgres/README.md +++ b/charts/postgres/README.md @@ -1,6 +1,6 @@ # PostgreSQL -   +   A Helm chart for PostgreSQL on Kubernetes @@ -63,7 +63,7 @@ $ helm uninstall my-release | podSecurityContext | object | `see values.yaml` | Pod security context | | securityContext | object | `see values.yaml` | Container security context | | env | list | `[]` | Additional container environmment variables | -| args | string | `[]` | Arguments for the container entrypoint process | +| args | list | `[]` | Arguments for the container entrypoint process | | serviceAccount.annotations | object | `{}` | Additional service account annotations | | serviceAccount.create | bool | `false` | Enable service account creation | | serviceAccount.name | string | `""` | Name of the service account | @@ -74,7 +74,10 @@ $ helm uninstall my-release | Key | Type | Default | Description | |-----|------|---------|-------------| +| service.type | string | `"ClusterIP"` | Service type | | service.port | int | `5432` | PostreSQL service port | +| service.nodePort | int | `nil` | Service node port (only relevant for type NodePort) | +| service.clusterIP | string | `nil` | Service cluster IP (only relevant for type LoadBalancer) | ## Storage parameters -- GitLab