File tree Expand file tree Collapse file tree 4 files changed +22
-22
lines changed
samples/features/sql-big-data-cluster/deployment/private-aks Expand file tree Collapse file tree 4 files changed +22
-22
lines changed 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
24
24
1 . Download the script on the location that you are planning to use for the deployment
25
25
26
26
``` 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
28
28
```
29
29
30
30
2 . Make the script executable
@@ -44,7 +44,7 @@ sudo ./deploy-private-aks.sh
44
44
1 . Download the script on the location that you are planning to use for the deployment
45
45
46
46
``` 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
48
48
```
49
49
50
50
2 . Make the script executable
Original file line number Diff line number Diff line change 3
3
# Get password as input. It is used as default for controller, SQL Server Master instance (sa account) and Knox.
4
4
#
5
5
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
7
7
echo
8
8
read -s -p " Create Password for Big Data Cluster: " password
9
9
echo
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
# Get Subscription ID and Azure service principal as input. It is used as default for controller, SQL Server Master instance (sa account) and Knox.
3
3
#
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
+
15
15
16
16
# Define a set of environment variables to be used in resource creations.
17
17
export SUBID=$subscription
Original file line number Diff line number Diff line change 5
5
#! /bin/bash
6
6
# Get Subscription ID and resource groups. It is used as default for controller, SQL Server Master instance (sa account) and Knox.
7
7
#
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
+
16
16
17
17
# Define a set of environment variables to be used in resource creations.
18
18
export SUBID=$subscription
You can’t perform that action at this time.
0 commit comments