diff --git a/bitnami/prestashop/Chart.yaml b/bitnami/prestashop/Chart.yaml index c42a615a3..f195adf79 100644 --- a/bitnami/prestashop/Chart.yaml +++ b/bitnami/prestashop/Chart.yaml @@ -29,4 +29,4 @@ name: prestashop sources: - https://github.com/bitnami/containers/tree/main/bitnami/prestashop - https://prestashop.com/ -version: 15.3.5 +version: 15.3.6 diff --git a/bitnami/prestashop/README.md b/bitnami/prestashop/README.md index 4adf3ef62..b446818fe 100644 --- a/bitnami/prestashop/README.md +++ b/bitnami/prestashop/README.md @@ -246,17 +246,18 @@ The command removes all the Kubernetes components associated with the chart and ### Metrics parameters -| Name | Description | Value | -| --------------------------- | --------------------------------------------------------------------------------------------------------------- | ------------------------- | -| `metrics.enabled` | Start a side-car prometheus exporter | `false` | -| `metrics.image.registry` | Apache exporter image registry | `docker.io` | -| `metrics.image.repository` | Apache exporter image repository | `bitnami/apache-exporter` | -| `metrics.image.tag` | Apache exporter image tag (immutable tags are recommended) | `0.11.0-debian-11-r50` | -| `metrics.image.digest` | Apache exporter image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag | `""` | -| `metrics.image.pullPolicy` | Apache exporter image pull policy | `IfNotPresent` | -| `metrics.image.pullSecrets` | Specify docker-registry secret names as an array | `[]` | -| `metrics.resources` | Metrics exporter resource requests and limits | `{}` | -| `metrics.podAnnotations` | Metrics exporter pod annotations | `{}` | +| Name | Description | Value | +| ---------------------------- | --------------------------------------------------------------------------------------------------------------- | ------------------------- | +| `metrics.enabled` | Start a side-car prometheus exporter | `false` | +| `metrics.image.registry` | Apache exporter image registry | `docker.io` | +| `metrics.image.repository` | Apache exporter image repository | `bitnami/apache-exporter` | +| `metrics.image.tag` | Apache exporter image tag (immutable tags are recommended) | `0.11.0-debian-11-r50` | +| `metrics.image.digest` | Apache exporter image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag | `""` | +| `metrics.image.pullPolicy` | Apache exporter image pull policy | `IfNotPresent` | +| `metrics.image.pullSecrets` | Specify docker-registry secret names as an array | `[]` | +| `metrics.resources.requests` | The requested resources for the metrics exporter container | `{}` | +| `metrics.resources.limits` | The resources limits for the container for the metrics exporter container | `{}` | +| `metrics.podAnnotations` | Metrics exporter pod annotations | `{}` | ### Certificate injection parameters diff --git a/bitnami/prestashop/values.yaml b/bitnami/prestashop/values.yaml index dc10cebc3..06ec0a439 100644 --- a/bitnami/prestashop/values.yaml +++ b/bitnami/prestashop/values.yaml @@ -707,10 +707,22 @@ metrics: ## - myRegistryKeySecretName ## pullSecrets: [] - ## @param metrics.resources Metrics exporter resource requests and limits + ## Metrics exporter containers' resource requests and limits ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param metrics.resources.requests [object] The requested resources for the metrics exporter container + ## @param metrics.resources.limits The resources limits for the container for the metrics exporter container ## - resources: {} + resources: + ## Example: + ## limits: + ## cpu: 100m + ## memory: 128Mi + limits: {} + ## Examples: + ## requests: + ## cpu: 100m + ## memory: 128Mi + requests: {} ## @param metrics.podAnnotations [object] Metrics exporter pod annotations ## podAnnotations: