File tree Expand file tree Collapse file tree
samples/features/sql-big-data-cluster/deployment/private-aks Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ https://docs.microsoft.com/en-us/sql/big-data-cluster/deploy-big-data-tools?view
24241 . Download the script on the location that you are planning to use for the deployment
2525
2626``` bash
27- curl --output setup-bdc .sh https://raw.githubusercontent.com/microsoft/sql-server-samples/master/samples/features/sql-big-data-cluster/deployment/private-aks/scripts/deploy-private-aks.sh
27+ curl --output deploy-private-aks .sh https://raw.githubusercontent.com/microsoft/sql-server-samples/master/samples/features/sql-big-data-cluster/deployment/private-aks/scripts/deploy-private-aks.sh
2828```
2929
30302 . Make the script executable
@@ -44,7 +44,7 @@ sudo ./deploy-private-aks.sh
44441 . Download the script on the location that you are planning to use for the deployment
4545
4646``` bash
47- curl --output setup-bdc .sh https://raw.githubusercontent.com/microsoft/sql-server-samples/master/samples/features/sql-big-data-cluster/deployment/private-aks/scripts/deploy-private-aks-udr.sh
47+ curl --output deploy-private-aks-udr .sh https://raw.githubusercontent.com/microsoft/sql-server-samples/master/samples/features/sql-big-data-cluster/deployment/private-aks/scripts/deploy-private-aks-udr.sh
4848```
4949
50502 . Make the script executable
Original file line number Diff line number Diff line change 33# Get password as input. It is used as default for controller, SQL Server Master instance (sa account) and Knox.
44#
55while true ; do
6- read -s - p " Create Admin username for Big Data Cluster: " bdcadmin
6+ read -p " Create Admin username for Big Data Cluster: " bdcadmin
77 echo
88 read -s -p " Create Password for Big Data Cluster: " password
99 echo
Original file line number Diff line number Diff line change 11#! /bin/bash
22# Get Subscription ID and Azure service principal as input. It is used as default for controller, SQL Server Master instance (sa account) and Knox.
33#
4- while true ; do
5- read -s -p " Your Azure Subscription: " subscription
6- echo
7- read -s -p " Your Resource Group Name: " resourcegroup
8- echo
9- read -s -p " In which region you're deploying: " region
10- echo
11- read -s -p " Your Azure service principal ID: " sp_id
12- echo
13- read -s -p " Your Azure service principal Password: " sp_pwd
14- done
4+
5+ read -p " Your Azure Subscription: " subscription
6+ echo
7+ read -p " Your Resource Group Name: " resourcegroup
8+ echo
9+ read -p " In which region you're deploying: " region
10+ echo
11+ read -p " Your Azure service principal ID: " sp_id
12+ echo
13+ read -p " Your Azure service principal Password: " sp_pwd
14+
1515
1616# Define a set of environment variables to be used in resource creations.
1717export SUBID=$subscription
Original file line number Diff line number Diff line change 55#! /bin/bash
66# Get Subscription ID and resource groups. It is used as default for controller, SQL Server Master instance (sa account) and Knox.
77#
8- do
9- read -p " Your Azure Subscription: " subscription
10- echo
11- read -p " Your Resource Group Name: " resourcegroup
12- echo
13- read -p " In which region you're deploying " region
14- echo
15- done
8+
9+ read -p " Your Azure Subscription: " subscription
10+ echo
11+ read -p " Your Resource Group Name: " resourcegroup
12+ echo
13+ read -p " In which region you're deploying: " region
14+ echo
15+
1616
1717# Define a set of environment variables to be used in resource creations.
1818export SUBID=$subscription
You can’t perform that action at this time.
0 commit comments