-
Notifications
You must be signed in to change notification settings - Fork 16
/
s3-location.sh
executable file
·36 lines (33 loc) · 1010 Bytes
/
s3-location.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
. ./setenv.sh
# export AWS_ACCESS_KEY_ID=$(cat awsaccess | head -1)
# export AWS_SECRET_ACCESS_KEY=$(cat awsaccess | tail -1)
aws s3 mb s3://$(cat k10_eks_bucketname) --region $MY_REGION
echo '-------Creating a S3 profile secret'
kubectl create secret generic k10-s3-secret \
--namespace kasten-io \
--type secrets.kanister.io/aws \
--from-literal=aws_access_key_id=$(cat awsaccess | head -1) \
--from-literal=aws_secret_access_key=$(cat awsaccess | tail -1)
echo '-------Creating a S3 profile'
cat <<EOF | kubectl apply -f -
apiVersion: config.kio.kasten.io/v1alpha1
kind: Profile
metadata:
name: $MY_OBJECT_STORAGE_PROFILE
namespace: kasten-io
spec:
type: Location
locationSpec:
credential:
secretType: AwsAccessKey
secret:
apiVersion: v1
kind: Secret
name: k10-s3-secret
namespace: kasten-io
type: ObjectStore
objectStore:
name: $(cat k10_eks_bucketname)
objectStoreType: S3
region: $MY_REGION
EOF