Skip to content

Commit cffa643

Browse files
committed
README update
1 parent b22a7e4 commit cffa643

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

CanaryValidator/README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ Set-Location -Path ".\AzureStack-Tools-master\CanaryValidator" -PassThru
1515
## To execute Canary as Tenant Administrator (if Windows Server 2016 or Windows Server 2012-R2 images are already present in the PIR)
1616

1717
```powershell
18-
# Install-Module -Name 'AzureRm.Bootstrapper' -Scope CurrentUser
19-
# Install-AzureRmProfile -profile '2017-03-09-profile' -Force -Scope CurrentUser
20-
# Install-Module -Name AzureStack -RequiredVersion 1.2.10 -Scope CurrentUser
18+
# Install-Module -Name 'AzureRm.Bootstrapper'
19+
# Install-AzureRmProfile -profile '2017-03-09-profile' -Force
20+
# Install-Module -Name AzureStack -RequiredVersion 1.2.10
2121
$TenantAdminCreds = New-Object System.Management.Automation.PSCredential "<Tenant Admin username>", (ConvertTo-SecureString "<Tenant Admin password>" -AsPlainText -Force)
2222
$ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "<Service Admin username>", (ConvertTo-SecureString "<Service Admin password>" -AsPlainText -Force)
2323
.\Canary.Tests.ps1 -TenantID "<TenantID from Azure Active Directory>" -AdminArmEndpoint "<Administrative ARM endpoint>" -ServiceAdminCredentials $ServiceAdminCreds -TenantArmEndpoint "<Tenant ARM endpoint>" -TenantAdminCredentials $TenantAdminCreds
@@ -27,9 +27,9 @@ $ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "<Ser
2727

2828
```powershell
2929
# Download the WS2016 ISO image from: https://www.microsoft.com/en-us/evalcenter/evaluate-windows-server-2016, and place it on your local machine
30-
# Install-Module -Name 'AzureRm.Bootstrapper' -Scope CurrentUser
31-
# Install-AzureRmProfile -profile '2017-03-09-profile' -Force -Scope CurrentUser
32-
# Install-Module -Name AzureStack -RequiredVersion 1.2.10 -Scope CurrentUser
30+
# Install-Module -Name 'AzureRm.Bootstrapper'
31+
# Install-AzureRmProfile -profile '2017-03-09-profile' -Force
32+
# Install-Module -Name AzureStack -RequiredVersion 1.2.10
3333
$TenantAdminCreds = New-Object System.Management.Automation.PSCredential "<Tenant Admin username>", (ConvertTo-SecureString "<Tenant Admin password>" -AsPlainText -Force)
3434
$ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "<Service Admin username>", (ConvertTo-SecureString "<Service Admin password>" -AsPlainText -Force)
3535
.\Canary.Tests.ps1 -TenantID "<TenantID from Azure Active Directory>" -AdminArmEndpoint "<Administrative ARM endpoint>" -ServiceAdminCredentials $ServiceAdminCreds -TenantArmEndpoint "<Tenant ARM endpoint>" -TenantAdminCredentials $TenantAdminCreds -WindowsISOPath "<path where the WS2016 ISO is present>"
@@ -39,9 +39,9 @@ $ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "<Ser
3939
## To list the usecases in Canary
4040

4141
```powershell
42-
# Install-Module -Name 'AzureRm.Bootstrapper' -Scope CurrentUser
43-
# Install-AzureRmProfile -profile '2017-03-09-profile' -Force -Scope CurrentUser
44-
# Install-Module -Name AzureStack -RequiredVersion 1.2.10 -Scope CurrentUser
42+
# Install-Module -Name 'AzureRm.Bootstrapper'
43+
# Install-AzureRmProfile -profile '2017-03-09-profile' -Force
44+
# Install-Module -Name AzureStack -RequiredVersion 1.2.10
4545
.\Canary.Tests.ps1 -ListAvailable
4646
4747
Sample output:
@@ -127,9 +127,9 @@ List of scenarios in Canary:
127127
## To exclude certain usecases from getting executed
128128

129129
```powershell
130-
# Install-Module -Name 'AzureRm.Bootstrapper' -Scope CurrentUser
131-
# Install-AzureRmProfile -profile '2017-03-09-profile' -Force -Scope CurrentUser
132-
# Install-Module -Name AzureStack -RequiredVersion 1.2.10 -Scope CurrentUser
130+
# Install-Module -Name 'AzureRm.Bootstrapper'
131+
# Install-AzureRmProfile -profile '2017-03-09-profile' -Force
132+
# Install-Module -Name AzureStack -RequiredVersion 1.2.10
133133
# A new paramter called ExclusionList has been added which is a string array. Pass in the list of usecases you don't want to execute to this parameter.
134134
$ServiceAdminCreds = New-Object System.Management.Automation.PSCredential "<Service Admin username>", (ConvertTo-SecureString "<Service Admin password>" -AsPlainText -Force)
135135
.\Canary.Tests.ps1 -TenantID "<TenantID from Azure Active Directory>" -AdminArmEndpoint "<Administrative ARM endpoint>" -ServiceAdminCredentials $ServiceAdminCreds -ExclusionList "ListFabricResourceProviderInfo","ListUpdateResourceProviderInfo"

0 commit comments

Comments
 (0)