You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/sources/setup/install/helm/reference.md
+100
Original file line number
Diff line number
Diff line change
@@ -1623,6 +1623,56 @@ true
1623
1623
<td><pre lang="json">
1624
1624
5
1625
1625
</pre>
1626
+
</td>
1627
+
</tr>
1628
+
<tr>
1629
+
<td>chunksCache.persistence</td>
1630
+
<td>object</td>
1631
+
<td>Persistence settings for the chunks-cache</td>
1632
+
<td><pre lang="json">
1633
+
{
1634
+
"enabled": false,
1635
+
"mountPath": "/data",
1636
+
"storageClass": null,
1637
+
"storageSize": "10G"
1638
+
}
1639
+
</pre>
1640
+
</td>
1641
+
</tr>
1642
+
<tr>
1643
+
<td>chunksCache.persistence.enabled</td>
1644
+
<td>bool</td>
1645
+
<td>Enable creating PVCs for the chunks-cache</td>
1646
+
<td><pre lang="json">
1647
+
false
1648
+
</pre>
1649
+
</td>
1650
+
</tr>
1651
+
<tr>
1652
+
<td>chunksCache.persistence.mountPath</td>
1653
+
<td>string</td>
1654
+
<td>Volume mount path</td>
1655
+
<td><pre lang="json">
1656
+
"/data"
1657
+
</pre>
1658
+
</td>
1659
+
</tr>
1660
+
<tr>
1661
+
<td>chunksCache.persistence.storageClass</td>
1662
+
<td>string</td>
1663
+
<td>Storage class to be used. If defined, storageClassName: <storageClass>. If set to "-", storageClassName: "", which disables dynamic provisioning. If empty or set to null, no storageClassName spec is set, choosing the default provisioner (gp2 on AWS, standard on GKE, AWS, and OpenStack).</td>
1664
+
<td><pre lang="json">
1665
+
null
1666
+
</pre>
1667
+
</td>
1668
+
</tr>
1669
+
<tr>
1670
+
<td>chunksCache.persistence.storageSize</td>
1671
+
<td>string</td>
1672
+
<td>Size of persistent disk</td>
1673
+
<td><pre lang="json">
1674
+
"10G"
1675
+
</pre>
1626
1676
</td>
1627
1677
</tr>
1628
1678
<tr>
@@ -9035,6 +9085,56 @@ true
9035
9085
<td><pre lang="json">
9036
9086
{}
9037
9087
</pre>
9088
+
</td>
9089
+
</tr>
9090
+
<tr>
9091
+
<td>resultsCache.persistence</td>
9092
+
<td>object</td>
9093
+
<td>Persistence settings for the results-cache</td>
9094
+
<td><pre lang="json">
9095
+
{
9096
+
"enabled": false,
9097
+
"mountPath": "/data",
9098
+
"storageClass": null,
9099
+
"storageSize": "10G"
9100
+
}
9101
+
</pre>
9102
+
</td>
9103
+
</tr>
9104
+
<tr>
9105
+
<td>resultsCache.persistence.enabled</td>
9106
+
<td>bool</td>
9107
+
<td>Enable creating PVCs for the results-cache</td>
9108
+
<td><pre lang="json">
9109
+
false
9110
+
</pre>
9111
+
</td>
9112
+
</tr>
9113
+
<tr>
9114
+
<td>resultsCache.persistence.mountPath</td>
9115
+
<td>string</td>
9116
+
<td>Volume mount path</td>
9117
+
<td><pre lang="json">
9118
+
"/data"
9119
+
</pre>
9120
+
</td>
9121
+
</tr>
9122
+
<tr>
9123
+
<td>resultsCache.persistence.storageClass</td>
9124
+
<td>string</td>
9125
+
<td>Storage class to be used. If defined, storageClassName: <storageClass>. If set to "-", storageClassName: "", which disables dynamic provisioning. If empty or set to null, no storageClassName spec is set, choosing the default provisioner (gp2 on AWS, standard on GKE, AWS, and OpenStack).</td>
Copy file name to clipboardexpand all lines: production/helm/loki/CHANGELOG.md
+4-1
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,10 @@ Entries should include a reference to the pull request that introduced the chang
13
13
14
14
[//]: #(<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.)
15
15
16
+
## 6.11.0
17
+
18
+
-[FEATURE] Add support for configuring persistence for memcached.
19
+
16
20
## 6.10.2
17
21
18
22
-[CHANGE] Bumped version of `nginxinc/nginx-unprivileged` to 1.27-alpine; this remediates several CVE
@@ -27,7 +31,6 @@ Entries should include a reference to the pull request that introduced the chang
27
31
-[CHANGE] Changed version of Grafana Loki to 3.1.1
28
32
-[ENHANCEMENT] Added ability to disable AWS S3 dualstack endpoint usage.
29
33
30
-
31
34
## 6.9.0
32
35
33
36
-[BUGFIX] Fixed how we set imagePullSecrets for the memcached and provisioner.
Copy file name to clipboardexpand all lines: production/helm/loki/templates/memcached/_memcached-statefulset.tpl
+21-2
Original file line number
Diff line number
Diff line change
@@ -104,7 +104,7 @@ spec:
104
104
name: client
105
105
args:
106
106
- -m {{ .allocatedMemory }}
107
-
- --extended=modern,track_sizes{{ with .extraExtendedOptions }},{{ . }}{{ end }}
107
+
- --extended=modern,track_sizes{{ if .persistence.enabled }},ext_path={{ .persistence.mountPath }}/file:{{ .persistence.storageSize }}{{ end }}{{ with .extraExtendedOptions }},{{ . }}{{ end }}
0 commit comments