https://rancher.com/ logo
Title
g

glamorous-lighter-5580

02/07/2023, 8:14 AM
Question about Rancher-backup and Isilon S3. I'm trying to setup Rancher-backup to create backups to an S3 endpoint provided by Isilon S3. So far I just get an error about invalid header. Has anyone else setup such combination?
I got this fixed. Problem was caused by echoing accessID in linux with
echo "domain/username" | base64
as it adds /n to the end of the accessID. Therefore correct way would be
echo "domain/username" | base64 | tr -d '\n'
. Other option is to add the secret via e.g. Lens where I actually spotted the problem. Even https://www.base64decode.org/ didn't show the /n in the string.