fix: use subdirectories to avoid Longhorn lost+found conflict

This commit is contained in:
OpenCode Test
2025-12-25 06:36:26 -08:00
parent badcd3b79f
commit 7b677fac79
2 changed files with 16 additions and 33 deletions

View File

@@ -45,28 +45,18 @@ spec:
affinity:
{{ $aff | indent 8 }}
{{- end }}
{{- $tols := include "tline.tolerations" (dict "Values" .Values "schedulingClass" .Values.minio.schedulingClass) }}
{{- if $tols }}
tolerations:
{{ $tols | indent 8 }}
{{- end }}
initContainers:
- name: cleanup-lost-found
image: busybox:1.36
command:
- sh
- -c
- rm -rf /data/lost+found || true
volumeMounts:
- name: data
mountPath: /data
containers:
{{- $tols := include "tline.tolerations" (dict "Values" .Values "schedulingClass" .Values.minio.schedulingClass) }}
{{- if $tols }}
tolerations:
{{ $tols | indent 8 }}
{{- end }}
containers:
- name: minio
image: {{ printf "%s:%s" .Values.images.minio.repository .Values.images.minio.tag | quote }}
imagePullPolicy: {{ .Values.images.minio.pullPolicy }}
args:
- server
- /data
- /data/miniodata
- "--console-address=:{{ .Values.minio.service.consolePort }}"
ports:
- name: s3
@@ -101,6 +91,7 @@ spec:
volumeMounts:
- name: data
mountPath: /data
subPath: miniodata
volumeClaimTemplates:
- metadata:
name: data

View File

@@ -41,22 +41,12 @@ spec:
affinity:
{{ $aff | indent 8 }}
{{- end }}
{{- $tols := include "tline.tolerations" (dict "Values" .Values "schedulingClass" .Values.postgres.schedulingClass) }}
{{- if $tols }}
tolerations:
{{ $tols | indent 8 }}
{{- end }}
initContainers:
- name: cleanup-lost-found
image: busybox:1.36
command:
- sh
- -c
- rm -rf /var/lib/postgresql/data/lost+found || true
volumeMounts:
- name: data
mountPath: /var/lib/postgresql/data
containers:
{{- $tols := include "tline.tolerations" (dict "Values" .Values "schedulingClass" .Values.postgres.schedulingClass) }}
{{- if $tols }}
tolerations:
{{ $tols | indent 8 }}
{{- end }}
containers:
- name: postgres
image: {{ printf "%s:%s" .Values.images.postgres.repository .Values.images.postgres.tag | quote }}
imagePullPolicy: {{ .Values.images.postgres.pullPolicy }}
@@ -73,6 +63,8 @@ spec:
secretKeyRef:
name: {{ include "tline.secretName" . }}
key: POSTGRES_PASSWORD
- name: PGDATA
value: /var/lib/postgresql/data/pgdata
readinessProbe:
exec:
command: