Compare commits
2 Commits
02f5cb55c4
...
eaf642ca49
Author | SHA1 | Date | |
---|---|---|---|
eaf642ca49
|
|||
72f083c444
|
44
kustomize/app/deployment.yaml
Normal file
44
kustomize/app/deployment.yaml
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
---
|
||||||
|
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
|
@ -28,7 +28,6 @@ spec:
|
|||||||
containers:
|
containers:
|
||||||
- name: toy
|
- name: toy
|
||||||
image: git.kill0.net/ryanc/toy:latest
|
image: git.kill0.net/ryanc/toy:latest
|
||||||
imagePullPolicy: Always
|
|
||||||
ports:
|
ports:
|
||||||
- name: web
|
- name: web
|
||||||
containerPort: 4567
|
containerPort: 4567
|
||||||
|
Reference in New Issue
Block a user