Clear LD_PRELOAD variable on zuul-web containers

We have been having memory leak issues with zuul-web on our move from
running on the host with python3.5 to running in containers with
python3.7 and python3.8. One other thing that chagned was we added
LD_PRELOAD settings to use jemalloc instead of normal libc provided
malloc. In an effort to rule this out disable jemalloc in the zuul-web
containers.

Change-Id: Icf03b60266f876dd7c322e8c8f7c207b692d3ad7
This commit is contained in:
Clark Boylan 2020-05-04 13:00:52 -07:00
parent 90fa9170dd
commit 140b95a2d0

View File

@ -13,6 +13,8 @@ services:
- /home/zuul:/home/zuul
- /var/lib/zuul:/var/lib/zuul
- /var/log/zuul:/var/log/zuul
environment:
LD_PRELOAD: ""
fingergw:
restart: always
image: docker.io/zuul/zuul-fingergw:latest
@ -24,3 +26,5 @@ services:
- /home/zuul:/home/zuul
- /var/lib/zuul:/var/lib/zuul
- /var/log/zuul:/var/log/zuul
environment:
LD_PRELOAD: ""