You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Setting the PROMETHEUS_MULTIPROC_DIR and creating this directory through a Dockerfile does not make the client work, getting the error env PROMETHEUS_MULTIPROC_DIR is not set or not a directory, but only with Kubernetes.
FYI, it works when setting through the ENTRYPOINT of the Dockerfile.
So, this does not work :
ENV PROMETHEUS_MULTIPROC_DIR="/tmp/proc_dir"
RUN mkdir -p "$PROMETHEUS_MULTIPROC_DIR"
Setting the
PROMETHEUS_MULTIPROC_DIR
and creating this directory through a Dockerfile does not make the client work, getting the errorenv PROMETHEUS_MULTIPROC_DIR is not set or not a directory
, but only with Kubernetes.FYI, it works when setting through the
ENTRYPOINT
of the Dockerfile.So, this does not work :
But this works :
The text was updated successfully, but these errors were encountered: