We are trying to run the software on Kubernetes without root privileges. Unfortunately, the access permissions (0600) that are used are too low. If you run the application without using the root user, you will encounter various file permission errors.
In particular, the permissions for the 'transfer' folder should be set to 0700 instead of 0600. Otherwise, subfolders cannot be created.
|
err = os.MkdirAll(tmpDir, 0600) |
Also look at #53
We are trying to run the software on Kubernetes without root privileges. Unfortunately, the access permissions (0600) that are used are too low. If you run the application without using the root user, you will encounter various file permission errors.
In particular, the permissions for the 'transfer' folder should be set to 0700 instead of 0600. Otherwise, subfolders cannot be created.
sqlpipe/cmd/sqlpipe/transfers.go
Line 478 in 2fad2f0
Also look at #53