29 lines
629 B
YAML
29 lines
629 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: restic-debug-pod
|
||
|
namespace: gitea
|
||
|
spec:
|
||
|
serviceAccountName: restic-sa
|
||
|
volumes:
|
||
|
- name: restic-backup-vol
|
||
|
persistentVolumeClaim:
|
||
|
claimName: restic-backup-vol
|
||
|
- name: gitea-data
|
||
|
persistentVolumeClaim:
|
||
|
claimName: gitea-shared-storage
|
||
|
containers:
|
||
|
- name: restic-debug
|
||
|
image: git.namesny.com/cluster/restic:latest
|
||
|
command: ["/bin/sh", "-c"]
|
||
|
args: ["sleep infinity"]
|
||
|
envFrom:
|
||
|
- secretRef:
|
||
|
name: restic-secret
|
||
|
volumeMounts:
|
||
|
- name: restic-backup-vol
|
||
|
mountPath: /backup
|
||
|
- name: gitea-data
|
||
|
mountPath: /gitea
|
||
|
|