k3s/data-restorer.yaml

18 lines
403 B
YAML
Raw Normal View History

2026-06-11 13:49:15 -04:00
apiVersion: v1
kind: Pod
metadata:
name: data-restorer
2026-06-13 11:05:56 -04:00
namespace: default
2026-06-11 13:49:15 -04:00
spec:
containers:
- name: alpine
image: alpine:latest
command: ["/bin/sh", "-c", "apk add --no-cache vim rsync coreutils && sleep infinity"]
2026-06-11 13:49:15 -04:00
volumeMounts:
- mountPath: /restore
name: target-volume
volumes:
- name: target-volume
persistentVolumeClaim:
2026-06-16 13:25:12 -04:00
claimName: readmeabook-config-pvc