@@ -40,6 +40,7 @@ nova_cell_services:
40
40
enabled : " {{ nova_console == 'spice' }}"
41
41
volumes : " {{ nova_spicehtml5proxy_default_volumes + nova_spicehtml5proxy_extra_volumes }}"
42
42
dimensions : " {{ nova_spicehtml5proxy_dimensions }}"
43
+ healthcheck : " {{ nova_spicehtml5proxy_healthcheck }}"
43
44
nova-serialproxy :
44
45
container_name : " nova_serialproxy"
45
46
group : " {{ nova_cell_serialproxy_group }}"
@@ -296,6 +297,19 @@ nova_novncproxy_healthcheck:
296
297
test : " {% if nova_novncproxy_enable_healthchecks | bool %}{{ nova_novncproxy_healthcheck_test }}{% else %}NONE{% endif %}"
297
298
timeout : " {{ nova_novncproxy_healthcheck_timeout }}"
298
299
300
+ nova_spicehtml5proxy_enable_healthchecks : " {{ enable_container_healthchecks }}"
301
+ nova_spicehtml5proxy_healthcheck_interval : " {{ default_container_healthcheck_interval }}"
302
+ nova_spicehtml5proxy_healthcheck_retries : " {{ default_container_healthcheck_retries }}"
303
+ nova_spicehtml5proxy_healthcheck_start_period : " {{ default_container_healthcheck_start_period }}"
304
+ nova_spicehtml5proxy_healthcheck_test : ["CMD-SHELL", "healthcheck_curl http://{{ api_interface_address | put_address_in_context('url') }}:{{ nova_spicehtml5proxy_listen_port }}/spice_auto.html"]
305
+ nova_spicehtml5proxy_healthcheck_timeout : " {{ default_container_healthcheck_timeout }}"
306
+ nova_spicehtml5proxy_healthcheck :
307
+ interval : " {{ nova_spicehtml5proxy_healthcheck_interval }}"
308
+ retries : " {{ nova_spicehtml5proxy_healthcheck_retries }}"
309
+ start_period : " {{ nova_spicehtml5proxy_healthcheck_start_period }}"
310
+ test : " {% if nova_spicehtml5proxy_enable_healthchecks | bool %}{{ nova_spicehtml5proxy_healthcheck_test }}{% else %}NONE{% endif %}"
311
+ timeout : " {{ nova_spicehtml5proxy_healthcheck_timeout }}"
312
+
299
313
nova_conductor_enable_healthchecks : " {{ enable_container_healthchecks }}"
300
314
nova_conductor_healthcheck_interval : " {{ default_container_healthcheck_interval }}"
301
315
nova_conductor_healthcheck_retries : " {{ default_container_healthcheck_retries }}"
0 commit comments