flatpak-indexer: Fix the mount path for the redis data volume

Redis is configured to store its data in /data, so mount the persistent
volume there rather than on /var/lib/redis/data.

Signed-off-by: Owen W. Taylor <otaylor@fishsoup.net>
This commit is contained in:
Owen W. Taylor 2021-03-29 13:35:55 -04:00
parent 30c5662b93
commit 94ad45c15d

View file

@ -207,7 +207,7 @@ spec:
timeoutSeconds: 1
resources: {}
volumeMounts:
- mountPath: /var/lib/redis/data
- mountPath: /data
name: redis-data-volume
dnsPolicy: ClusterFirst
restartPolicy: Always