-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoss-location.sh
executable file
·36 lines (33 loc) · 977 Bytes
/
oss-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
echo '-------Creating a S3 profile secret'
. ./setenv.sh
export AWS_ACCESS_KEY_ID=$(cat aliaccess | head -1)
export AWS_SECRET_ACCESS_KEY=$(cat aliaccess | tail -1)
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 an OSS 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 rke_bucketname)
objectStoreType: S3
region: $MY_REGION
endpoint: oss-$MY_REGION.aliyuncs.com
EOF