Minio S3 Backup
Backup Target
s3://longhorn@us-west-1/ The endpoint used to access the backupstore. NFS and S3 are supported.
Backup Target Credential Secret
minio-creds The name of the Kubernetes secret
base64 encode username, password, and minio url
1echo -n "" | base64
1apiVersion: v1
2kind: Secret
3metadata:
4 name: minio-creds
5 namespace: longhorn-system
6type: Opaque
7data:
8 AWS_ACCESS_KEY_ID: username | base64
9 AWS_SECRET_ACCESS_KEY: password | base64
10 AWS_ENDPOINTS: minio url | base64