Skip to content

Commit 5942126

Browse files
author
cloudmelon
committed
adjustment
1 parent 8d505bd commit 5942126

File tree

4 files changed

+22
-22
lines changed

4 files changed

+22
-22
lines changed

samples/features/sql-big-data-cluster/deployment/private-aks/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ https://docs.microsoft.com/en-us/sql/big-data-cluster/deploy-big-data-tools?view
2424
1. 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

3030
2. Make the script executable
@@ -44,7 +44,7 @@ sudo ./deploy-private-aks.sh
4444
1. 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

5050
2. Make the script executable

samples/features/sql-big-data-cluster/deployment/private-aks/scripts/deploy-bdc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#Get password as input. It is used as default for controller, SQL Server Master instance (sa account) and Knox.
44
#
55
while 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

samples/features/sql-big-data-cluster/deployment/private-aks/scripts/deploy-private-aks-udr.sh

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
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.
1717
export SUBID=$subscription

samples/features/sql-big-data-cluster/deployment/private-aks/scripts/deploy-private-aks.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
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.
1818
export SUBID=$subscription

0 commit comments

Comments
 (0)