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
| replicaCount | int |`1`| This will set the replicaset count more information can be found here: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/|
162
162
| resources | object |`{}`||
163
163
| securityContext | object |`{}`||
164
164
| service.port | int |`80`| This sets the ports more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#field-spec-ports|
165
+
| service.targetPort | int |`80`| Port to attach to on the pods. Also sets what port nginx listens on inside the container. |
165
166
| service.type | string |`"ClusterIP"`| This sets the service type more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types|
166
167
| serviceAccount.annotations | object |`{}`| Annotations to add to the service account |
167
168
| serviceAccount.automount | bool |`true`| Automatically mount a ServiceAccount's API credentials? |
@@ -171,21 +172,22 @@ A Helm chart for deploying Pixelfed on Kubernetes
Copy file name to clipboardExpand all lines: charts/pixelfed/values.yaml
+37-31Lines changed: 37 additions & 31 deletions
Original file line number
Diff line number
Diff line change
@@ -56,6 +56,8 @@ service:
56
56
type: ClusterIP
57
57
# -- This sets the ports more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#field-spec-ports
58
58
port: 80
59
+
# -- Port to attach to on the pods. Also sets what port nginx listens on inside the container.
60
+
targetPort: 80
59
61
60
62
# This block is for setting up the ingress for more information can be found here: https://kubernetes.io/docs/concepts/services-networking/ingress/
61
63
ingress:
@@ -87,12 +89,12 @@ resources: {}
87
89
# This is to setup the liveness and readiness probes more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
88
90
livenessProbe:
89
91
httpGet:
90
-
path: /
92
+
path: /api/service/health-check
91
93
port: http
92
94
93
95
readinessProbe:
94
96
httpGet:
95
-
path: /
97
+
path: /api/service/health-check
96
98
port: http
97
99
98
100
# This section is for setting up autoscaling more information can be found here: https://kubernetes.io/docs/concepts/workloads/autoscaling/
@@ -185,38 +187,42 @@ valkey:
185
187
enabled: true
186
188
existingSecret: ""
187
189
existingSecretPasswordKey: "password"
188
-
# TLS settings
189
-
tls:
190
-
enabled: false
191
-
authClients: true
192
-
autoGenerated: false
193
-
194
-
# primary (control plane) configuration
195
-
primary:
196
-
persistence:
197
-
enabled: true
198
-
existingClaim: ""
199
-
200
-
# valkey replica configuration
201
-
replica:
202
-
persistence:
203
-
enabled: true
204
-
existingClaim: ""
205
-
206
-
# persistnent volume retention policy for the StatefulSet
207
-
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:
208
209
enabled: true
209
-
whenScaled: Retain
210
-
whenDeleted: Retain
210
+
existingClaim: ""
211
211
212
-
metrics:
213
-
# we use a grafana exporter that logs into valkey directly
214
-
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
0 commit comments