mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-06-09 08:55:55 -04:00
Merge pull request #76955 from ialidzhikov/readiness-probe
Add probes for Kibana
This commit is contained in:
commit
8c3b7d7679
1 changed files with 12 additions and 0 deletions
|
|
@ -36,3 +36,15 @@ spec:
|
|||
- containerPort: 5601
|
||||
name: ui
|
||||
protocol: TCP
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /api/status
|
||||
port: ui
|
||||
initialDelaySeconds: 5
|
||||
timeoutSeconds: 10
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /api/status
|
||||
port: ui
|
||||
initialDelaySeconds: 5
|
||||
timeoutSeconds: 10
|
||||
|
|
|
|||
Loading…
Reference in a new issue