update extra volumes to allow php config updates; also reload deployment on configmap changes

This commit is contained in:
jessebot
2025-01-19 13:40:41 +01:00
parent 1ec6aa2310
commit 967acbd85b
5 changed files with 66 additions and 13 deletions
+22 -4
View File
@@ -127,15 +127,15 @@ autoscaling:
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80
# -- Additional volumes on the output Deployment definition.
volumes: []
# -- Additional volumes on the output Deployment definition
extraVolumes: []
# - name: foo
# secret:
# secretName: mysecret
# optional: false
# -- Additional volumeMounts on the output Deployment definition.
volumeMounts: []
# -- Additional volumeMounts on the output Deployment definition
extraVolumeMounts: []
# - name: foo
# mountPath: "/etc/foo"
# readOnly: true
@@ -266,6 +266,24 @@ postgresql:
global:
storageClass: ""
# -- PHP Configuration files
# Will be injected in /usr/local/etc/php-fpm.d
phpConfigs: {}
# www.conf: |-
# [www]
# user = www-data
# group = www-data
# www.conf: |-
# [www]
# security.limit_extensions = .php .css .js .html
# listen = 127.0.0.1:9000
# pm = dynamic
# pm.max_children = 350
# pm.start_servers = 100
# pm.min_spare_servers = 100
# pm.max_spare_servers = 280
pixelfed:
db:
# -- options: sqlite mysql pgsql sqlsrv