-
Notifications
You must be signed in to change notification settings - Fork 16
/
migration-s3-location.sh
executable file
·41 lines (37 loc) · 1.2 KB
/
migration-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
37
38
39
40
. ./setenv.sh
# export MY_REGION=ap-southeast-1
export MY_OBJECT_STORAGE_PROFILE=myaws3-migration
# export AWS_ACCESS_KEY_ID=$(cat awsaccess | head -1)
# export AWS_SECRET_ACCESS_KEY=$(cat awsaccess | tail -1)
LAST4=$(echo -n $(cat awsaccess) | tail -c4)
echo k10migration4yong1-$LAST4$(date +%m%d) | awk '{print tolower($0)}' > k10_migration_bucketname
aws s3 mb s3://$(cat k10_migration_bucketname)
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_migration_bucketname)
objectStoreType: S3
region: $MY_REGION
EOF