From adb214f7f96e5653017e27621ebf637df82bd67c Mon Sep 17 00:00:00 2001 From: bsctl Date: Wed, 13 Jul 2022 22:19:15 +0000 Subject: [PATCH] feat(helm): change values description --- charts/capsule/README.md | 4 ++-- charts/capsule/values.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/capsule/README.md b/charts/capsule/README.md index df2cecde..086d1841 100644 --- a/charts/capsule/README.md +++ b/charts/capsule/README.md @@ -85,12 +85,12 @@ Here the values you can override: | Key | Type | Default | Description | |-----|------|---------|-------------| -| manager.hostNetwork | bool | `false` | Specifies if the container should be started in hostNetwork mode. Required for use in some managed kubernetes clusters (such as AWS EKS) with custom CNI (such as calico), because control-plane managed by AWS cannot communicate with pods' IP CIDR and admission webhooks are not working | +| manager.hostNetwork | bool | `false` | Specifies if the container should be started in hostNetwork mode. Required for use in some managed kubernetes clusters (such as AWS EKS) with custom CNI (such as calico), because control-plane managed by AWS cannot communicate with pods' IP CIDR and admission webhooks are not working | | manager.image.pullPolicy | string | `"IfNotPresent"` | Set the image pull policy. | | manager.image.repository | string | `"clastix/capsule"` | Set the image repository of the capsule. | | manager.image.tag | string | `""` | Overrides the image tag whose default is the chart appVersion. | | manager.imagePullSecrets | list | `[]` | Configuration for `imagePullSecrets` so that you can use a private images registry. | -| manager.kind | string | `"Deployment"` | Set the deployment mode as `Deployment` or `DaemonSet`. | +| manager.kind | string | `"Deployment"` | Set the controller deployment mode as `Deployment` or `DaemonSet`. | | manager.livenessProbe | object | `{"httpGet":{"path":"/healthz","port":10080}}` | Configure the liveness probe using Deployment probe spec | | manager.options.capsuleUserGroups | list | `["capsule.clastix.io"]` | Override the Capsule user groups | | manager.options.forceTenantPrefix | bool | `false` | Boolean, enforces the Tenant owner, during Namespace creation, to name it using the selected Tenant name as prefix, separated by a dash | diff --git a/charts/capsule/values.yaml b/charts/capsule/values.yaml index f5893d6b..ffc9c12e 100644 --- a/charts/capsule/values.yaml +++ b/charts/capsule/values.yaml @@ -5,7 +5,7 @@ # Manager Options manager: - # -- Set the deployment mode as `Deployment` or `DaemonSet`. + # -- Set the controller deployment mode as `Deployment` or `DaemonSet`. kind: Deployment image: @@ -196,4 +196,4 @@ serviceMonitor: # -- Set metricRelabelings for the endpoint of the serviceMonitor metricRelabelings: [] # -- Set relabelings for the endpoint of the serviceMonitor - relabelings: [] \ No newline at end of file + relabelings: []