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
2024/08/07 13:37:33 warning: unsuccessful cred copy: ".docker" from "/tekton/creds" to "/": unable to create destination directory: mkdir /.docker: permission denied
2024/08/07 13:37:33 warning: unsuccessful cred copy: ".gitconfig" from "/tekton/creds" to "/": unable to open destination: open /.gitconfig: permission denied
2024/08/07 13:37:33 warning: unsuccessful cred copy: ".git-credentials" from "/tekton/creds" to "/": unable to open destination: open /.git-credentials: permission denied
ERROR: failed to exec as user 1001:1001: operation not permitted
Seems that it needs the root folder for whatever reason.
I've even tried to update the platform to 0.14, didn't help.
2024/08/07 13:37:33 warning: unsuccessful cred copy: ".docker" from "/tekton/creds" to "/": unable to create destination directory: mkdir /.docker: permission denied
2024/08/07 13:37:33 warning: unsuccessful cred copy: ".gitconfig" from "/tekton/creds" to "/": unable to open destination: open /.gitconfig: permission denied
2024/08/07 13:37:33 warning: unsuccessful cred copy: ".git-credentials" from "/tekton/creds" to "/": unable to open destination: open /.git-credentials: permission denied
ERROR: failed to exec as user 1001:1001: operation not permitted
Seems like HOME is not set (or set to /), which means it tries to copy things to $HOME/.gitconfig which translate to /.gitconfig, and / is root owned. Setting the HOME env would help fixing those (but those are warnings, the "credential" files are still there in /tekton/creds/…)
It is failing in the create step.
Seems that it needs the root folder for whatever reason.
I've even tried to update the platform to 0.14, didn't help.
This is how it's called.
Why is it touching the root folder?
The quick fix is obvious, change the security context, but ideally we wounld't do that....
The text was updated successfully, but these errors were encountered: