-
Notifications
You must be signed in to change notification settings - Fork 1
/
k10-deploy.sh
executable file
·87 lines (73 loc) · 4.12 KB
/
k10-deploy.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
echo '-------Deploying Kasten K10 and Postgresql'
starttime=$(date +%s)
. ./setenv.sh
# MY_PREFIX=$(echo $(whoami) | sed -e 's/\_//g' | sed -e 's/\.//g' | awk '{print tolower($0)}')
echo '-------Exporting the Azure Tenant, Client, Secret'
AZURE_TENANT_ID=$(cat aro4yong1app | grep tenant | awk '{print $2}' | sed -e 's/\"//g')
AZURE_CLIENT_ID=$(cat aro4yong1app | grep appId | awk '{print $2}' | sed -e 's/\"//g' | sed -e 's/\,//g')
AZURE_CLIENT_SECRET=$(cat aro4yong1app | grep password | awk '{print $2}' | sed -e 's/\"//g' | sed -e 's/\,//g')
# echo '-------Create a Azure Storage account'
# ARO_RG=$(az group list -o table | grep aro-rg4yong1 | awk '{print $1}')
# az storage account create -n $ARO_MY_PREFIX$ARO_AZURE_STORAGE_ACCOUNT_ID -g $ARO_RG -l $ARO_MY_LOCATION --sku Standard_LRS
# export ARO_AZURE_STORAGE_KEY=$(az storage account keys list -g $ARO_RG -n $ARO_MY_PREFIX$ARO_AZURE_STORAGE_ACCOUNT_ID --query [].value -o tsv | head -1)
echo '-------Set the default sc & vsc'
oc annotate volumesnapshotclass csi-azuredisk-vsc k10.kasten.io/is-snapshot-class=true
oc annotate sc managed-premium storageclass.kubernetes.io/is-default-class-
oc annotate sc managed-csi storageclass.kubernetes.io/is-default-class=true
echo '-------Install K10'
kubectl create ns kasten-io
helm repo add kasten https://charts.kasten.io
helm repo update
#For Production, remove the lines ending with =1Gi from helm install
#For Production, remove the lines ending with airgap from helm install
helm install k10 kasten/k10 --namespace=kasten-io \
--set global.persistence.metering.size=1Gi \
--set prometheus.server.persistentVolume.size=1Gi \
--set global.persistence.catalog.size=1Gi \
--set global.persistence.jobs.size=1Gi \
--set global.persistence.logging.size=1Gi \
--set global.persistence.grafana.size=1Gi \
--set scc.create=true \
--set route.enabled=true \
--set auth.tokenAuth.enabled=true
# --set global.persistence.storageClass=managed-csi
echo '-------Set the default ns to k10'
kubectl config set-context --current --namespace kasten-io
echo '-------Deploying a PostgreSQL database'
kubectl create namespace yong-postgresql
oc adm policy add-scc-to-user anyuid -z default -n yong-postgresql
helm repo add bitnami https://charts.bitnami.com/bitnami
helm install --namespace yong-postgresql postgres bitnami/postgresql \
--set primary.persistence.size=1Gi
# --set global.storageClass=managed-csi
echo '-------Output the Cluster ID'
clusterid=$(kubectl get namespace default -ojsonpath="{.metadata.uid}{'\n'}")
echo "" | awk '{print $1}' > aro_token
echo My Cluster ID is $clusterid >> aro_token
echo '-------Wait for 1 or 2 mins for the Web UI IP and token'
kubectl wait --for=condition=ready --timeout=180s -n kasten-io pod -l component=jobs
k10ui=http://$(kubectl get route -n kasten-io | grep k10-route | awk '{print $2}')/k10/#
echo -e "\nCopy/Paste the link to browser to access K10 Web UI" >> aro_token
echo -e "\n$k10ui" >> aro_token
echo "" | awk '{print $1}' >> aro_token
sa_secret=$(kubectl get serviceaccount k10-k10 -o jsonpath="{.secrets[0].name}" --namespace kasten-io)
echo "Copy/Paste the token below to Signin K10 Web UI" >> aro_token
echo "" | awk '{print $1}' >> aro_token
kubectl get secret $sa_secret --namespace kasten-io -ojsonpath="{.data.token}{'\n'}" | base64 --decode | awk '{print $1}' >> aro_token
# kubectl get secret $sa_secret -n kasten-io -o json | jq '.metadata.annotations."openshift.io/token-secret.value"' | sed -e 's/\"//g' >> aro_token
echo "" | awk '{print $1}' >> aro_token
echo '-------Waiting for K10 services are up running in about 1 or 2 mins'
kubectl wait --for=condition=ready --timeout=300s -n kasten-io pod -l component=catalog
#Create a Azure Blob Storage location profile
./aro-az-location.sh
#Create a Postgresql backup policy
./postgresql-policy.sh
echo '-------Accessing K10 UI'
cat aro_token
endtime=$(date +%s)
duration=$(( $endtime - $starttime ))
echo "-------Total time for K10 deployment is $(($duration / 60)) minutes $(($duration % 60)) seconds."
echo "" | awk '{print $1}'
echo "-------Created by Yongkang"
echo "-------Email me if any suggestions or issues he@yongkang.cloud"
echo "" | awk '{print $1}'