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
Dockerfile images that contain something of the following so within the container is run as non root user:
RUN adduser -u 5678 --disabled-password --gecos "" appuser && chown -R appuser /app
This will cause the kerberos client inside the container to not have access to the TGT created on the host by credentials-fetcher.
The text was updated successfully, but these errors were encountered:
Hi fordth, was the issue about ticket not getting shared between container and host / ticket not getting updated on renewal?
It was getting shared, but the TGT file had a -rw------- permission. Since the container was running as non root, the container couldnt access the contents. Not a bug, but just wanted it to be known that when a container runs as non root, it couldnt access the TGT file.
Dockerfile images that contain something of the following so within the container is run as non root user:
RUN adduser -u 5678 --disabled-password --gecos "" appuser && chown -R appuser /app
This will cause the kerberos client inside the container to not have access to the TGT created on the host by credentials-fetcher.
The text was updated successfully, but these errors were encountered: