diff --git a/charts/perses/README.md b/charts/perses/README.md index 56cd1b2..46cd05c 100644 --- a/charts/perses/README.md +++ b/charts/perses/README.md @@ -4,7 +4,7 @@ Perses helm chart -![Version: 0.4.2](https://img.shields.io/badge/Version-0.4.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.48.0](https://img.shields.io/badge/AppVersion-v0.48.0-informational?style=flat-square) +![Version: 0.5.0](https://img.shields.io/badge/Version-0.5.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.48.0](https://img.shields.io/badge/AppVersion-v0.48.0-informational?style=flat-square) ## Installing the Chart @@ -46,24 +46,24 @@ helm delete my-release | image.name | string | `"persesdev/perses"` | Perses image repository and name | | image.pullPolicy | string | `"IfNotPresent"` | Default image pull policy | | image.version | string | `""` | Overrides the image tag whose default is the chart appVersion. | -| ingress | object | `{"annotations":{},"enabled":false,"hostname":"perses.local","ingressClassName":"","path":"/","pathType":"Prefix"}` | Configure the ingress resource that allows you to access Thanos Query Frontend ref: https://kubernetes.io/docs/concepts/services-networking/ingress/ | +| ingress | object | `{"annotations":{},"enabled":false,"hosts":["perses.local"],"ingressClassName":"","path":"/","pathType":"Prefix","tls":[]}` | Configure the ingress resource that allows you to access Thanos Query Frontend ref: https://kubernetes.io/docs/concepts/services-networking/ingress/ | | ingress.annotations | object | `{}` | Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations. For a full list of possible ingress annotations, please see ref: https://github.com/kubernetes/ingress-nginx/blob/master/docs/user-guide/nginx-configuration/annotations.md | | ingress.enabled | bool | `false` | Enable ingress controller resource | -| ingress.hosts | array | `["perses.local"]` | Default host for the ingress resource | +| ingress.hosts | list | `["perses.local"]` | Default host for the ingress resource | | ingress.ingressClassName | string | `""` | IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+) This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster . ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/ | | ingress.path | string | `"/"` | Ingress path | | ingress.pathType | string | `"Prefix"` | Ingress path type | -| ingress.tls | array | `[]` | | +| ingress.tls | list | `[]` | Ingress TLS configuration | | livenessProbe | object | `{"enabled":true,"failureThreshold":5,"initialDelaySeconds":10,"periodSeconds":60,"successThreshold":1,"timeoutSeconds":5}` | Liveness probe configuration Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ | | logLevel | string | `"info"` | Log level for Perses be configured in available options "panic", "error", "warning", "info", "debug", "trace" | | nameOverride | string | `""` | Override name of the chart used in Kubernetes object names. | -| persistence | object | `{"accessModes":["ReadWriteOnce"],"annotations":{},"enabled":false,"labels":{},"size":"8Gi","storageClass":""}` | Persistence parameters | +| persistence | object | `{"accessModes":["ReadWriteOnce"],"annotations":{},"enabled":false,"labels":{},"securityContext":{"fsGroup":2000},"size":"8Gi"}` | Persistence parameters | | persistence.accessModes | list | `["ReadWriteOnce"]` | PVC Access Modes for data volume | | persistence.annotations | object | `{}` | Annotations for the PVC | | persistence.enabled | bool | `false` | If disabled, it will use a emptydir volume | | persistence.labels | object | `{}` | Labels for the PVC | +| persistence.securityContext | object | `{"fsGroup":2000}` | Security context for the PVC when persistence is enabled | | persistence.size | string | `"8Gi"` | PVC Storage Request for data volume | -| persistence.storageClass | string | `""` | Specify the `storageClass` used to provision the volume | | readinessProbe | object | `{"enabled":true,"failureThreshold":5,"initialDelaySeconds":5,"periodSeconds":10,"successThreshold":1,"timeoutSeconds":5}` | Readiness probe configuration Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ | | replicas | int | `1` | Number of pod replicas. | | resources | object | `{}` | Resource limits & requests. Update according to your own use case as these values might be too low for a typical deployment. ref: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ |