Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/sources/setup/install/helm/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -7708,6 +7708,15 @@ true
<td><pre lang="json">
"IfNotPresent"
</pre>
</td>
</tr>
<tr>
<td>memcached.image.registry</td>
<td>string</td>
<td>Memcached Docker image registry</td>
<td><pre lang="json">
""
</pre>
</td>
</tr>
<tr>
Expand Down
1 change: 1 addition & 0 deletions production/helm/loki/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Entries should include a reference to the pull request that introduced the chang

## Unreleased

- [ENHANCEMENT] add memcached image registry configuration. [#19746](https://github.com/grafana/loki/pull/19746)

## 6.46.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ loki:
storage:
type: 'filesystem'
useTestSchema: true
rulerConfig:
storage:
type: local
local:
directory: /rules
deploymentMode: SingleBinary
singleBinary:
replicas: 1
Expand Down
2 changes: 2 additions & 0 deletions production/helm/loki/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3480,6 +3480,8 @@ memcached:
# -- Enable the built in memcached server provided by the chart
enabled: true
image:
# -- Memcached Docker image registry
registry: ""
# -- Memcached Docker image repository
repository: memcached
# -- Memcached Docker image tag
Expand Down