Poddlers: add liveness and readiness monitoring
Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
This commit is contained in:
parent
6c38d7b61a
commit
bac0e1e18f
2 changed files with 18 additions and 0 deletions
|
@ -31,6 +31,21 @@ spec:
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
{{ common_volume_mounts() }}
|
{{ common_volume_mounts() }}
|
||||||
|
|
||||||
|
livenessProbe:
|
||||||
|
timeoutSeconds: 10
|
||||||
|
initialDelaySeconds: 5
|
||||||
|
periodSeconds: 60
|
||||||
|
httpGet:
|
||||||
|
path: "/live"
|
||||||
|
port: 8070
|
||||||
|
readinessProbe:
|
||||||
|
timeoutSeconds: 10
|
||||||
|
initialDelaySeconds: 10
|
||||||
|
periodSeconds: 60
|
||||||
|
httpGet:
|
||||||
|
path: "/ready"
|
||||||
|
port: 8070
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
{{ common_volumes() }}
|
{{ common_volumes() }}
|
||||||
|
|
||||||
|
|
|
@ -409,6 +409,9 @@ pagure_api_key = "{{ toddlers_pagure_fas_groups_sync_token }}"
|
||||||
infra-sig = 'fedora-infra'
|
infra-sig = 'fedora-infra'
|
||||||
metrics-sig = 'metrics'
|
metrics-sig = 'metrics'
|
||||||
|
|
||||||
|
[monitoring]
|
||||||
|
port = 8070
|
||||||
|
|
||||||
[qos]
|
[qos]
|
||||||
prefetch_size = 0
|
prefetch_size = 0
|
||||||
prefetch_count = 1
|
prefetch_count = 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue