Skip to content

Commit a269162

Browse files
authored
Update known-issues.md (Azure#63)
* add NRP registration * move instructions to CLI instead of PS
1 parent 622907e commit a269162

File tree

1 file changed

+11
-19
lines changed

1 file changed

+11
-19
lines changed

docs/known-issues.md

Lines changed: 11 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -5,41 +5,33 @@ workarounds if known.
55

66
## Providers and features must be registered manually
77

8-
Currently, the `Microsoft.ContainerService` `openshiftmanagedcluster` feature and `Microsoft.Solutions` provider must
9-
be registered to your subscription manually before deploying your first OSA
10-
cluster.
8+
Currently, the `Microsoft.ContainerService` `openshiftmanagedcluster` feature, `Microsoft.Solutions` and `Microsoft.Network` providers must be registered to your subscription manually before deploying your first OSA cluster.
119

12-
- Run a Cloud Shell (PowerShell) session from the Azure portal.
10+
- Run a Cloud Shell (Bash) session from the Azure portal.
1311

1412
- If you have access to multiple subscriptions, specify the relevant
1513
subscription ID.
1614

17-
```powershell
18-
Set-AzureRmContext -SubscriptionId "<SUBSCRIPTION_ID>"
15+
```bash
16+
az account set --subscription <SUBSCRIPTION ID>
1917
```
2018

2119
- Register the Microsoft.ContainerService openshiftmanagedcluster feature.
2220

23-
```powershell
24-
Register-AzProviderFeature -ProviderNamespace Microsoft.ContainerService -FeatureName openshiftmanagedcluster
25-
```
26-
27-
- Wait until the feature is showing RegistrationState `Registered`.
28-
29-
```powershell
30-
Get-AzureRmProviderFeature -ProviderNamespace Microsoft.ContainerService -FeatureName openshiftmanagedcluster | select RegistrationState
21+
```bash
22+
az feature register --namespace Microsoft.ContainerService -n openshiftmanagedcluster
3123
```
3224

3325
- Register the Microsoft.Solutions provider.
3426

35-
```powershell
36-
Register-AzureRmResourceProvider -ProviderNamespace Microsoft.Solutions
27+
```bash
28+
az provider register -n Microsoft.Solutions --wait
3729
```
3830

39-
- Wait until the provider is showing RegistrationState `Registered`.
31+
- Register the Microsoft.Network provider.
4032

41-
```powershell
42-
Get-AzureRmResourceProvider -ProviderNamespace Microsoft.Solutions | select RegistrationState
33+
```bash
34+
az provider register -n Microsoft.Network --wait
4335
```
4436

4537
## May not be possible to retry creation of a failed cluster

0 commit comments

Comments
 (0)