Set reasonable default probe timeouts
This change modifies the default values for all of the readiness and liveness probes to something a bit less aggressive, namely the default timeout of 1 second. Change-Id: Ib389aebb2450f8ed134ef8f75110b559d1a4f2ee
This commit is contained in:
parent
f7ef7a6ef0
commit
c775184bdd
@ -14,7 +14,7 @@ apiVersion: v1
|
||||
appVersion: v1.0.0
|
||||
description: OpenStack-Helm Nova
|
||||
name: nova
|
||||
version: 0.2.4
|
||||
version: 0.2.5
|
||||
home: https://docs.openstack.org/nova/latest/
|
||||
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Nova/OpenStack_Project_Nova_vertical.png
|
||||
sources:
|
||||
|
@ -2252,18 +2252,28 @@ pod:
|
||||
enabled: True
|
||||
params:
|
||||
initialDelaySeconds: 30
|
||||
periodSeconds: 60
|
||||
timeoutSeconds: 15
|
||||
readiness:
|
||||
enabled: True
|
||||
params:
|
||||
initialDelaySeconds: 30
|
||||
periodSeconds: 60
|
||||
timeoutSeconds: 15
|
||||
api-osapi:
|
||||
default:
|
||||
liveness:
|
||||
enabled: True
|
||||
params:
|
||||
initialDelaySeconds: 30
|
||||
periodSeconds: 60
|
||||
timeoutSeconds: 15
|
||||
readiness:
|
||||
enabled: True
|
||||
params:
|
||||
initialDelaySeconds: 30
|
||||
periodSeconds: 60
|
||||
timeoutSeconds: 15
|
||||
conductor:
|
||||
default:
|
||||
liveness:
|
||||
@ -2298,22 +2308,28 @@ pod:
|
||||
enabled: True
|
||||
params:
|
||||
initialDelaySeconds: 30
|
||||
periodSeconds: 60
|
||||
timeoutSeconds: 15
|
||||
readiness:
|
||||
enabled: True
|
||||
params:
|
||||
initialDelaySeconds: 30
|
||||
periodSeconds: 60
|
||||
timeoutSeconds: 15
|
||||
placement:
|
||||
default:
|
||||
liveness:
|
||||
enabled: True
|
||||
params:
|
||||
initialDelaySeconds: 50
|
||||
periodSeconds: 10
|
||||
periodSeconds: 30
|
||||
timeoutSeconds: 10
|
||||
readiness:
|
||||
enabled: True
|
||||
params:
|
||||
initialDelaySeconds: 15
|
||||
periodSeconds: 10
|
||||
periodSeconds: 30
|
||||
timeoutSeconds: 10
|
||||
scheduler:
|
||||
default:
|
||||
liveness:
|
||||
@ -2334,10 +2350,14 @@ pod:
|
||||
enabled: True
|
||||
params:
|
||||
initialDelaySeconds: 30
|
||||
periodSeconds: 60
|
||||
timeoutSeconds: 15
|
||||
readiness:
|
||||
enabled: True
|
||||
params:
|
||||
initialDelaySeconds: 30
|
||||
periodSeconds: 60
|
||||
timeoutSeconds: 15
|
||||
security_context:
|
||||
nova:
|
||||
pod:
|
||||
|
@ -25,4 +25,5 @@ nova:
|
||||
- 0.2.2 Adding rabbitmq TLS logic
|
||||
- 0.2.3 Replace deprecated configuration ``[vnc]/vncserver_proxyclient_address``
|
||||
- 0.2.4 Mount rabbitmq TLS secret
|
||||
- 0.2.5 Set reasonable default probe timeouts
|
||||
...
|
||||
|
Loading…
x
Reference in New Issue
Block a user