We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1c1071 commit 4287c7eCopy full SHA for 4287c7e
vector/Dockerfile
@@ -7,6 +7,7 @@ ARG PRODUCT
7
ARG RPM_RELEASE
8
ARG INOTIFY_TOOLS
9
ARG TARGETARCH
10
+ARG STACKABLE_USER_UID
11
12
# Init Jobs/Pods often start a Vector Sidecar Container which collects the logs.
13
# As soon as an Init Container is done it'll need to tell the Vector sidecar that it can now also stop
@@ -25,4 +26,4 @@ RUN ARCH="${TARGETARCH/amd64/x86_64}" ARCH="${ARCH/arm64/aarch64}" && \
25
26
# Vector state, such as on-disk buffers, file checkpoints, and more.
27
# Vector needs write permissions.
28
mkdir --parents /stackable/vector/var && \
- chown --recursive stackable:stackable /stackable/
29
+ chown --recursive ${STACKABLE_USER_UID}:0 /stackable/
0 commit comments