Skip to content

Commit c24b0f7

Browse files
committed
Adding the readme file
1 parent eb6ded2 commit c24b0f7

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

CanaryValidator/README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# AzureStack Canary validator
2+
Canary validator provides a breadth customer experience with the Azure Stack deployment. It tries to exercise the various customer usecases on the deployment.
3+
4+
Canary can be invoked either as Service Administrator or Tenant Administrator.
5+
6+
# Execute Canary as Service Administrator
7+
```powershell
8+
$ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "<Service Admin username>", (ConvertTo-SecureString "<Service Admin password>" -AsPlainText -Force)
9+
.\Canary.Tests.ps1 -ServiceAdminCredentials $ServiceAdminCreds -AADTenantID "<TenantID from Azure Active Directory>" -EnvironmentDomainFQDN "<Azure Stack deployment domain FQDN>"
10+
```
11+
12+
# Execute Canary as Tenant Administrator
13+
```powershell
14+
$TenantAdminCreds = New-Object System.Management.Automation.PSCredential "<Service Admin username>", (ConvertTo-SecureString "<Service Admin password>" -AsPlainText -Force)
15+
.\Canary.Tests.ps1 -ServiceAdminCredentials $ServiceAdminCreds -AADTenantID "<TenantID from Azure Active Directory>" -EnvironmentDomainFQDN "<Azure Stack deployment domain FQDN>" -TenantAdminCredentials $TenantAdminCreds
16+
```

0 commit comments

Comments
 (0)