mirror of
https://github.com/jbowdre/vRealize.git
synced 2024-10-31 19:02:17 +00:00
update workflow
This commit is contained in:
parent
a75caa5b61
commit
13611484ef
4 changed files with 22 additions and 0 deletions
|
@ -0,0 +1,7 @@
|
|||
/* JavaScript: create lock
|
||||
Creates a vRO lock to avoid conflicts from multiple concurrent workflow runs.
|
||||
Inputs: none
|
||||
Outputs: none
|
||||
*/
|
||||
System.debug("Creating lock...");
|
||||
LockingSystem.lockAndWait("namingLock","eventBroker");
|
|
@ -0,0 +1 @@
|
|||
Actions/com.virtuallypotato.utility/getSdkConnectionForVC.js
|
|
@ -1,6 +1,8 @@
|
|||
# Generate Unique Hostname workflow
|
||||
Ensures a unique, sequentially-numbered hostname by checking for naming conflicts in vCenter, DNS, and Active Directory.
|
||||
|
||||
![Schema](schema.png)
|
||||
|
||||
## Inputs/Outputs
|
||||
| Name | Type | Direction | Description |
|
||||
|:--- |:--- |:---|:---|
|
||||
|
@ -10,3 +12,15 @@ Ensures a unique, sequentially-numbered hostname by checking for naming conflict
|
|||
| `vCenterName` | string | Input | FQDN of the owning vCenter |
|
||||
| `vmName` | string | Output | generated VM name |
|
||||
|
||||
## Variables
|
||||
| Name | Type | Value | Description |
|
||||
|:--- |:--- |:--- |:--- |
|
||||
| `adHost` | AD:AdHost | `[object AD:AdHost]` | host used by the AD plugin |
|
||||
| `candidateVmName` | string | | holds the current working name during checks |
|
||||
| `computerNames` | ConfigurationElement | `[object ConfigurationElement]` | vRO config element to keep track of the last-used number sequence for a given `nameBase` |
|
||||
| `conflict` | boolean | `false` | gets set to true when a name conflict is encountered |
|
||||
| `digitCount` | number | `2` | determines how many digits get appended to `nameBase` |
|
||||
| `errMsg` | string | | thrown when errors are encountered |
|
||||
|`hostnameSequence` | number | `0` | starts the sequence at 0, tracks as it changes |
|
||||
| `vcSdkConnection` | VC:SdkConnection | | host used by the vCenter plugin (set based on `vmName` input) |
|
||||
| `vms` | Array/VC:VirtualMachine | | holds VM objects to check for conflicts |
|
BIN
Orchestrator/Workflows/Generate Unique Hostname/schema.png
Normal file
BIN
Orchestrator/Workflows/Generate Unique Hostname/schema.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 29 KiB |
Loading…
Reference in a new issue