Compare commits
base: zerto/ZertoApiWrapper:wcarroll/where-fix
zerto/ZertoApiWrapper:master
zerto/ZertoApiWrapper:zvma-updates
zerto/ZertoApiWrapper:jp-working
zerto/ZertoApiWrapper:wcarroll/where-fix
zerto/ZertoApiWrapper:wcarroll/issue112
zerto/ZertoApiWrapper:AzureVpg_v2
zerto/ZertoApiWrapper:1.5.4
zerto/ZertoApiWrapper:1.5.3
zerto/ZertoApiWrapper:1.5.2
zerto/ZertoApiWrapper:1.5.1
zerto/ZertoApiWrapper:1.5.0
zerto/ZertoApiWrapper:1.4.3
zerto/ZertoApiWrapper:1.4.2
zerto/ZertoApiWrapper:1.4.1
zerto/ZertoApiWrapper:1.4.0.20200410
zerto/ZertoApiWrapper:1.3.0.20191201
zerto/ZertoApiWrapper:1.2.0.20190801
zerto/ZertoApiWrapper:1.1.0.34
...
compare: zerto/ZertoApiWrapper:1.5.4
zerto/ZertoApiWrapper:zvma-updates
zerto/ZertoApiWrapper:jp-working
zerto/ZertoApiWrapper:master
zerto/ZertoApiWrapper:wcarroll/where-fix
zerto/ZertoApiWrapper:wcarroll/issue112
zerto/ZertoApiWrapper:AzureVpg_v2
zerto/ZertoApiWrapper:1.5.4
zerto/ZertoApiWrapper:1.5.3
zerto/ZertoApiWrapper:1.5.2
zerto/ZertoApiWrapper:1.5.1
zerto/ZertoApiWrapper:1.5.0
zerto/ZertoApiWrapper:1.4.3
zerto/ZertoApiWrapper:1.4.2
zerto/ZertoApiWrapper:1.4.1
zerto/ZertoApiWrapper:1.4.0.20200410
zerto/ZertoApiWrapper:1.3.0.20191201
zerto/ZertoApiWrapper:1.2.0.20190801
zerto/ZertoApiWrapper:1.1.0.34
13 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
14d36ab32b |
Merge pull request #122 from recklessop/master
Updates to support Install-ZertoVRA function |
||
|
|
7e61fbec7e |
1.5.4 updates
Doc updates and help file updates to support numofcpu parameter in Install-ZertoVra function |
||
|
|
315cdf6db9 | Merge remote-tracking branch 'upstream/master' | ||
|
|
ccc4118d22 |
Merge pull request #121 from mitchellen/master
added VRA installation parameter for multiple vCPUs |
||
|
|
764738b015 |
Squashed commit of the following:
commit |
||
|
|
4b1506f962 | forgot to include the test changes | ||
|
|
55b6614a69 | added lines for multiple CPUs | ||
|
|
a2d724a54c |
Merge pull request #114 from ZertoPublic/wcarroll/where-fix
Wcarroll/where fix |
||
|
|
7e58672bc2 |
Merge pull request #2 from wcarroll/master
update fork from origin |
||
|
|
34f2f937aa | Merge branch 'master' of https://github.com/recklessop/ZertoApiWrapper | ||
|
|
f59d0bece4 | Merge remote-tracking branch 'upstream/master' | ||
|
|
13ee62de6c | Merge remote-tracking branch 'upstream/master' | ||
|
|
8fd820ff38 |
Merge pull request #1 from wcarroll/master
updating from wcarroll |
5 changed files with 32 additions and 2 deletions
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project is transitioning to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [1.5.4]
|
||||
|
||||
### Zerto Virtual Manager
|
||||
|
||||
#### Updated
|
||||
|
||||
* Updated `Install-ZertoVra` function [help documentation](https://github.com/ZertoPublic/ZertoApiWrapper/blob/master/docs/Install-ZertoVra.md) to allow for configuring the number of vCPUs during deployment. Special thanks to @mitchellen for the fix.
|
||||
|
||||
## [1.5.3]
|
||||
|
||||
### Zerto Virtual Manager
|
||||
|
||||
@@ -6,7 +6,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
||||
|
||||
Context "$global:function::Parameter Unit Tests" {
|
||||
It "$global:function should have exactly 24 parameters defined" {
|
||||
(Get-Command $global:function).Parameters.Count | Should -Be 24
|
||||
(Get-Command $global:function).Parameters.Count | Should -Be 25
|
||||
}
|
||||
|
||||
$ParameterTestCases = @(
|
||||
|
||||
@@ -25,6 +25,11 @@ function Install-ZertoVra {
|
||||
)]
|
||||
[ValidateRange(1, 16)]
|
||||
[int]$memoryInGB = 3,
|
||||
[Parameter(
|
||||
HelpMessage = "Initial number of CPUs to assign to the VRA. Default is 1, Minimum is 1, Maximum is 4"
|
||||
)]
|
||||
[ValidateRange(1, 4)]
|
||||
[int]$NumOfCpus = 1,
|
||||
[Parameter(
|
||||
HelpMessage = "Bandwidth group to assign to the VRA. If unspecified will assign to the 'default_group'"
|
||||
)]
|
||||
@@ -136,6 +141,7 @@ function Install-ZertoVra {
|
||||
}
|
||||
$vraBasic['HostIdentifier'] = $hostIdentifier.toString()
|
||||
$vraBasic['MemoryInGB'] = $memoryInGB
|
||||
$vraBasic['NumOfCpus'] = $NumOfCpus
|
||||
$vraBasic['NetworkIdentifier'] = $networkIdentifier.toString()
|
||||
$vraBasic['UsePublicKeyInsteadOfCredentials'] = $true
|
||||
$vraBasicNetwork = [ordered]@{ }
|
||||
|
||||
@@ -165,6 +165,22 @@ Accept pipeline input: False
|
||||
Accept wildcard characters: False
|
||||
```
|
||||
|
||||
### -numofCPU
|
||||
Initial number of vCPUs to assign to the VRA.
|
||||
Default is 1, Minimum is 1, Maximum is 4
|
||||
|
||||
```yaml
|
||||
Type: Int32
|
||||
Parameter Sets: (All)
|
||||
Aliases:
|
||||
|
||||
Required: False
|
||||
Position: Named
|
||||
Default value: None
|
||||
Accept pipeline input: False
|
||||
Accept wildcard characters: False
|
||||
```
|
||||
|
||||
### -memoryInGB
|
||||
Initial amount of memory to assign to the VRA in GB.
|
||||
Default is 3, Minimum is 1, Maximum is 16
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
1.5.3
|
||||
1.5.4
|
||||
|
||||
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.