From db6a2c6597457148315f193b1b6eee395104ba1b Mon Sep 17 00:00:00 2001 From: groundhog2k <10630407+groundhog2k@users.noreply.github.com> Date: Sun, 13 Dec 2020 15:46:29 +0100 Subject: [PATCH] Improved readme (#133) --- charts/redis/Chart.yaml | 2 +- charts/redis/README.md | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/charts/redis/Chart.yaml b/charts/redis/Chart.yaml index d9e091a3..b86f8c1a 100644 --- a/charts/redis/Chart.yaml +++ b/charts/redis/Chart.yaml @@ -8,7 +8,7 @@ maintainers: - name: groundhog2k # This is the chart version -version: 0.2.1 +version: 0.2.2 # This is the version number of the application being deployed. appVersion: "6.0.9" diff --git a/charts/redis/README.md b/charts/redis/README.md index ddc160c4..17db6617 100644 --- a/charts/redis/README.md +++ b/charts/redis/README.md @@ -1,6 +1,6 @@ # Redis -   +   A Helm chart for Redis on Kubernetes @@ -61,8 +61,8 @@ $ helm uninstall my-release | podAnnotations | object | `{}` | Additional pod annotations | | podSecurityContext | object | `{}` | Pod security context | | securityContext | object | `see values.yaml` | Container security context | -| env | object | `[]` | Additional container environmment variables | -| args | object | `[]` | Additional container command arguments | +| env | list | `[]` | Additional container environmment variables | +| args | list | `[]` | Additional container command arguments | | serviceAccount.annotations | object | `{}` | Additional service account annotations | | serviceAccount.create | bool | `false` | Enable service account creation | | serviceAccount.name | string | `""` | Name of the service account | @@ -73,7 +73,10 @@ $ helm uninstall my-release | Key | Type | Default | Description | |-----|------|---------|-------------| +| service.type | string | `"ClusterIP"` | Service type | | service.port | int | `6379` | Redis 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