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
Exchanged redis client library, fixed DNS issue when connecting (will be solved in .NET core 2.0), increasing processors instances, improvement in docs and script variable naming
Copy file name to clipboardexpand all lines: docs/cloud-prerequisites.md
+15-2
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Prerequisites for cloud cluster deployment
2
2
3
-
In case you will be also deploying a remote cluster with ACS (Create-Infrastructure.ps1 script without the -SkipCluster flag), you will need to setup some prerequisites for such deployment:
3
+
In case you will be also deploying a remote cluster with ACS (Create-Infrastructure.ps1 script without the -SkipClusterInCloud flag), you will need to setup some prerequisites for such deployment:
4
4
5
5
- Subscription admin service principal credentials (**you need to provide this**)
6
6
- Public SSH key (**you need to provide this**)
@@ -21,7 +21,20 @@ You could also use some of the tools like **Bitvise** which are capable of creat
21
21
22
22
## Running the Create-CloudClusterPrerequisites.ps1 script
23
23
24
-
First, execute this line to securely enter your credentials for the service principal:
24
+
First, make sure you log in to your Azure Subscription with
25
+
26
+
```powershell
27
+
Login-AzureRmAccount
28
+
```
29
+
30
+
and, if necessary, switch to the correct subscription using
31
+
32
+
```powershell
33
+
# to find out the subscirption id, run Get-AzureRmSubscription
34
+
Select-AzureRmSubscription
35
+
```
36
+
37
+
Execute this line to securely enter your credentials for the service principal:
0 commit comments