make a better healthcheck

This commit is contained in:
Andrey Zvonov 2024-06-27 19:30:45 +00:00
parent bebed0598d
commit bf1cc136db
2 changed files with 7 additions and 2 deletions

View File

@ -15,7 +15,10 @@ services:
ports:
- ${LDAP_EXTERNAL_PORT:-1389}:${LDAP_INTERNAL_PORT:-1389}
healthcheck:
test: "ldapsearch -x -b dc=example,dc=org cn > /dev/null"
test: >
ldapsearch -x -H ldap://localhost:$$LDAP_PORT_NUMBER -D $$LDAP_ADMIN_DN -w $$LDAP_ADMIN_PASSWORD -b $$LDAP_ROOT
| grep -c -E "member: cn=j(ohn|ane)doe"
| grep 2 >> /dev/null
interval: 10s
retries: 10
timeout: 2s

View File

@ -2640,7 +2640,9 @@ class ClickHouseCluster:
[
"bash",
"-c",
f"/opt/bitnami/openldap/bin/ldapsearch -x -H ldap://{self.ldap_host}:{self.ldap_port} -D cn=admin,dc=example,dc=org -w clickhouse -b dc=example,dc=org",
f'/opt/bitnami/openldap/bin/ldapsearch -x -H ldap://{self.ldap_host}:{self.ldap_port} -D cn=admin,dc=example,dc=org -w clickhouse -b dc=example,dc=org'
f'| grep -c -E "member: cn=j(ohn|ane)doe"'
f'| grep 2 >> /dev/null',
],
user="root",
)