toy/kustomize/deployment.yaml
Ryan Cavicchioni 1262f37b99
All checks were successful
Gitea Actions Demo / release-image (push) Successful in 1m2s
Mark SESSION_SECRET as optional
2024-07-05 15:25:08 -05:00

32 lines
602 B
YAML

---
kind: Deployment
apiVersion: apps/v1
metadata:
name: toy
labels:
app: toy
spec:
replicas: 3
selector:
matchLabels:
app: toy
template:
metadata:
labels:
app: toy
spec:
containers:
- name: toy
image: git.kill0.net/ryanc/toy:latest
ports:
- name: web
containerPort: 4567
env:
- name: SESSION_SECRET
valueFrom:
secretKeyRef:
name: toy-session-secret
key: toy-session-secret
optional: true