Commit ded3bcb6 authored by Jack Zampolin's avatar Jack Zampolin

Add descriptiveness for Chronograf config

parent a16c4076
...@@ -44,27 +44,27 @@ The command removes all the Kubernetes components associated with the chart and ...@@ -44,27 +44,27 @@ The command removes all the Kubernetes components associated with the chart and
## Configuration ## Configuration
The following tables lists the configurable parameters of the Chronograf chart and The following tables lists the configurable parameters of the Chronograf chart and
their default values. their descriptions. The default values can be seen in `values.yaml`:
```yaml ```yaml
image.repository: "quay.io/influxdb/chronograf" image.repository: Docker image repository
image.tag: "latest" image.tag: Docker image tag
image.pullPolicy: "Always" image.pullPolicy: Kubernetes image pull policy
service.type: LoadBalancer service.type: Service type for Chronograf
persistence.enabled: false persistence.enabled: Enable persistent storage for Chronograf server
persistence.storageClass: generic persistence.storageClass: storage class for the persistent volume
persistence.accessMode: ReadWriteOnce persistence.accessMode: Access mode for persistent volume
persistence.size: 8Gi persistence.size: Size of persistent volume
resources.requests.memory: 256Mi resources.requests.memory: Min memory used by the deployment
resources.requests.cpu: 0.1 resources.requests.cpu: Min cpu used by the deployment
resources.limits.memory: 2Gi resources.limits.memory: Max memory used by the deployment
resources.limits.cpu: 2 resources.limits.cpu: Max cpu used by the deployment
# Use this ingress with service.type: NodePort # Use this ingress with service.type: NodePort
ingress.enabled: false ingress.enabled: Toggle to enable/disable ingress
ingress.tls: false ingress.tls: Enable tls on the ingress resource
ingress.hostname: chronograf.foobar.com ingress.hostname: fqdn to expose ingess
ingress.annotations: ingress.annotations: Use this to add any annotations to the ingress
ingress.annotations.kubernetes.io/ingress.class: "nginx" ingress.annotations.kubernetes.io/ingress.class: "nginx"
``` ```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment