We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c2878b commit bbc6b29Copy full SHA for bbc6b29
deployment/deployment.yaml
@@ -23,7 +23,7 @@ spec:
23
serviceAccountName: azure-k8s-autopilot
24
containers:
25
- name: azure-k8s-autopilot
26
- image: webdevops/azure-k8s-autopilot:development
+ image: webdevops/azure-k8s-autopilot:latest
27
imagePullPolicy: Always
28
env:
29
# General settings
@@ -92,4 +92,14 @@ spec:
92
memory: 200Mi
93
requests:
94
cpu: 10m
95
-
+ livenessProbe: &probe
96
+ httpGet:
97
+ path: /metrics
98
+ port: 8080
99
+ periodSeconds: 15
100
+ initialDelaySeconds: 10
101
+ readinessProbe:
102
+ <<: *probe
103
+ initialDelaySeconds: 2
104
+ periodSeconds: 5
105
+ failureThreshold: 30
0 commit comments