Skip to content

Commit

Permalink
chore(helm): add memcached sts pvc labels to helm chart
Browse files Browse the repository at this point in the history
  • Loading branch information
sousa-andre committed Dec 27, 2024
1 parent bf73014 commit d132152
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
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

0 comments on commit d132152

Please sign in to comment.