You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: deploy/k8s/create-aks.sh
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,5 @@
1
1
#!/bin/bash
2
+
# Change this for a different VM size
2
3
vmSize=Standard_D2_v5
3
4
4
5
# Color theming
@@ -78,7 +79,7 @@ if [ -z "$existingAks" ]
78
79
then
79
80
echo
80
81
echo"Creating AKS cluster \"$eshopAksName\" in resource group \"$eshopRg\" and location \"$eshopLocation\"."
81
-
echo"Using VM size \"$vmSize\". You can change this by modifying the value of the \"vmSize\" variable at the top of \"create-aks.sh\""
82
+
echo"${warningStyle}Using VM size \"$vmSize\". You can change this by modifying the value of the \"vmSize\" variable at the top of \"create-aks.sh\"${defaultTextStyle}"
Copy file name to clipboardExpand all lines: deploy/k8s/quickstart.sh
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,7 @@
1
1
#!/bin/bash
2
-
defaultLocation="centralus"
2
+
# Change this for a different location
3
+
defaultLocation="eastus"
4
+
# Change this for a different resource group name
3
5
defaultRg="eshop-learn-rg"
4
6
5
7
# Color theming
@@ -32,16 +34,16 @@ done
32
34
33
35
if [ -z"$eshopLocation" ]
34
36
then
35
-
echo"Using the default location: $defaultLocation"
37
+
echo"Using the default location: ${warningStyle}$defaultLocation${defaultTextStyle}"
36
38
eshopLocation=$defaultLocation
37
39
fi
38
40
39
41
if [ -z"$eshopRg" ]
40
42
then
41
-
echo"Using the default resource group: $defaultRg"
43
+
echo"Using the default resource group: ${warningStyle}$defaultRg${defaultTextStyle}"
42
44
eshopRg=$defaultRg
43
45
fi
44
-
echo"${bold}Note: You can change the default location and resource group by modifying the variables at the top of quickstart.sh.${defaultTextStyle}"
46
+
echo"${warningStyle}Note: You can change the default location and resource group by modifying the variables at the top of quickstart.sh.${defaultTextStyle}"
0 commit comments