infrastructure/k8s/hack/volume-mount.yaml
Peter Kurfer cd8229fb3d
All checks were successful
continuous-integration/drone/push Build is passing
chore: update apps
- update KeyDB
- update NextCloud
- update  Forgejo
- add Redis to NocoDB
2023-10-20 14:42:23 +02:00

19 lines
No EOL
400 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: backup
namespace: nextcloud
spec:
restartPolicy: Never
volumes:
- name: vol
persistentVolumeClaim:
claimName: nocodb-metadata
containers:
- name: backup
image: "docker.io/alpine:latest"
command: [ "/bin/ash", "-c", "--" ]
args: [ "while true; do sleep 30; done;" ]
volumeMounts:
- name: vol
mountPath: /data