mirror of
https://github.com/prometheus/statsd_exporter.git
synced 2024-11-21 15:00:59 +00:00
Set numeric user to comply runAsNonRoot k8s policy
When in k8s, container has `runAsNonRoot` policy and image has non-numeric user (nobody), then the deployment will fail as it cannot verify user is non-root. Closes #406 Signed-off-by: Aleksandr Vinokurov <aleksandr.vin@gmail.com>
This commit is contained in:
parent
fae515f739
commit
258c8c0b2c
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ ARG ARCH="amd64"
|
||||||
ARG OS="linux"
|
ARG OS="linux"
|
||||||
COPY .build/${OS}-${ARCH}/statsd_exporter /bin/statsd_exporter
|
COPY .build/${OS}-${ARCH}/statsd_exporter /bin/statsd_exporter
|
||||||
|
|
||||||
USER nobody
|
USER 65534
|
||||||
EXPOSE 9102 9125 9125/udp
|
EXPOSE 9102 9125 9125/udp
|
||||||
HEALTHCHECK CMD wget --spider -S "http://localhost:9102/metrics" -T 60 2>&1 || exit 1
|
HEALTHCHECK CMD wget --spider -S "http://localhost:9102/metrics" -T 60 2>&1 || exit 1
|
||||||
ENTRYPOINT [ "/bin/statsd_exporter" ]
|
ENTRYPOINT [ "/bin/statsd_exporter" ]
|
||||||
|
|
Loading…
Reference in a new issue