gitea: clean postgres volume from lost+found

This commit is contained in:
Nico Schottelius 2021-06-27 20:09:30 +02:00
parent 9a6f634983
commit 423cf93f1b
2 changed files with 12 additions and 1 deletions

View File

@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes # This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version. # to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/) # Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.3 version: 0.1.5
# This is the version number of the application being deployed. This version number should be # This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to # incremented each time you make changes to the application. Versions are not expected to

View File

@ -24,6 +24,15 @@ spec:
volumeMounts: volumeMounts:
- name: etcletsencrypt - name: etcletsencrypt
mountPath: "/etc/letsencrypt" mountPath: "/etc/letsencrypt"
- name: remove-lost-found
image: busybox
command:
- sh
- -c
- test -d /data/lost+found && rmdir /data/lost+found
volumeMounts:
- name: postgres-data
mountPath: "/data"
containers: containers:
# This container will only start *after* the cert has been placed # This container will only start *after* the cert has been placed
- name: nginx - name: nginx
@ -55,6 +64,8 @@ spec:
value: "1000" value: "1000"
- name: USER_GID - name: USER_GID
value: "1000" value: "1000"
- name: GITEA__DOMAIN
value: "{{ tpl .Values.fqdn . }}"
- name: GITEA__database__DB_TYPE - name: GITEA__database__DB_TYPE
value: "postgres" value: "postgres"
- name: GITEA__database__HOST - name: GITEA__database__HOST