privateBin/01-pvc.yaml
Guillaume B.B. Van Hemmen d162d7651d #0000 - Add Kubernetes manifests for PrivateBin deployment
Introduced Kubernetes YAML configurations for deploying PrivateBin. This includes namespace, PVC, deployment, service, ingress, and a utility pod for data restoration. Updated README with instructions and added an MIT license file.
2024-12-28 23:34:57 +01:00

11 lines
188 B
YAML

apiVersion: v1
kind: PersistentVolumeClaim
metadata:
namespace: privatebin
name: privatebin-data
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi