diff options
author | 2022-11-09 14:05:28 -0800 | |
---|---|---|
committer | 2022-11-16 14:54:26 -0500 | |
commit | 1024277788b774d3e94e43b7fa0a57f134b7b417 (patch) | |
tree | 87aca34e0a1ca0d0a1740b7642309324cfe9e25e /aai-common-docker/aai-haproxy-image/src/main/docker/docker-entrypoint.sh | |
parent | 7670921e37fd8d4a04a42a210d6fcdd6ac2f0eb8 (diff) |
Configure AAI HA Proxy to distribute the load to multiple AAI service replicas. Added some useful tools for custom image of aai haproxy
Issue-ID: AAI-3588
Signed-off-by: Niharika Sharma <niharika.sharma@amdocs.com>
Change-Id: Ibab655238c915c83b8a5b4a29cd5a4c1a3f19a0b
Diffstat (limited to 'aai-common-docker/aai-haproxy-image/src/main/docker/docker-entrypoint.sh')
-rw-r--r-- | aai-common-docker/aai-haproxy-image/src/main/docker/docker-entrypoint.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/aai-common-docker/aai-haproxy-image/src/main/docker/docker-entrypoint.sh b/aai-common-docker/aai-haproxy-image/src/main/docker/docker-entrypoint.sh index a56eea95..a8e521f1 100644 --- a/aai-common-docker/aai-haproxy-image/src/main/docker/docker-entrypoint.sh +++ b/aai-common-docker/aai-haproxy-image/src/main/docker/docker-entrypoint.sh @@ -14,9 +14,11 @@ sed -i 's/${ONAP_NAMESERVER_CLUSTER_IP}/'${NAMESERVER_IP}'/g' /usr/local/etc/hap } if [ "$1" = 'haproxy' ]; then - # if the user wants "haproxy", let's use "haproxy-systemd-wrapper" instead so we can have proper reloadability implemented by upstream - shift # "haproxy" - set -- "$(which haproxy-systemd-wrapper)" -p /usr/local/etc/haproxy/haproxy.pid "$@" + shift # "haproxy" + # if the user wants "haproxy", let's add a couple useful flags + # -W -- "master-worker mode" (similar to the old "haproxy-systemd-wrapper"; allows for reload via "SIGUSR2") + # -db -- disables background mode + set -- haproxy -W -db "$@" fi exec "$@" |