Files
workshop-probes/03-webserver-with-probes.yaml
marco.verleun 807b7320a3 Courseware
2021-06-29 07:48:53 +02:00

41 lines
836 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: apache
labels:
app: apache
spec:
replicas: 3
selector:
matchLabels:
app: apache
template:
metadata:
labels:
app: apache
spec:
containers:
- name: httpd
image: httpd
ports:
- containerPort: 80
resources:
limits:
cpu: 30m
memory: 256Mi
livenessProbe:
httpGet:
path: /liveness
port: 80
initialDelaySeconds: 5
periodSeconds: 5
failureThreshold: 30
successThreshold: 1
readinessProbe:
httpGet:
path: /readiness
port: 80
initialDelaySeconds: 30
periodSeconds: 1
failureThreshold: 1
successThreshold: 1