Peter Kurfer
cd8229fb3d
All checks were successful
continuous-integration/drone/push Build is passing
- update KeyDB - update NextCloud - update Forgejo - add Redis to NocoDB
19 lines
No EOL
400 B
YAML
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 |