rompr pod

This commit is contained in:
2025-12-08 12:52:34 +01:00
parent 347c785138
commit 01bcf447b9

23
rompr.pod.yaml Normal file
View File

@@ -0,0 +1,23 @@
#podman run -d --pull=always --replace -p 127.0.0.1:8081:80
# --mount=type=bind,source=/var/lib/rompr,destination=/rompr
# --tz=Europe/Berlin --name=rompr cr.wks/rompr:latest
apiVersion: v1
kind: Pod
metadata:
name: rompr
spec:
containers:
- name: rompr
image: cr.chaos/rompr:latest
ports:
- containerPort: 80
hostIP: 127.0.0.1
hostPort: 8081
volumeMounts:
- name: rompr-data-pvc
mountPath: /rompr
volumes:
- name: rompr-data-pvc
persistentVolumeClaim:
claimName: rompr-data
restartPolicy: Always