- Added debug mode, structured ConfigMap pattern, and README to all charts - Migrated all flat-structure charts to hierarchical values under chartname key - Fixed templates to use correct hierarchical paths - Renamed helm-rustical key to rustical, added HPA support - Fixed ingress YAML parsing (oxicloud), nested env vars (rustical) - Pushed all normalized charts to OCI registry as 1.0.0+ and updated ArgoCD apps
10 lines
372 B
YAML
10 lines
372 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "dokuwiki.fullname" . }}-config
|
|
labels:
|
|
{{- include "dokuwiki.labels" . | nindent 4 }}
|
|
data:
|
|
PHP_TIMEZONE: {{ .Values.dokuwiki.config.php.timezone | quote }}
|
|
PHP_MEMORYLIMIT: {{ .Values.dokuwiki.config.php.memoryLimit | quote }}
|
|
PHP_UPLOADLIMIT: {{ .Values.dokuwiki.config.php.uploadLimit | quote }}
|