Skip to content

Commit 13861f1

Browse files
authored
Merge pull request #6 from holysoles/fix_indent_valkey_subchart_values
fixes for the valkey values section
2 parents 1316a97 + 66a9776 commit 13861f1

File tree

3 files changed

+48
-43
lines changed

3 files changed

+48
-43
lines changed

charts/pixelfed/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.3.0
18+
version: 0.3.1
1919

2020
# This is the version number of the application being deployed.
2121
# renovate:image=ghcr.io/mattlqx/docker-pixelfed

charts/pixelfed/README.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# pixelfed
22

3-
![Version: 0.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.12.3-nginx](https://img.shields.io/badge/AppVersion-v0.12.3--nginx-informational?style=flat-square)
3+
![Version: 0.3.1](https://img.shields.io/badge/Version-0.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.12.3-nginx](https://img.shields.io/badge/AppVersion-v0.12.3--nginx-informational?style=flat-square)
44

55
A Helm chart for deploying Pixelfed on Kubernetes
66

@@ -172,21 +172,22 @@ A Helm chart for deploying Pixelfed on Kubernetes
172172
| valkey.auth.enabled | bool | `true` | |
173173
| valkey.auth.existingSecret | string | `""` | |
174174
| valkey.auth.existingSecretPasswordKey | string | `"password"` | |
175-
| valkey.auth.metrics.enabled | bool | `false` | |
176-
| valkey.auth.persistentVolumeClaimRetentionPolicy.enabled | bool | `true` | |
177-
| valkey.auth.persistentVolumeClaimRetentionPolicy.whenDeleted | string | `"Retain"` | |
178-
| valkey.auth.persistentVolumeClaimRetentionPolicy.whenScaled | string | `"Retain"` | |
179-
| valkey.auth.primary.persistence.enabled | bool | `true` | |
180-
| valkey.auth.primary.persistence.existingClaim | string | `""` | |
181-
| valkey.auth.replica.persistence.enabled | bool | `true` | |
182-
| valkey.auth.replica.persistence.existingClaim | string | `""` | |
183-
| valkey.auth.resourcesPreset | string | `"small"` | |
184-
| valkey.auth.tls.authClients | bool | `true` | |
185-
| valkey.auth.tls.autoGenerated | bool | `false` | |
186-
| valkey.auth.tls.enabled | bool | `false` | |
187175
| valkey.enabled | bool | `true` | enable the bundled valkey sub chart from Bitnami. Must set to true if externalValkey.enabled=false |
188176
| valkey.fullnameOverride | string | `"valkey"` | |
189177
| valkey.global.storageClass | string | `""` | |
178+
| valkey.metrics.enabled | bool | `false` | we use a grafana exporter that logs into valkey directly, but you can enable this if you don't use that |
179+
| valkey.persistentVolumeClaimRetentionPolicy.enabled | bool | `true` | |
180+
| valkey.persistentVolumeClaimRetentionPolicy.whenDeleted | string | `"Retain"` | |
181+
| valkey.persistentVolumeClaimRetentionPolicy.whenScaled | string | `"Retain"` | |
182+
| valkey.primary.disableCommands | list | `["FLUSHALL"]` | Laravel requires the ability to call FLUSHDB, which is disabled by default |
183+
| valkey.primary.persistence.enabled | bool | `true` | |
184+
| valkey.primary.persistence.existingClaim | string | `""` | |
185+
| valkey.replica.persistence.enabled | bool | `true` | |
186+
| valkey.replica.persistence.existingClaim | string | `""` | |
187+
| valkey.resourcesPreset | string | `"small"` | definitions: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 Options: nano, micro, small, medium, large, xlarge, 2xlarge default: nano |
188+
| valkey.tls.authClients | bool | `true` | |
189+
| valkey.tls.autoGenerated | bool | `false` | |
190+
| valkey.tls.enabled | bool | `false` | |
190191
| volumeMounts | list | `[]` | Additional volumeMounts on the output Deployment definition. |
191192
| volumes | list | `[]` | Additional volumes on the output Deployment definition. |
192193

charts/pixelfed/values.yaml

Lines changed: 33 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -187,38 +187,42 @@ valkey:
187187
enabled: true
188188
existingSecret: ""
189189
existingSecretPasswordKey: "password"
190-
# TLS settings
191-
tls:
192-
enabled: false
193-
authClients: true
194-
autoGenerated: false
195-
196-
# primary (control plane) configuration
197-
primary:
198-
persistence:
199-
enabled: true
200-
existingClaim: ""
201-
202-
# valkey replica configuration
203-
replica:
204-
persistence:
205-
enabled: true
206-
existingClaim: ""
207-
208-
# persistnent volume retention policy for the StatefulSet
209-
persistentVolumeClaimRetentionPolicy:
190+
191+
# TLS settings
192+
tls:
193+
enabled: false
194+
authClients: true
195+
autoGenerated: false
196+
197+
# primary (control plane) configuration
198+
primary:
199+
# -- Laravel requires the ability to call FLUSHDB, which is disabled by default
200+
disableCommands:
201+
- FLUSHALL
202+
persistence:
203+
enabled: true
204+
existingClaim: ""
205+
206+
# valkey replica configuration
207+
replica:
208+
persistence:
210209
enabled: true
211-
whenScaled: Retain
212-
whenDeleted: Retain
210+
existingClaim: ""
213211

214-
metrics:
215-
# we use a grafana exporter that logs into valkey directly
216-
enabled: false
212+
# persistnent volume retention policy for the StatefulSet
213+
persistentVolumeClaimRetentionPolicy:
214+
enabled: true
215+
whenScaled: Retain
216+
whenDeleted: Retain
217+
218+
metrics:
219+
# -- we use a grafana exporter that logs into valkey directly, but you can enable this if you don't use that
220+
enabled: false
217221

218-
# definitions: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15
219-
# Options: nano, micro, small, medium, large, xlarge, 2xlarge
220-
# default: nano
221-
resourcesPreset: "small"
222+
# -- definitions: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15
223+
# Options: nano, micro, small, medium, large, xlarge, 2xlarge
224+
# default: nano
225+
resourcesPreset: "small"
222226

223227

224228
postgresql:

0 commit comments

Comments
 (0)