Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
-Fixed JENKINS-14468
-Fixed JENKINS-9471 (and duplicates JENKINS-8240, JENKINS-7179) -Some comments improved
- Loading branch information
Showing
with
60 additions
and 91 deletions.
- +15 −15 src/main/java/hudson/plugins/libvirt/Hypervisor.java
- +1 −1 src/main/java/hudson/plugins/libvirt/PluginImpl.java
- +31 −54 src/main/java/hudson/plugins/libvirt/VirtualMachineLauncher.java
- +0 −10 src/main/java/hudson/plugins/libvirt/VirtualMachineSlave.java
- +2 −2 src/main/resources/hudson/plugins/libvirt/VirtualMachineSlave/configure-entries.jelly
- +1 −1 src/main/resources/index.jelly
- +0 −3 src/main/webapp/help-libvirt-computerName.html
- +3 −3 src/main/webapp/help-libvirt-hypervisorHost.html
- +5 −0 src/main/webapp/help-libvirt-hypervisorSshPort.html
- +1 −1 src/main/webapp/help-libvirt-hypervisorType.html
- +1 −1 src/main/webapp/help-libvirt-hypervisorUri.html
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
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
@@ -122,16 +122,6 @@ public List<Hypervisor> getHypervisors() { | ||
} | ||
return result; | ||
} | ||
|
||
public String getHypervisorDescription() { | ||
return hypervisorDescription; | ||
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
@@ -1,3 +1,3 @@ | ||
<div> | ||
This plugin provides a way to create slave computer as VirtualMachine controlled by KVM/XEN (start before build, shutdown after). | ||
</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
@@ -3,7 +3,4 @@ | ||
Here you can find all configured machine in your hypervisor.<br/> | ||
If you have an empty combo, maybe there is problem with the hypervisor connection. | ||
</p> | ||
</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
@@ -1,11 +1,11 @@ | ||
<div> | ||
<p> | ||
Hostname or IP address of your Hypervisor. <br/> | ||
Something like:<br/> | ||
<b>machine.mydomain.com</b> or<br/> | ||
<b>192.168.10.10</b> | ||
</p> | ||
<p> | ||
You must be able to reach this machine using SSH (pubkey authentication). | ||
</p> | ||
</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
@@ -0,0 +1,5 @@ | ||
<div> | ||
<p> | ||
Select your SSH port (usually 22). | ||
</p> | ||
</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
@@ -1,5 +1,5 @@ | ||
<div> | ||
<p> | ||
Select your Hypervisor type. | ||
</p> | ||
</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
@@ -1,5 +1,5 @@ | ||
<div> | ||
<p> | ||
In this dropdown box you can find all configured Hypervisors. To configure an Hypervisor, open the Jenkins administration page. | ||
</p> | ||
</div> |