26cb1d95e8
With this, each volume will get its own prefix within the bucket if it is configured in the storage class. This also ensures backwards compatibility with older volumes that have been created in earlier versions of csi-s3.
12 lines
337 B
YAML
12 lines
337 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
namespace: kube-system
|
|
name: csi-s3-secret
|
|
stringData:
|
|
accessKeyID: <YOUR_ACCESS_KEY_ID>
|
|
secretAccessKey: <YOUR_SECRET_ACCES_KEY>
|
|
# For AWS set it to "https://s3.<region>.amazonaws.com"
|
|
endpoint: https://s3.eu-central-1.amazonaws.com
|
|
# If not on S3, set it to ""
|
|
region: <S3_REGION>
|