Add tentative support for php ini config
This commit is contained in:
parent
3114197aaa
commit
8383c4330b
3 changed files with 23 additions and 2 deletions
|
@ -4,8 +4,8 @@ name: basic-web-app
|
|||
PullName: basic-app-puller
|
||||
description: A basic Helm chart to have PHP webapps in Kubernetes. It supports webhook for pulling from gitea
|
||||
type: application
|
||||
version: 2.2.3
|
||||
appVersion: "2.2.3"
|
||||
version: 2.3.0
|
||||
appVersion: "2.3.0"
|
||||
|
||||
dependencies:
|
||||
- name: postgresql
|
||||
|
|
|
@ -66,6 +66,12 @@ spec:
|
|||
- name: {{ .name }}
|
||||
mountPath: {{ .path }}
|
||||
{{- end}}
|
||||
{{- range .Value.extraPhpIni }}
|
||||
- name: php-config
|
||||
mountPath: {{ printf "/usr/local/etc/php/conf.d/%s .conf }}
|
||||
readOnly: true
|
||||
subPath: {{ .key }}
|
||||
{{- end}}
|
||||
env:
|
||||
{{- with .Values.env.plain }}
|
||||
{{- toYaml . | nindent 12 }}
|
||||
|
@ -169,6 +175,16 @@ spec:
|
|||
- key: {{ .Values.configWeb.key }}
|
||||
path: {{ .Values.configWeb.key }}
|
||||
{{- end }}
|
||||
{{- if (gt (len .Values.extraPhpIni) 0) }}
|
||||
- name: php-config
|
||||
secret:
|
||||
secretName: php-config-secret
|
||||
{{- range .Values.extraPhpIni }}
|
||||
items:
|
||||
- key: {{ .key }}
|
||||
path: {{ .key }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- range .Values.extraVolumesWeb }}
|
||||
- name: {{ .name }}
|
||||
persistentVolumeClaim:
|
||||
|
|
|
@ -94,3 +94,8 @@ env:
|
|||
# - name: API_KEY
|
||||
# secretName: app-secrets
|
||||
# key: api.key
|
||||
#
|
||||
extraPhpIni: []
|
||||
# Must add a secret 'php-config-secret'
|
||||
# - key: upload-limit
|
||||
# conf: upload-limit.ini
|
||||
|
|
Loading…
Add table
Reference in a new issue