Yes. I tried setting this flag but the pod goes in crashloopbackoff. Below are my docker file and entrypoint.sh.
FROM prom/pushgateway:v0.9.0
LABEL maintainer "MYCOM OSI"
# Allowed: debug, info, warn, error
ENV LOGLEVEL=warn
ADD /entrypoint.sh /bin/entrypoint.sh
USER root
RUN chmod +x /bin/entrypoint.sh
USER 65534
ENTRYPOINT [ "/bin/entrypoint.sh" ]
Please tell me if there is anything wrong in the syntax.