-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extend "vSphere" step (buildStep "Clone") with ability to specify nam…
…edSnapshot and whether to useCurrentSnapshot
- Loading branch information
Showing
7 changed files
with
137 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
...in/resources/org/jenkinsci/plugins/vsphere/builders/Clone/help-extraConfigParameters.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<div> | ||
(Optional) A Map of parameters to set in the VM's "extra config" | ||
object. This data can then be read back at a later stage. | ||
In the case of parameters whose name starts "guestinfo.", the | ||
parameter can be read by the VMware Tools on the client OS. | ||
e.g. a variable named "guestinfo.Foo" with value "Bar" could | ||
be read on the guest using the command-line | ||
<tt>vmtoolsd --cmd "info-get guestinfo.Foo"</tt>. | ||
</div> |
6 changes: 6 additions & 0 deletions
6
src/main/resources/org/jenkinsci/plugins/vsphere/builders/Clone/help-namedSnapshot.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<div> | ||
If set then the clone will be created from the source VM's | ||
snapshot of this name. | ||
If this is set then <tt>useCurrentSnapshot</tt> must not be set. | ||
May impact the <tt>linkedClone</tt> behavior. | ||
</div> |
7 changes: 7 additions & 0 deletions
7
src/main/resources/org/jenkinsci/plugins/vsphere/builders/Clone/help-useCurrentSnapshot.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<div> | ||
If true then the clone will be created from the source VM's | ||
"current" snapshot. This means that the VM <em>must</em> have | ||
at least one snapshot. | ||
If this is set then <tt>namedSnapshot</tt> must not be set. | ||
May impact the <tt>linkedClone</tt> behavior. | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters