Stash for Kubernetes
Learn how to configure Stash for use with Filebase.
What is Stash?
1. Create a new namespace
2. Next, create the following environmental variables within your namespace:
echo -n 'password' > RESTIC_PASSWORD
echo -n '<FILEBASE_ACCESS_KEY>' > AWS_ACCESS_KEY_ID
echo -n '<FILEBASE_SECRET_KEY>' > AWS_SECRET_ACCESS_KEY
kubectl create secret generic -n backup filebase-secret \\
--from-file=./RESTIC_PASSWORD \\
--from-file=./AWS_ACCESS_KEY_ID \\
--from-file=./AWS_SECRET_ACCESS_KEY3. Create a filebase.yaml file with the following contents:
filebase.yaml file with the following contents:4. Apply the repository with the following command:
Last updated