Skip to content

Commit

Permalink
Merge branch 'main' into volumemounts
Browse files Browse the repository at this point in the history
  • Loading branch information
unguiculus authored Jan 7, 2021
2 parents 71544e2 + 136701f commit ec6cd55
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions charts/loki-distributed/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,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 |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ spec:
- name: http-metrics
containerPort: 9150
protocol: TCP
resources:
{{- toYaml .Values.memcachedExporter.resources | nindent 12 }}
{{- end }}
{{- with .Values.memcachedChunks.affinity }}
affinity:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ spec:
- name: http-metrics
containerPort: 9150
protocol: TCP
resources:
{{- toYaml .Values.memcachedExporter.resources | nindent 12 }}
{{- end }}
{{- with .Values.memcachedFrontend.affinity }}
affinity:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ spec:
- name: http-metrics
containerPort: 9150
protocol: TCP
resources:
{{- toYaml .Values.memcachedExporter.resources | nindent 12 }}
{{- end }}
{{- with .Values.memcachedIndexQueries.affinity }}
affinity:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ spec:
- name: http-metrics
containerPort: 9150
protocol: TCP
resources:
{{- toYaml .Values.memcachedExporter.resources | nindent 12 }}
{{- end }}
{{- with .Values.memcachedIndexWrites.affinity }}
affinity:
Expand Down
2 changes: 2 additions & 0 deletions charts/loki-distributed/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -834,6 +834,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
Expand Down

0 comments on commit ec6cd55

Please sign in to comment.