Compare commits

...

3 commits
v2.3.0 ... main

Author SHA1 Message Date
af368b3e60 New release 2.3.1 2025-03-21 09:33:32 +01:00
d5d3bad49d fix typo 2025-03-21 09:31:47 +01:00
fe1bcc4ea0 fix quote string 2025-03-21 09:31:02 +01:00
2 changed files with 4 additions and 4 deletions

View file

@ -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.3.0
appVersion: "2.3.0"
version: 2.3.1
appVersion: "2.3.1"
dependencies:
- name: postgresql

View file

@ -66,9 +66,9 @@ spec:
- name: {{ .name }}
mountPath: {{ .path }}
{{- end}}
{{- range .Value.extraPhpIni }}
{{- range .Values.extraPhpIni }}
- name: php-config
mountPath: {{ printf "/usr/local/etc/php/conf.d/%s .conf }}
mountPath: {{ printf "/usr/local/etc/php/conf.d/%s" .conf }}
readOnly: true
subPath: {{ .key }}
{{- end}}