Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(helm): Add Memcached StatefulSet PVC labels to Helm Chart values #15554

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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
20 changes: 20 additions & 0 deletions docs/sources/setup/install/helm/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -2023,6 +2023,7 @@ true
<td><pre lang="json">
{
"enabled": false,
"labels": {},
"mountPath": "/data",
"storageClass": null,
"storageSize": "10G"
Expand All @@ -2037,6 +2038,15 @@ true
<td><pre lang="json">
false
</pre>
</td>
</tr>
<tr>
<td>chunksCache.persistence.labels</td>
<td>object</td>
<td>PVC additional labels</td>
<td><pre lang="json">
{}
</pre>
</td>
</tr>
<tr>
Expand Down Expand Up @@ -9780,6 +9790,7 @@ true
<td><pre lang="json">
{
"enabled": false,
"labels": {},
"mountPath": "/data",
"storageClass": null,
"storageSize": "10G"
Expand All @@ -9794,6 +9805,15 @@ true
<td><pre lang="json">
false
</pre>
</td>
</tr>
<tr>
<td>resultsCache.persistence.labels</td>
<td>object</td>
<td>PVC additional labels</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 @@ -12,6 +12,7 @@ Entries should be ordered as follows:
Entries should include a reference to the pull request that introduced the change.

[//]: # (<AUTOMATED_UPDATES_LOCATOR> : do not remove this line. This locator is used by the CI pipeline to automatically create a changelog entry for each new Loki release. Add other chart versions and respective changelog entries bellow this line.)
- [ENHANCEMENT] Allow specifying additional labels for memcached statefulsets volume claim templates

## 6.24.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,8 @@ spec:
kind: PersistentVolumeClaim
metadata:
name: data
labels:
{{- toYaml .persistence.labels | nindent 10 }}
spec:
accessModes: [ "ReadWriteOnce" ]
{{- with .persistence.storageClass }}
Expand Down
4 changes: 4 additions & 0 deletions production/helm/loki/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3162,6 +3162,8 @@ resultsCache:
storageClass: null
# -- Volume mount path
mountPath: /data
# -- PVC additional labels
labels: {}
chunksCache:
# -- Specifies whether memcached based chunks-cache should be enabled
enabled: true
Expand Down Expand Up @@ -3264,6 +3266,8 @@ chunksCache:
storageClass: null
# -- Volume mount path
mountPath: /data
# -- PVC additional labels
labels: {}
######################################################################################################################
#
# Subchart configurations
Expand Down
Loading