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.
12 lines
174 B
YAML
12 lines
174 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
namespace: privatebin
|
|
name: app
|
|
spec:
|
|
ports:
|
|
- port: 80
|
|
targetPort: 8080
|
|
protocol: TCP
|
|
selector:
|
|
name: app
|