diff --git a/apps/k8s01/blog/blog.yaml b/apps/k8s01/blog/blog.yaml index 007e16c8c187eee8eb6f5462bddcfb6b70e16685..3f6791da357957707384aa6843e62aea7777dbc2 100644 --- a/apps/k8s01/blog/blog.yaml +++ b/apps/k8s01/blog/blog.yaml @@ -38,6 +38,20 @@ spec: limits: cpu: 100m memory: 256Mi + livenessProbe: + httpGet: + path: /status.txt + port: http + failureThreshold: 3 + periodSeconds: 5 + readinessProbe: + httpGet: + path: /status.txt + port: http + initialDelaySeconds: 5 + failureThreshold: 1 + successThreshold: 3 + periodSeconds: 5 --- apiVersion: v1 kind: Service