From 40e49109947e4b335c21804efcb5b931ff05282e Mon Sep 17 00:00:00 2001 From: Amit Ben Ami Date: Mon, 4 Jan 2021 15:10:45 +0200 Subject: [PATCH 1/8] Adding the `resources` for the `exporter` container of `memcached-index-writes` Signed-off-by: Amit Ben Ami --- charts/loki-distributed/README.md | 1 + .../statefulset-memcached-index-writes.yaml | 2 ++ charts/loki-distributed/values.yaml | 3 +++ 3 files changed, 6 insertions(+) diff --git a/charts/loki-distributed/README.md b/charts/loki-distributed/README.md index 0fc4c9347b..386446885d 100644 --- a/charts/loki-distributed/README.md +++ b/charts/loki-distributed/README.md @@ -171,6 +171,7 @@ helm repo add grafana https://grafana.github.io/helm-charts | memcachedIndexWrites.priorityClassName | string | `nil` | The name of the PriorityClass for memcached-index-writes pods | | memcachedIndexWrites.replicas | int | `1` | Number of replicas for memcached-index-writes | | memcachedIndexWrites.resources | object | `{}` | Resource requests and limits for memcached-index-writes | +| memcachedIndexWrites.exporter.resources | object | `{}` | Resource requests and limits for memcached-index-writes exporter container | | memcachedIndexWrites.terminationGracePeriodSeconds | int | `30` | Grace period to allow memcached-index-writes to shutdown before it is killed | | memcachedIndexWrites.tolerations | list | `[]` | Tolerations for memcached-index-writes pods | | nameOverride | string | `nil` | Overrides the chart's name | diff --git a/charts/loki-distributed/templates/memcached-index-writes/statefulset-memcached-index-writes.yaml b/charts/loki-distributed/templates/memcached-index-writes/statefulset-memcached-index-writes.yaml index 4a8834ff7a..f79d31c6a8 100644 --- a/charts/loki-distributed/templates/memcached-index-writes/statefulset-memcached-index-writes.yaml +++ b/charts/loki-distributed/templates/memcached-index-writes/statefulset-memcached-index-writes.yaml @@ -78,6 +78,8 @@ spec: - name: http-metrics containerPort: 9150 protocol: TCP + resources: + {{- toYaml .Values.memcachedIndexWrites.exporter.resources | nindent 12 }} {{- end }} {{- with .Values.memcachedIndexWrites.affinity }} affinity: diff --git a/charts/loki-distributed/values.yaml b/charts/loki-distributed/values.yaml index 8e86b712db..5ff40d837a 100644 --- a/charts/loki-distributed/values.yaml +++ b/charts/loki-distributed/values.yaml @@ -952,6 +952,9 @@ memcachedIndexWrites: extraEnvFrom: [] # -- Resource requests and limits for memcached-index-writes resources: {} + # -- Resource requests and limits for memcached-index-writes exporter container + exporter: + resources: {} # -- Grace period to allow memcached-index-writes to shutdown before it is killed terminationGracePeriodSeconds: 30 # -- Affinity for memcached-index-writes pods. Passed through `tpl` and, thus, to be configured as string From f5d0a39e7e95b4e35adde5e092e693a4d75a5b97 Mon Sep 17 00:00:00 2001 From: Amit Ben Ami Date: Mon, 4 Jan 2021 15:12:36 +0200 Subject: [PATCH 2/8] Adding the `resources` for the `exporter` container of `memcached-index-queries` Signed-off-by: Amit Ben Ami --- charts/loki-distributed/README.md | 1 + .../statefulset-memcached-index-queries.yaml | 2 ++ charts/loki-distributed/values.yaml | 3 +++ 3 files changed, 6 insertions(+) diff --git a/charts/loki-distributed/README.md b/charts/loki-distributed/README.md index 386446885d..9dbe85e881 100644 --- a/charts/loki-distributed/README.md +++ b/charts/loki-distributed/README.md @@ -159,6 +159,7 @@ helm repo add grafana https://grafana.github.io/helm-charts | memcachedIndexQueries.priorityClassName | string | `nil` | The name of the PriorityClass for memcached-index-queries pods | | memcachedIndexQueries.replicas | int | `1` | Number of replicas for memcached-index-queries | | memcachedIndexQueries.resources | object | `{}` | Resource requests and limits for memcached-index-queries | +| memcachedIndexQueries.exporter.resources | object | `{}` | Resource requests and limits for memcached-index-writes exporter container | | memcachedIndexQueries.terminationGracePeriodSeconds | int | `30` | Grace period to allow memcached-index-queries to shutdown before it is killed | | memcachedIndexQueries.tolerations | list | `[]` | Tolerations for memcached-index-queries pods | | memcachedIndexWrites.affinity | string | Hard node and soft zone anti-affinity | Affinity for memcached-index-writes pods. Passed through `tpl` and, thus, to be configured as string | diff --git a/charts/loki-distributed/templates/memcached-index-queries/statefulset-memcached-index-queries.yaml b/charts/loki-distributed/templates/memcached-index-queries/statefulset-memcached-index-queries.yaml index 68973d6d32..d9c92da36f 100644 --- a/charts/loki-distributed/templates/memcached-index-queries/statefulset-memcached-index-queries.yaml +++ b/charts/loki-distributed/templates/memcached-index-queries/statefulset-memcached-index-queries.yaml @@ -78,6 +78,8 @@ spec: - name: http-metrics containerPort: 9150 protocol: TCP + resources: + {{- toYaml .Values.memcachedIndexQueries.exporter.resources | nindent 12 }} {{- end }} {{- with .Values.memcachedIndexQueries.affinity }} affinity: diff --git a/charts/loki-distributed/values.yaml b/charts/loki-distributed/values.yaml index 5ff40d837a..ee8b295ea2 100644 --- a/charts/loki-distributed/values.yaml +++ b/charts/loki-distributed/values.yaml @@ -912,6 +912,9 @@ memcachedIndexQueries: extraEnvFrom: [] # -- Resource requests and limits for memcached-index-queries resources: {} + # -- Resource requests and limits for memcached-index-writes exporter container + exporter: + resources: {} # -- Grace period to allow memcached-index-queries to shutdown before it is killed terminationGracePeriodSeconds: 30 # -- Affinity for memcached-index-queries pods. Passed through `tpl` and, thus, to be configured as string From 13318ac11b749b5a7754cf083b5ae780ab19f971 Mon Sep 17 00:00:00 2001 From: Amit Ben Ami Date: Mon, 4 Jan 2021 15:13:52 +0200 Subject: [PATCH 3/8] Adding the `resources` for the `exporter` container of `memcached-frontend` Signed-off-by: Amit Ben Ami --- charts/loki-distributed/README.md | 1 + .../memcached-frontend/statefulset-memcached-frontend.yaml | 2 ++ charts/loki-distributed/values.yaml | 3 +++ 3 files changed, 6 insertions(+) diff --git a/charts/loki-distributed/README.md b/charts/loki-distributed/README.md index 9dbe85e881..d649a65ce1 100644 --- a/charts/loki-distributed/README.md +++ b/charts/loki-distributed/README.md @@ -147,6 +147,7 @@ helm repo add grafana https://grafana.github.io/helm-charts | memcachedFrontend.priorityClassName | string | `nil` | The name of the PriorityClass for memcached-frontend pods | | memcachedFrontend.replicas | int | `1` | Number of replicas for memcached-frontend | | memcachedFrontend.resources | object | `{}` | Resource requests and limits for memcached-frontend | +| memcachedFrontend.exporter.resources | object | `{}` | Resource requests and limits for memcached-index-writes exporter container | | memcachedFrontend.terminationGracePeriodSeconds | int | `30` | Grace period to allow memcached-frontend to shutdown before it is killed | | memcachedFrontend.tolerations | list | `[]` | Tolerations for memcached-frontend pods | | memcachedIndexQueries.affinity | string | Hard node and soft zone anti-affinity | Affinity for memcached-index-queries pods. Passed through `tpl` and, thus, to be configured as string | diff --git a/charts/loki-distributed/templates/memcached-frontend/statefulset-memcached-frontend.yaml b/charts/loki-distributed/templates/memcached-frontend/statefulset-memcached-frontend.yaml index f93d699af1..1846880265 100644 --- a/charts/loki-distributed/templates/memcached-frontend/statefulset-memcached-frontend.yaml +++ b/charts/loki-distributed/templates/memcached-frontend/statefulset-memcached-frontend.yaml @@ -78,6 +78,8 @@ spec: - name: http-metrics containerPort: 9150 protocol: TCP + resources: + {{- toYaml .Values.memcachedExporter.exporter.resources | nindent 12 }} {{- end }} {{- with .Values.memcachedFrontend.affinity }} affinity: diff --git a/charts/loki-distributed/values.yaml b/charts/loki-distributed/values.yaml index ee8b295ea2..a96ba10035 100644 --- a/charts/loki-distributed/values.yaml +++ b/charts/loki-distributed/values.yaml @@ -872,6 +872,9 @@ memcachedFrontend: extraEnvFrom: [] # -- Resource requests and limits for memcached-frontend resources: {} + # -- Resource requests and limits for memcached-index-writes exporter container + exporter: + resources: {} # -- Grace period to allow memcached-frontend to shutdown before it is killed terminationGracePeriodSeconds: 30 # -- Affinity for memcached-frontend pods. Passed through `tpl` and, thus, to be configured as string From 0988b1699933b2dc369e054a340289e1c482ec4a Mon Sep 17 00:00:00 2001 From: Amit Ben Ami Date: Mon, 4 Jan 2021 15:17:22 +0200 Subject: [PATCH 4/8] Setting the exporter's resources in a single place Signed-off-by: Amit Ben Ami --- charts/loki-distributed/README.md | 4 +--- .../statefulset-memcached-chunks.yaml | 2 ++ .../statefulset-memcached-index-queries.yaml | 2 +- .../statefulset-memcached-index-writes.yaml | 2 +- charts/loki-distributed/values.yaml | 11 ++--------- 5 files changed, 7 insertions(+), 14 deletions(-) diff --git a/charts/loki-distributed/README.md b/charts/loki-distributed/README.md index d649a65ce1..bc7dd5521e 100644 --- a/charts/loki-distributed/README.md +++ b/charts/loki-distributed/README.md @@ -137,6 +137,7 @@ helm repo add grafana https://grafana.github.io/helm-charts | memcachedExporter.image.registry | string | `"docker.io"` | The Docker registry for the Memcached Exporter | | memcachedExporter.image.repository | string | `"prom/memcached-exporter"` | Memcached Exporter Docker image repository | | memcachedExporter.image.tag | string | `"v0.6.0"` | Memcached Exporter Docker image tag | +| memcachedExporter.resources | object | `{}` | Memcached Exporter Resource requests and limits | | memcachedFrontend.affinity | string | Hard node and soft zone anti-affinity | Affinity for memcached-frontend pods. Passed through `tpl` and, thus, to be configured as string | | memcachedFrontend.enabled | bool | `false` | Specifies whether the Memcached frontend cache should be enabled | | memcachedFrontend.extraArgs | list | `[]` | Additional CLI args for memcached-frontend | @@ -147,7 +148,6 @@ helm repo add grafana https://grafana.github.io/helm-charts | memcachedFrontend.priorityClassName | string | `nil` | The name of the PriorityClass for memcached-frontend pods | | memcachedFrontend.replicas | int | `1` | Number of replicas for memcached-frontend | | memcachedFrontend.resources | object | `{}` | Resource requests and limits for memcached-frontend | -| memcachedFrontend.exporter.resources | object | `{}` | Resource requests and limits for memcached-index-writes exporter container | | memcachedFrontend.terminationGracePeriodSeconds | int | `30` | Grace period to allow memcached-frontend to shutdown before it is killed | | memcachedFrontend.tolerations | list | `[]` | Tolerations for memcached-frontend pods | | memcachedIndexQueries.affinity | string | Hard node and soft zone anti-affinity | Affinity for memcached-index-queries pods. Passed through `tpl` and, thus, to be configured as string | @@ -160,7 +160,6 @@ helm repo add grafana https://grafana.github.io/helm-charts | memcachedIndexQueries.priorityClassName | string | `nil` | The name of the PriorityClass for memcached-index-queries pods | | memcachedIndexQueries.replicas | int | `1` | Number of replicas for memcached-index-queries | | memcachedIndexQueries.resources | object | `{}` | Resource requests and limits for memcached-index-queries | -| memcachedIndexQueries.exporter.resources | object | `{}` | Resource requests and limits for memcached-index-writes exporter container | | memcachedIndexQueries.terminationGracePeriodSeconds | int | `30` | Grace period to allow memcached-index-queries to shutdown before it is killed | | memcachedIndexQueries.tolerations | list | `[]` | Tolerations for memcached-index-queries pods | | memcachedIndexWrites.affinity | string | Hard node and soft zone anti-affinity | Affinity for memcached-index-writes pods. Passed through `tpl` and, thus, to be configured as string | @@ -173,7 +172,6 @@ helm repo add grafana https://grafana.github.io/helm-charts | memcachedIndexWrites.priorityClassName | string | `nil` | The name of the PriorityClass for memcached-index-writes pods | | memcachedIndexWrites.replicas | int | `1` | Number of replicas for memcached-index-writes | | memcachedIndexWrites.resources | object | `{}` | Resource requests and limits for memcached-index-writes | -| memcachedIndexWrites.exporter.resources | object | `{}` | Resource requests and limits for memcached-index-writes exporter container | | memcachedIndexWrites.terminationGracePeriodSeconds | int | `30` | Grace period to allow memcached-index-writes to shutdown before it is killed | | memcachedIndexWrites.tolerations | list | `[]` | Tolerations for memcached-index-writes pods | | nameOverride | string | `nil` | Overrides the chart's name | diff --git a/charts/loki-distributed/templates/memcached-chunks/statefulset-memcached-chunks.yaml b/charts/loki-distributed/templates/memcached-chunks/statefulset-memcached-chunks.yaml index 3caac40e9f..ba51f10f64 100644 --- a/charts/loki-distributed/templates/memcached-chunks/statefulset-memcached-chunks.yaml +++ b/charts/loki-distributed/templates/memcached-chunks/statefulset-memcached-chunks.yaml @@ -78,6 +78,8 @@ spec: - name: http-metrics containerPort: 9150 protocol: TCP + resources: + {{- toYaml .Values.memcachedExporter.exporter.resources | nindent 12 }} {{- end }} {{- with .Values.memcachedChunks.affinity }} affinity: diff --git a/charts/loki-distributed/templates/memcached-index-queries/statefulset-memcached-index-queries.yaml b/charts/loki-distributed/templates/memcached-index-queries/statefulset-memcached-index-queries.yaml index d9c92da36f..48ac8f4522 100644 --- a/charts/loki-distributed/templates/memcached-index-queries/statefulset-memcached-index-queries.yaml +++ b/charts/loki-distributed/templates/memcached-index-queries/statefulset-memcached-index-queries.yaml @@ -79,7 +79,7 @@ spec: containerPort: 9150 protocol: TCP resources: - {{- toYaml .Values.memcachedIndexQueries.exporter.resources | nindent 12 }} + {{- toYaml .Values.memcachedExporter.exporter.resources | nindent 12 }} {{- end }} {{- with .Values.memcachedIndexQueries.affinity }} affinity: diff --git a/charts/loki-distributed/templates/memcached-index-writes/statefulset-memcached-index-writes.yaml b/charts/loki-distributed/templates/memcached-index-writes/statefulset-memcached-index-writes.yaml index f79d31c6a8..8bc35f5cca 100644 --- a/charts/loki-distributed/templates/memcached-index-writes/statefulset-memcached-index-writes.yaml +++ b/charts/loki-distributed/templates/memcached-index-writes/statefulset-memcached-index-writes.yaml @@ -79,7 +79,7 @@ spec: containerPort: 9150 protocol: TCP resources: - {{- toYaml .Values.memcachedIndexWrites.exporter.resources | nindent 12 }} + {{- toYaml .Values.memcachedExporter.exporter.resources | nindent 12 }} {{- end }} {{- with .Values.memcachedIndexWrites.affinity }} affinity: diff --git a/charts/loki-distributed/values.yaml b/charts/loki-distributed/values.yaml index a96ba10035..1f4b9a66f6 100644 --- a/charts/loki-distributed/values.yaml +++ b/charts/loki-distributed/values.yaml @@ -814,6 +814,8 @@ memcachedExporter: tag: v0.6.0 # -- Memcached Exporter Docker image pull policy pullPolicy: IfNotPresent + # -- Memcached Exporter Resource requests and limits + resources: {} memcachedChunks: # -- Specifies whether the Memcached chunks cache should be enabled @@ -872,9 +874,6 @@ memcachedFrontend: extraEnvFrom: [] # -- Resource requests and limits for memcached-frontend resources: {} - # -- Resource requests and limits for memcached-index-writes exporter container - exporter: - resources: {} # -- Grace period to allow memcached-frontend to shutdown before it is killed terminationGracePeriodSeconds: 30 # -- Affinity for memcached-frontend pods. Passed through `tpl` and, thus, to be configured as string @@ -915,9 +914,6 @@ memcachedIndexQueries: extraEnvFrom: [] # -- Resource requests and limits for memcached-index-queries resources: {} - # -- Resource requests and limits for memcached-index-writes exporter container - exporter: - resources: {} # -- Grace period to allow memcached-index-queries to shutdown before it is killed terminationGracePeriodSeconds: 30 # -- Affinity for memcached-index-queries pods. Passed through `tpl` and, thus, to be configured as string @@ -958,9 +954,6 @@ memcachedIndexWrites: extraEnvFrom: [] # -- Resource requests and limits for memcached-index-writes resources: {} - # -- Resource requests and limits for memcached-index-writes exporter container - exporter: - resources: {} # -- Grace period to allow memcached-index-writes to shutdown before it is killed terminationGracePeriodSeconds: 30 # -- Affinity for memcached-index-writes pods. Passed through `tpl` and, thus, to be configured as string From e2de0879df3d014aed60a7a3cde1ce213401df36 Mon Sep 17 00:00:00 2001 From: Amit Ben Ami Date: Mon, 4 Jan 2021 15:18:56 +0200 Subject: [PATCH 5/8] Bumping the version Signed-off-by: Amit Ben Ami --- charts/loki-distributed/Chart.yaml | 2 +- charts/loki-distributed/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/loki-distributed/Chart.yaml b/charts/loki-distributed/Chart.yaml index 4d43ebde13..cbd1d34936 100644 --- a/charts/loki-distributed/Chart.yaml +++ b/charts/loki-distributed/Chart.yaml @@ -3,7 +3,7 @@ name: loki-distributed description: Helm chart for Grafana Loki in microservices mode type: application appVersion: 2.1.0 -version: 0.21.1 +version: 0.21.2 home: https://grafana.github.io/helm-charts sources: - https://github.com/grafana/loki diff --git a/charts/loki-distributed/README.md b/charts/loki-distributed/README.md index bc7dd5521e..57f602efd8 100644 --- a/charts/loki-distributed/README.md +++ b/charts/loki-distributed/README.md @@ -1,6 +1,6 @@ # loki-distributed -![Version: 0.21.1](https://img.shields.io/badge/Version-0.21.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.1.0](https://img.shields.io/badge/AppVersion-2.1.0-informational?style=flat-square) +![Version: 0.21.2](https://img.shields.io/badge/Version-0.21.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.1.0](https://img.shields.io/badge/AppVersion-2.1.0-informational?style=flat-square) Helm chart for Grafana Loki in microservices mode From a950b11a89a4b46335a98443debaa78d9dd61d28 Mon Sep 17 00:00:00 2001 From: Amit Ben Ami Date: Mon, 4 Jan 2021 15:20:17 +0200 Subject: [PATCH 6/8] Fixing the config path Signed-off-by: Amit Ben Ami --- .../memcached-chunks/statefulset-memcached-chunks.yaml | 2 +- .../memcached-frontend/statefulset-memcached-frontend.yaml | 2 +- .../statefulset-memcached-index-queries.yaml | 2 +- .../statefulset-memcached-index-writes.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/loki-distributed/templates/memcached-chunks/statefulset-memcached-chunks.yaml b/charts/loki-distributed/templates/memcached-chunks/statefulset-memcached-chunks.yaml index ba51f10f64..7d8e30aafc 100644 --- a/charts/loki-distributed/templates/memcached-chunks/statefulset-memcached-chunks.yaml +++ b/charts/loki-distributed/templates/memcached-chunks/statefulset-memcached-chunks.yaml @@ -79,7 +79,7 @@ spec: containerPort: 9150 protocol: TCP resources: - {{- toYaml .Values.memcachedExporter.exporter.resources | nindent 12 }} + {{- toYaml .Values.memcachedExporter.resources | nindent 12 }} {{- end }} {{- with .Values.memcachedChunks.affinity }} affinity: diff --git a/charts/loki-distributed/templates/memcached-frontend/statefulset-memcached-frontend.yaml b/charts/loki-distributed/templates/memcached-frontend/statefulset-memcached-frontend.yaml index 1846880265..a3a172d9f6 100644 --- a/charts/loki-distributed/templates/memcached-frontend/statefulset-memcached-frontend.yaml +++ b/charts/loki-distributed/templates/memcached-frontend/statefulset-memcached-frontend.yaml @@ -79,7 +79,7 @@ spec: containerPort: 9150 protocol: TCP resources: - {{- toYaml .Values.memcachedExporter.exporter.resources | nindent 12 }} + {{- toYaml .Values.memcachedExporter.resources | nindent 12 }} {{- end }} {{- with .Values.memcachedFrontend.affinity }} affinity: diff --git a/charts/loki-distributed/templates/memcached-index-queries/statefulset-memcached-index-queries.yaml b/charts/loki-distributed/templates/memcached-index-queries/statefulset-memcached-index-queries.yaml index 48ac8f4522..1802c81095 100644 --- a/charts/loki-distributed/templates/memcached-index-queries/statefulset-memcached-index-queries.yaml +++ b/charts/loki-distributed/templates/memcached-index-queries/statefulset-memcached-index-queries.yaml @@ -79,7 +79,7 @@ spec: containerPort: 9150 protocol: TCP resources: - {{- toYaml .Values.memcachedExporter.exporter.resources | nindent 12 }} + {{- toYaml .Values.memcachedExporter.resources | nindent 12 }} {{- end }} {{- with .Values.memcachedIndexQueries.affinity }} affinity: diff --git a/charts/loki-distributed/templates/memcached-index-writes/statefulset-memcached-index-writes.yaml b/charts/loki-distributed/templates/memcached-index-writes/statefulset-memcached-index-writes.yaml index 8bc35f5cca..c93befa764 100644 --- a/charts/loki-distributed/templates/memcached-index-writes/statefulset-memcached-index-writes.yaml +++ b/charts/loki-distributed/templates/memcached-index-writes/statefulset-memcached-index-writes.yaml @@ -79,7 +79,7 @@ spec: containerPort: 9150 protocol: TCP resources: - {{- toYaml .Values.memcachedExporter.exporter.resources | nindent 12 }} + {{- toYaml .Values.memcachedExporter.resources | nindent 12 }} {{- end }} {{- with .Values.memcachedIndexWrites.affinity }} affinity: From 29e67d5251274d0996f4eeb744aca69f67db7bb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reinhard=20N=C3=A4gele?= Date: Thu, 7 Jan 2021 09:46:10 +0100 Subject: [PATCH 7/8] Update values.yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Reinhard Nägele --- charts/loki-distributed/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/loki-distributed/values.yaml b/charts/loki-distributed/values.yaml index 1f4b9a66f6..38cd83e9b3 100644 --- a/charts/loki-distributed/values.yaml +++ b/charts/loki-distributed/values.yaml @@ -814,7 +814,7 @@ memcachedExporter: tag: v0.6.0 # -- Memcached Exporter Docker image pull policy pullPolicy: IfNotPresent - # -- Memcached Exporter Resource requests and limits + # -- Memcached Exporter resource requests and limits resources: {} memcachedChunks: From 96e674de4e82471237413a8d9121c1a96a4f3f60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reinhard=20N=C3=A4gele?= Date: Thu, 7 Jan 2021 09:46:45 +0100 Subject: [PATCH 8/8] Update README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Reinhard Nägele --- charts/loki-distributed/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/loki-distributed/README.md b/charts/loki-distributed/README.md index 57f602efd8..129127e5c4 100644 --- a/charts/loki-distributed/README.md +++ b/charts/loki-distributed/README.md @@ -137,7 +137,7 @@ helm repo add grafana https://grafana.github.io/helm-charts | memcachedExporter.image.registry | string | `"docker.io"` | The Docker registry for the Memcached Exporter | | memcachedExporter.image.repository | string | `"prom/memcached-exporter"` | Memcached Exporter Docker image repository | | memcachedExporter.image.tag | string | `"v0.6.0"` | Memcached Exporter Docker image tag | -| memcachedExporter.resources | object | `{}` | Memcached Exporter Resource requests and limits | +| memcachedExporter.resources | object | `{}` | Memcached Exporter resource requests and limits | | memcachedFrontend.affinity | string | Hard node and soft zone anti-affinity | Affinity for memcached-frontend pods. Passed through `tpl` and, thus, to be configured as string | | memcachedFrontend.enabled | bool | `false` | Specifies whether the Memcached frontend cache should be enabled | | memcachedFrontend.extraArgs | list | `[]` | Additional CLI args for memcached-frontend |