Skip to content

Commit

Permalink
chore: Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreZiviani committed Jul 29, 2024
1 parent bba5e75 commit c089234
Show file tree
Hide file tree
Showing 2 changed files with 104 additions and 3 deletions.
100 changes: 100 additions & 0 deletions docs/sources/setup/install/helm/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -1623,6 +1623,56 @@ true
<td><pre lang="json">
5
</pre>
</td>
</tr>
<tr>
<td>chunksCache.persistence</td>
<td>object</td>
<td>Persistence settings for the chunks-cache</td>
<td><pre lang="json">
{
"enabled": false,
"mountPath": "/data",
"storageClass": null,
"storageSize": "10G"
}
</pre>
</td>
</tr>
<tr>
<td>chunksCache.persistence.enabled</td>
<td>bool</td>
<td>Enable creating PVCs for the chunks-cache</td>
<td><pre lang="json">
false
</pre>
</td>
</tr>
<tr>
<td>chunksCache.persistence.mountPath</td>
<td>string</td>
<td>Volume mount path</td>
<td><pre lang="json">
"/data"
</pre>
</td>
</tr>
<tr>
<td>chunksCache.persistence.storageClass</td>
<td>string</td>
<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>
<td><pre lang="json">
null
</pre>
</td>
</tr>
<tr>
<td>chunksCache.persistence.storageSize</td>
<td>string</td>
<td>Size of persistent disk</td>
<td><pre lang="json">
"10G"
</pre>
</td>
</tr>
<tr>
Expand Down Expand Up @@ -9034,6 +9084,56 @@ true
<td><pre lang="json">
{}
</pre>
</td>
</tr>
<tr>
<td>resultsCache.persistence</td>
<td>object</td>
<td>Persistence settings for the results-cache</td>
<td><pre lang="json">
{
"enabled": false,
"mountPath": "/data",
"storageClass": null,
"storageSize": "10G"
}
</pre>
</td>
</tr>
<tr>
<td>resultsCache.persistence.enabled</td>
<td>bool</td>
<td>Enable creating PVCs for the results-cache</td>
<td><pre lang="json">
false
</pre>
</td>
</tr>
<tr>
<td>resultsCache.persistence.mountPath</td>
<td>string</td>
<td>Volume mount path</td>
<td><pre lang="json">
"/data"
</pre>
</td>
</tr>
<tr>
<td>resultsCache.persistence.storageClass</td>
<td>string</td>
<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>
<td><pre lang="json">
null
</pre>
</td>
</tr>
<tr>
<td>resultsCache.persistence.storageSize</td>
<td>string</td>
<td>Size of persistent disk</td>
<td><pre lang="json">
"10G"
</pre>
</td>
</tr>
<tr>
Expand Down
7 changes: 4 additions & 3 deletions production/helm/loki/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,17 @@ Entries should include a reference to the pull request that introduced the chang

[//]: # (<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.)

## 6.8.0

- [FEATURE] Add support for configuring persistence for memcached.

## 6.7.3

- [BUGFIX] Removed Helm test binary

## 6.7.2

- [BUGFIX] Fix imagePullSecrets for statefulset-results-cache
## 6.8.0

- [FEATURE] Add support for configuring persistence for memcached.

## 6.7.1

Expand Down

0 comments on commit c089234

Please sign in to comment.