| 12345678910111213141516171819202122232425262728 |
- apiVersion: v1
- kind: Pod
- metadata:
- name: restic-cli
- spec:
- containers:
- - command: ["/bin/sleep"]
- args: ["infinity"]
- image: restic/restic:0.18.1
- imagePullPolicy: IfNotPresent
- name: restic-cli
- volumeMounts:
- - name: restic-repo-vol
- mountPath: /data/repo
- - name: backup-data-vol
- mountPath: /data/glusterfs
- volumes:
- - name: restic-repo-vol
- hostPath:
- path: /data/backup
- type: Directory
- - name: backup-data-vol
- hostPath:
- path: /mnt
- type: Directory
- restartPolicy: Never
- nodeSelector:
- kubernetes.io/hostname: raspberrypi4
|