hw.k8s/hw/deploy.yaml

33 lines
604 B
YAML
Raw Normal View History

2018-02-01 13:31:52 -08:00
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: hw
labels:
app: hw
spec:
replicas: 10
selector:
matchLabels:
app: hw
template:
metadata:
labels:
app: hw
spec:
containers:
2018-02-07 15:13:56 -08:00
- name: hw
2018-02-07 15:19:18 -08:00
image: smcquay/hw:v0.0.10
2018-02-01 13:31:52 -08:00
ports:
- containerPort: 8080
2018-02-07 15:13:56 -08:00
livenessProbe:
httpGet:
path: /live
port: 8080
initialDelaySeconds: 5
periodSeconds: 5
readinessProbe:
httpGet:
path: /ready
port: 8080
periodSeconds: 5