Skip to content

Commit 9f025ea

Browse files
authored
Merge pull request #3002 from kkimurak/issue/2766-2992_use-ipv4-for-healcheck-url
Various fixes to health check scripts
2 parents ac9e1fe + e5dc2dd commit 9f025ea

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1611,7 +1611,7 @@ Time between sampling of unicorn socket metrics, in seconds, defaults to `10`
16111611

16121612
##### `GITLAB_MONITORING_IP_WHITELIST`
16131613

1614-
IP whitelist to access monitoring endpoints, defaults to `0.0.0.0/8`
1614+
IP whitelist to access monitoring endpoints. No defaults.
16151615

16161616
##### `GITLAB_MONITORING_SIDEKIQ_EXPORTER_ENABLED`
16171617

assets/runtime/env-defaults

+1-1
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ GITLAB_SHELL_CUSTOM_HOOKS_DIR=${GITLAB_SHELL_CUSTOM_HOOKS_DIR:-"$GITLAB_SHELL_IN
629629

630630
## MONITORING
631631
GITLAB_MONITORING_UNICORN_SAMPLER_INTERVAL=${GITLAB_MONITORING_UNICORN_SAMPLER_INTERVAL:-10}
632-
GITLAB_MONITORING_IP_WHITELIST=${GITLAB_MONITORING_IP_WHITELIST:-"0.0.0.0/8"}
632+
GITLAB_MONITORING_IP_WHITELIST=${GITLAB_MONITORING_IP_WHITELIST:-}
633633
GITLAB_MONITORING_SIDEKIQ_EXPORTER_ENABLED=${GITLAB_MONITORING_SIDEKIQ_EXPORTER_ENABLED:-true}
634634
GITLAB_MONITORING_SIDEKIQ_EXPORTER_ADDRESS=${GITLAB_MONITORING_SIDEKIQ_EXPORTER_ADDRESS:-"0.0.0.0"}
635635
GITLAB_MONITORING_SIDEKIQ_EXPORTER_PORT=${GITLAB_MONITORING_SIDEKIQ_EXPORTER_PORT:-3807}

assets/runtime/functions

+7-3
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,10 @@ gitlab_configure_gitaly() {
351351
gitlab_configure_monitoring() {
352352
echo "Configuring gitlab::monitoring..."
353353

354+
if [ "${GITLAB_MONITORING_IP_WHITELIST}" == "" ]; then
355+
exec_as_git sed -i "/{{GITLAB_MONITORING_IP_WHITELIST}}/d" ${GITLAB_CONFIG}
356+
fi
357+
354358
update_template ${GITLAB_CONFIG} \
355359
GITLAB_MONITORING_UNICORN_SAMPLER_INTERVAL \
356360
GITLAB_MONITORING_IP_WHITELIST \
@@ -1855,13 +1859,13 @@ generate_healthcheck_script() {
18551859
# configure healthcheck script
18561860
## https://docs.gitlab.com/ee/user/admin_area/monitoring/health_check.html
18571861
local HEALTHCHECK_PROTOCOL="http"
1858-
if [[ "${GITLAB_HTTPS}" == true ]]; then
1862+
if [[ "${GITLAB_HTTPS}" == true && "${SSL_SELF_SIGNED}" == false ]]; then
18591863
HEALTHCHECK_PROTOCOL="${HEALTHCHECK_PROTOCOL}s"
18601864
fi
18611865
cat > /usr/local/sbin/healthcheck <<EOF
18621866
#!/bin/bash
1863-
url=${HEALTHCHECK_PROTOCOL}://localhost${GITLAB_RELATIVE_URL_ROOT}/-/liveness
1864-
options=( '--insecure' '--location' '--silent' )
1867+
url=${HEALTHCHECK_PROTOCOL}://127.0.0.1${GITLAB_RELATIVE_URL_ROOT}/-/liveness
1868+
options=( '--insecure' '--silent' )
18651869
curl "\${options[@]}" \$url
18661870
[[ "\$(curl \${options[@]} -o /dev/null -I -w '%{http_code}' \$url)" == "200" ]]
18671871
EOF

0 commit comments

Comments
 (0)