Composer対応
All checks were successful
Helm Chart Release / release-chart (push) Successful in 12s

This commit is contained in:
2026-02-06 02:04:52 +00:00
parent 58c02e47a9
commit 6ab36861ab

View File

@@ -0,0 +1,15 @@
{{- if and .Values.composer.enabled .Values.composer.useComposerJson }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "phpfpm.fullname" . }}-composer-config
labels:
{{- include "phpfpm.labels" . | nindent 4 }}
data:
composer.json: |
{{ .Values.composer.composerJson | indent 4 }}
{{- if .Values.composer.composerLock }}
composer.lock: |
{{ .Values.composer.composerLock | indent 4 }}
{{- end }}
{{- end }}