mirror of
https://github.com/rubenhensen/k8scd.git
synced 2026-09-17 18:22:54 +02:00
25 lines
606 B
YAML
25 lines
606 B
YAML
kind: Deployment
|
|
apiVersion: apps/v1
|
|
metadata:
|
|
name: restore-ubuntu
|
|
labels:
|
|
app: restore-ubuntu
|
|
# namespace: immich # edit in apps folder
|
|
# docker run -d --restart=always -p 3001:3001 -v uptime-kuma:/app/data --name uptime-kuma louislam/uptime-kuma:1
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: restore-ubuntu
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: restore-ubuntu
|
|
spec:
|
|
containers:
|
|
- name: restore-ubuntu
|
|
image: ubuntu:plucky
|
|
volumes:
|
|
- name: restorevol
|
|
persistentVolumeClaim:
|
|
claimName: backupofimmich |