Guillaume B.B. Van Hemmen
d162d7651d
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.
17 lines
383 B
YAML
17 lines
383 B
YAML
#apiVersion: v1
|
|
#kind: Pod
|
|
#metadata:
|
|
# namespace: privatebin
|
|
# name: data-transfer-pod
|
|
#spec:
|
|
# containers:
|
|
# - name: transfer
|
|
# image: busybox
|
|
# command: ["sleep", "3600"]
|
|
# volumeMounts:
|
|
# - mountPath: /srv/data
|
|
# name: longhorn-volume
|
|
# volumes:
|
|
# - name: longhorn-volume
|
|
# persistentVolumeClaim:
|
|
# claimName: privatebin-data
|