@@ -59,6 +59,7 @@ keystone_services:
59
59
- " kolla_logs:/var/log/kolla/"
60
60
- " keystone_fernet_tokens:/etc/keystone/fernet-keys"
61
61
dimensions : " {{ keystone_fernet_dimensions }}"
62
+ healthcheck : " {{ keystone_fernet_healthcheck }}"
62
63
63
64
# ###################
64
65
# Database
@@ -123,6 +124,19 @@ keystone_ssh_healthcheck:
123
124
test : " {% if keystone_ssh_enable_healthchecks | bool %}{{ keystone_ssh_healthcheck_test }}{% else %}NONE{% endif %}"
124
125
timeout : " {{ keystone_ssh_healthcheck_timeout }}"
125
126
127
+ keystone_fernet_enable_healthchecks : " {{ enable_container_healthchecks }}"
128
+ keystone_fernet_healthcheck_interval : " {{ default_container_healthcheck_interval }}"
129
+ keystone_fernet_healthcheck_retries : " {{ default_container_healthcheck_retries }}"
130
+ keystone_fernet_healthcheck_start_period : " {{ default_container_healthcheck_start_period }}"
131
+ keystone_fernet_healthcheck_test : ["CMD-SHELL", "/usr/bin/fernet-healthcheck.sh"]
132
+ keystone_fernet_healthcheck_timeout : " {{ default_container_healthcheck_timeout }}"
133
+ keystone_fernet_healthcheck :
134
+ interval : " {{ keystone_fernet_healthcheck_interval }}"
135
+ retries : " {{ keystone_fernet_healthcheck_retries }}"
136
+ start_period : " {{ keystone_fernet_healthcheck_start_period }}"
137
+ test : " {% if keystone_fernet_enable_healthchecks | bool %}{{ keystone_fernet_healthcheck_test }}{% else %}NONE{% endif %}"
138
+ timeout : " {{ keystone_fernet_healthcheck_timeout }}"
139
+
126
140
keystone_default_volumes :
127
141
- " {{ node_config_directory }}/keystone/:{{ container_config_directory }}/:ro"
128
142
- " /etc/localtime:/etc/localtime:ro"
0 commit comments