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: docs/CONFIGURATION_CHECKS.md
+17-2Lines changed: 17 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,22 @@ Ensure that the managed identity or service principal used by the controller vir
67
67
1. "Reader" role to the user-assigned managed identity on the resource group containing the managed disks (if using Azure Managed Disks for SAP HANA data and log volumes).
68
68
1. "Reader" role to the user-assigned managed identity on the resource group containing the shared disks (if using Azure Shared Disks for SBD devices).
69
69
70
-
### 4. Test Execution
70
+
### 4. Azure Login (required)
71
+
72
+
Ensure that you are logged into Azure CLI on the controller VM with the appropriate subscription context:
73
+
74
+
```bash
75
+
# Login to Azure using System Assigned Managed Identity
76
+
az login --identity
77
+
78
+
# Login to Azure using User Assigned Managed Identity
79
+
az login --identity -u <client-id-of-user-assigned-managed-identity>
80
+
81
+
# Set the desired subscription context
82
+
az account set --subscription <subscription-id>
83
+
```
84
+
85
+
### 5. Test Execution
71
86
72
87
To execute the script, run following command:
73
88
@@ -91,7 +106,7 @@ To execute the script, run following command:
After the test execution completes, a detailed HTML report is generated that summarizes the PASS/FAIL status of each test case and includes detailed execution logs for every step of the automation run.
0 commit comments