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
|
appVersion: v1.0.0
|
||||||
description: OpenStack-Helm Nova
|
description: OpenStack-Helm Nova
|
||||||
name: nova
|
name: nova
|
||||||
version: 0.2.4
|
version: 0.2.5
|
||||||
home: https://docs.openstack.org/nova/latest/
|
home: https://docs.openstack.org/nova/latest/
|
||||||
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Nova/OpenStack_Project_Nova_vertical.png
|
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Nova/OpenStack_Project_Nova_vertical.png
|
||||||
sources:
|
sources:
|
||||||
|
@ -2252,18 +2252,28 @@ pod:
|
|||||||
enabled: True
|
enabled: True
|
||||||
params:
|
params:
|
||||||
initialDelaySeconds: 30
|
initialDelaySeconds: 30
|
||||||
|
periodSeconds: 60
|
||||||
|
timeoutSeconds: 15
|
||||||
readiness:
|
readiness:
|
||||||
enabled: True
|
enabled: True
|
||||||
params:
|
params:
|
||||||
|
initialDelaySeconds: 30
|
||||||
|
periodSeconds: 60
|
||||||
|
timeoutSeconds: 15
|
||||||
api-osapi:
|
api-osapi:
|
||||||
default:
|
default:
|
||||||
liveness:
|
liveness:
|
||||||
enabled: True
|
enabled: True
|
||||||
params:
|
params:
|
||||||
initialDelaySeconds: 30
|
initialDelaySeconds: 30
|
||||||
|
periodSeconds: 60
|
||||||
|
timeoutSeconds: 15
|
||||||
readiness:
|
readiness:
|
||||||
enabled: True
|
enabled: True
|
||||||
params:
|
params:
|
||||||
|
initialDelaySeconds: 30
|
||||||
|
periodSeconds: 60
|
||||||
|
timeoutSeconds: 15
|
||||||
conductor:
|
conductor:
|
||||||
default:
|
default:
|
||||||
liveness:
|
liveness:
|
||||||
@ -2298,22 +2308,28 @@ pod:
|
|||||||
enabled: True
|
enabled: True
|
||||||
params:
|
params:
|
||||||
initialDelaySeconds: 30
|
initialDelaySeconds: 30
|
||||||
|
periodSeconds: 60
|
||||||
|
timeoutSeconds: 15
|
||||||
readiness:
|
readiness:
|
||||||
enabled: True
|
enabled: True
|
||||||
params:
|
params:
|
||||||
initialDelaySeconds: 30
|
initialDelaySeconds: 30
|
||||||
|
periodSeconds: 60
|
||||||
|
timeoutSeconds: 15
|
||||||
placement:
|
placement:
|
||||||
default:
|
default:
|
||||||
liveness:
|
liveness:
|
||||||
enabled: True
|
enabled: True
|
||||||
params:
|
params:
|
||||||
initialDelaySeconds: 50
|
initialDelaySeconds: 50
|
||||||
periodSeconds: 10
|
periodSeconds: 30
|
||||||
|
timeoutSeconds: 10
|
||||||
readiness:
|
readiness:
|
||||||
enabled: True
|
enabled: True
|
||||||
params:
|
params:
|
||||||
initialDelaySeconds: 15
|
initialDelaySeconds: 15
|
||||||
periodSeconds: 10
|
periodSeconds: 30
|
||||||
|
timeoutSeconds: 10
|
||||||
scheduler:
|
scheduler:
|
||||||
default:
|
default:
|
||||||
liveness:
|
liveness:
|
||||||
@ -2334,10 +2350,14 @@ pod:
|
|||||||
enabled: True
|
enabled: True
|
||||||
params:
|
params:
|
||||||
initialDelaySeconds: 30
|
initialDelaySeconds: 30
|
||||||
|
periodSeconds: 60
|
||||||
|
timeoutSeconds: 15
|
||||||
readiness:
|
readiness:
|
||||||
enabled: True
|
enabled: True
|
||||||
params:
|
params:
|
||||||
initialDelaySeconds: 30
|
initialDelaySeconds: 30
|
||||||
|
periodSeconds: 60
|
||||||
|
timeoutSeconds: 15
|
||||||
security_context:
|
security_context:
|
||||||
nova:
|
nova:
|
||||||
pod:
|
pod:
|
||||||
|
@ -25,4 +25,5 @@ nova:
|
|||||||
- 0.2.2 Adding rabbitmq TLS logic
|
- 0.2.2 Adding rabbitmq TLS logic
|
||||||
- 0.2.3 Replace deprecated configuration ``[vnc]/vncserver_proxyclient_address``
|
- 0.2.3 Replace deprecated configuration ``[vnc]/vncserver_proxyclient_address``
|
||||||
- 0.2.4 Mount rabbitmq TLS secret
|
- 0.2.4 Mount rabbitmq TLS secret
|
||||||
|
- 0.2.5 Set reasonable default probe timeouts
|
||||||
...
|
...
|
||||||
|
Loading…
x
Reference in New Issue
Block a user