|
2 | 2 | # Requires -Modules VMware.VimAutomation.Core
|
3 | 3 |
|
4 | 4 | <#
|
5 |
| -.SYNOPSIS |
6 |
| - Creates a new cluster |
| 5 | + .SYNOPSIS |
| 6 | + Creates a new cluster |
7 | 7 |
|
8 |
| -.DESCRIPTION |
| 8 | + .DESCRIPTION |
9 | 9 |
|
10 |
| -.NOTES |
11 |
| - This PowerShell script was developed and optimized for ScriptRunner. The use of the scripts requires ScriptRunner. |
12 |
| - The customer or user is authorized to copy the script from the repository and use them in ScriptRunner. |
13 |
| - The terms of use for ScriptRunner do not apply to this script. In particular, ScriptRunner Software GmbH assumes no liability for the function, |
14 |
| - the use and the consequences of the use of this freely available script. |
15 |
| - PowerShell is a product of Microsoft Corporation. ScriptRunner is a product of ScriptRunner Software GmbH. |
16 |
| - © ScriptRunner Software GmbH |
| 10 | + .NOTES |
| 11 | + This PowerShell script was developed and optimized for ScriptRunner. The use of the scripts requires ScriptRunner. |
| 12 | + The customer or user is authorized to copy the script from the repository and use them in ScriptRunner. |
| 13 | + The terms of use for ScriptRunner do not apply to this script. In particular, ScriptRunner Software GmbH assumes no liability for the function, |
| 14 | + the use and the consequences of the use of this freely available script. |
| 15 | + PowerShell is a product of Microsoft Corporation. ScriptRunner is a product of ScriptRunner Software GmbH. |
| 16 | + © ScriptRunner Software GmbH |
17 | 17 |
|
18 |
| -.COMPONENT |
19 |
| - Requires Module VMware.VimAutomation.Core |
| 18 | + .COMPONENT |
| 19 | + Requires Module VMware.VimAutomation.Core |
20 | 20 |
|
21 |
| -.LINK |
22 |
| - https://github.com/scriptrunner/ActionPacks/tree/master/VMware/Cluster |
| 21 | + .LINK |
| 22 | + https://github.com/scriptrunner/ActionPacks/tree/master/VMware/Cluster |
23 | 23 |
|
24 |
| -.Parameter VIServer |
25 |
| - Specifies the IP address or the DNS name of the vSphere server to which you want to connect |
| 24 | + .Parameter VIServer |
| 25 | + [sr-en] IP address or the DNS name of the vSphere server to which you want to connect |
| 26 | + [sr-de] IP Adresse oder DNS des vSphere Servers |
26 | 27 |
|
27 |
| -.Parameter VICredential |
28 |
| - Specifies a PSCredential object that contains credentials for authenticating with the server |
| 28 | + .Parameter VICredential |
| 29 | + [sr-en] PSCredential object that contains credentials for authenticating with the server |
| 30 | + [sr-de] Benutzerkonto für die Ausführung |
29 | 31 |
|
30 |
| -.Parameter ClusterName |
31 |
| - Specifies a name for the new cluster |
| 32 | + .Parameter ClusterName |
| 33 | + [sr-en] Name for the new cluster |
| 34 | + [sr-de] Cluster-name |
32 | 35 |
|
33 |
| -.Parameter LocationName |
34 |
| - Specifies a datacenter name or folder name where you want to place the host |
| 36 | + .Parameter LocationName |
| 37 | + [sr-en] Datacenter name or folder name where you want to place the host |
| 38 | + [sr-de] Datacenter oderr Ordner |
35 | 39 |
|
36 |
| -.Parameter DrsAutomationLevel |
37 |
| - Specifies a DRS (Distributed Resource Scheduler) automation level |
| 40 | + .Parameter DrsAutomationLevel |
| 41 | + [sr-en] DRS (Distributed Resource Scheduler) automation level |
| 42 | + [sr-de] DRS (Distributed Resource Scheduler) Automations-Level |
38 | 43 |
|
39 |
| -.Parameter DrsEnabled |
40 |
| - Indicates that VMware DRS (Distributed Resource Scheduler) is enabled |
| 44 | + .Parameter DrsEnabled |
| 45 | + [sr-en] VMware DRS (Distributed Resource Scheduler) is enabled |
| 46 | + [sr-de] VMware DRS (Distributed Resource Scheduler) aktivieren |
41 | 47 |
|
42 |
| -.Parameter HAAdmissionControlEnabled |
43 |
| - Indicates that the virtual machines in the cluster will not start if they violate availability constraints |
| 48 | + .Parameter HAAdmissionControlEnabled |
| 49 | + [sr-en] Virtual machines in the cluster will not start if they violate availability constraints |
| 50 | + [sr-de] VMs nicht starten, wenn sie die Verfügbarkeitsbeschränkungen verletzen |
44 | 51 |
|
45 |
| -.Parameter HAEnabled |
46 |
| - Indicates that VMware High Availability is enabled |
| 52 | + .Parameter HAEnabled |
| 53 | + [sr-en] VMware High Availability is enabled |
| 54 | + [sr-de] VMware Hoch-Verfügbarkeit aktivieren |
47 | 55 |
|
48 |
| -.Parameter HAFailoverLevel |
49 |
| - Specifies a failover level |
| 56 | + .Parameter HAFailoverLevel |
| 57 | + [sr-en] Failover level |
| 58 | + [sr-de] Failover Level |
50 | 59 |
|
51 |
| -.Parameter HAIsolationResponse |
52 |
| - Specifies whether the virtual machine should be powered off if a host determines that it is isolated from the rest of the compute resource |
| 60 | + .Parameter HAIsolationResponse |
| 61 | + [sr-en] Virtual machine should be powered off if a host determines that it is isolated from the rest of the compute resource |
| 62 | + [sr-de] Virtuelle Maschine wird ausgeschaltet, wenn sie isoliert ist |
53 | 63 |
|
54 |
| -.Parameter HARestartPriority |
55 |
| - Specifies the cluster HA restart priority |
| 64 | + .Parameter HARestartPriority |
| 65 | + [sr-en] Cluster HA restart priority |
| 66 | + [sr-de] Neustart Priorität |
56 | 67 | #>
|
57 | 68 |
|
58 | 69 | [CmdLetBinding()]
|
|
0 commit comments