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
I have a requirement to run sqitch from a container hosted in k8s for security reasons, but I seem to be getting an error with permissions. My sqitch deploy stops with the following error:
mkdir /.sqitch: Permission denied at /usr/bin/../lib/perl5/App/Sqitch/Command/config.pm line 374.
Starting deployment
Adding registry tables to db:pg://***:***@********5433/testdb
Cannot find your name; run sqitch config --user user.name "YOUR NAME"
I am able to run the same docker container from my MacOS machine, so I suspect there are some issues with the user that sqitch is running under in Kubernetes. Any ideas how to approach this?
The text was updated successfully, but these errors were encountered:
mkdir /.sqitch: Permission denied at /usr/bin/../lib/perl5/App/Sqitch/Command/config.pm line 374.
It's complaining it can't create a directory in root /. Additionally, it's also saying it can't find your user configuration in ~/.sqitch/sqitch.conf. These all are environment issues you'll need to address and aren't related to sqitch.
Hello,
I have a requirement to run sqitch from a container hosted in k8s for security reasons, but I seem to be getting an error with permissions. My
sqitch deploy
stops with the following error:I am able to run the same docker container from my MacOS machine, so I suspect there are some issues with the user that sqitch is running under in Kubernetes. Any ideas how to approach this?
The text was updated successfully, but these errors were encountered: