converge/kubernetes/deployment.yaml
Erik Brakkee b7f3de88bb Updated deployment with username and password settings.
index.html template now also uses the configured password.
2024-07-26 21:11:40 +02:00

32 lines
631 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: converge
name: converge
namespace: wamblee-org
spec:
replicas: 1
selector:
matchLabels:
app: converge
template:
metadata:
labels:
app: converge
spec:
containers:
- image: your.repo.com/converge:1.0
imagePullPolicy: Always
name: converge
ports:
- containerPort: 8000
env:
- name: CONVERGE_USERNAME
value: converge
- name: CONVERGE_PASSWORD
# change this password in your final deployment
value: "abc123"