-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmigration-s3-location.sh
executable file
·52 lines (47 loc) · 1.56 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
41
42
43
44
45
46
47
48
49
50
51
52
. ./setenv.sh
if [ ! -f awsaccess ]; then
echo -n "Enter your AWS Access Key ID and press [ENTER]: "
read AWS_ACCESS_KEY_ID
echo "" | awk '{print $1}'
echo $AWS_ACCESS_KEY_ID > awsaccess
echo -n "Enter your AWS Secret Access Key and press [ENTER]: "
read AWS_SECRET_ACCESS_KEY
echo $AWS_SECRET_ACCESS_KEY >> awsaccess
fi
export MY_REGION=us-east-2
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) --region $MY_REGION
export MY_OBJECT_STORAGE_PROFILE=myaws3-migration
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=$AWS_ACCESS_KEY_ID \
--from-literal=aws_secret_access_key=$AWS_SECRET_ACCESS_KEY
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