Compare commits

..

3 Commits

Author SHA1 Message Date
02f5cb55c4
Remove Deployment in favor of a Rollout
All checks were successful
Gitea Actions Demo / lint (push) Successful in 1m20s
Gitea Actions Demo / test (push) Successful in 1m18s
Gitea Actions Demo / release-image (push) Successful in 1m18s
2024-08-11 17:53:08 -05:00
87156eda3d
Add /status/:code 2024-08-11 17:52:44 -05:00
22b9593ab1
Add Argo Rollout 2024-08-11 17:52:44 -05:00
2 changed files with 1 additions and 44 deletions

View File

@ -1,44 +0,0 @@
---
kind: Deployment
apiVersion: apps/v1
metadata:
annotations:
reloader.stakater.com/auto: "true"
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: session_secret
optional: true
livenessProbe:
httpGet:
path: /livez
port: 4567
initialDelaySeconds: 3
periodSeconds: 3
readinessProbe:
httpGet:
path: /readyz
port: 4567
initialDelaySeconds: 5
periodSeconds: 5

View File

@ -28,6 +28,7 @@ spec:
containers:
- name: toy
image: git.kill0.net/ryanc/toy:latest
imagePullPolicy: Always
ports:
- name: web
containerPort: 4567