[GitHub] blueorangutan commented on issue #2246: CLOUDSTACK-10046 checksum validation for any java supported Digests-type

2017-09-04 Thread git
blueorangutan commented on issue #2246: CLOUDSTACK-10046 checksum validation 
for any java supported Digests-type
URL: https://github.com/apache/cloudstack/pull/2246#issuecomment-326909559
 
 
   @borisstoyanov a Trillian-Jenkins matrix job (centos6 mgmt + xs65sp1, 
centos7 mgmt + vmware55u3, centos7 mgmt + kvmcentos7) has been kicked to run 
smoke tests
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2246: CLOUDSTACK-10046 checksum validation for any java supported Digests-type

2017-09-04 Thread git
blueorangutan commented on issue #2246: CLOUDSTACK-10046 checksum validation 
for any java supported Digests-type
URL: https://github.com/apache/cloudstack/pull/2246#issuecomment-326905574
 
 
   Packaging result: ?centos6 ?centos7 ?debian. JID-1072
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] anshul1886 commented on issue #1124: CID-1338387: Deletion of method endPointSelector.selectHypervisorHost

2017-09-04 Thread git
anshul1886 commented on issue #1124: CID-1338387: Deletion of method 
endPointSelector.selectHypervisorHost
URL: https://github.com/apache/cloudstack/pull/1124#issuecomment-326904673
 
 
   @rafaelweingartner I have already gone through that discussion. I agree with 
you that in some scenarios that method may not work. But in most of the 
scenarios that method would work as most of the times user have only one kind 
of hypervisor in a zone. As you have observed that method is selecting one host 
with hypervisor_type not null i.e. we are ignoring system VMs. My intention to 
comment here was to point out scenario if we are not sure of reason for 
introduction of method then we cannot simply delete it as that may break 
something which has happened.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2246: CLOUDSTACK-10046 checksum validation for any java supported Digests-type

2017-09-04 Thread git
blueorangutan commented on issue #2246: CLOUDSTACK-10046 checksum validation 
for any java supported Digests-type
URL: https://github.com/apache/cloudstack/pull/2246#issuecomment-326899948
 
 
   @borisstoyanov a Jenkins job has been kicked to build packages. I'll keep 
you posted as I make progress.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] borisstoyanov commented on issue #2246: CLOUDSTACK-10046 checksum validation for any java supported Digests-type

2017-09-04 Thread git
borisstoyanov commented on issue #2246: CLOUDSTACK-10046 checksum validation 
for any java supported Digests-type
URL: https://github.com/apache/cloudstack/pull/2246#issuecomment-326899832
 
 
   @blueorangutan package
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] sgoeminn commented on a change in pull request #2250: CLOUDSTACK-10057: listNetworkOfferings now returns the correct number of offerings.

2017-09-04 Thread git
sgoeminn commented on a change in pull request #2250: CLOUDSTACK-10057: 
listNetworkOfferings now returns the correct number  of offerings.
URL: https://github.com/apache/cloudstack/pull/2250#discussion_r136758681
 
 

 ##
 File path: server/src/com/cloud/configuration/ConfigurationManagerImpl.java
 ##
 @@ -4788,7 +4788,7 @@ protected void validateNtwkOffDetails(final Map<Detail, 
String> details, final M
 // Now apply pagination
 final List wPagination = 
StringUtils.applyPagination(supportedOfferings, cmd.getStartIndex(), 
cmd.getPageSizeVal());
 if (wPagination != null) {
-final Pair<List, Integer> 
listWPagination = new Pair<List, 
Integer>(wPagination, offerings.size());
+final Pair<List, Integer> 
listWPagination = new Pair<List, 
Integer>(wPagination, supportedOfferings.size());
 
 Review comment:
   Line 4798 is correct. The supportedOfferings list is build/created within 
the ` if (parseOfferings)` code block. In the else case we want to return the 
offerings list and the size of the offerings list (supportedOfferings is also 
not defined in that case).
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] sgoeminn commented on a change in pull request #2250: CLOUDSTACK-10057: listNetworkOfferings now returns the correct number of offerings.

2017-09-04 Thread git
sgoeminn commented on a change in pull request #2250: CLOUDSTACK-10057: 
listNetworkOfferings now returns the correct number  of offerings.
URL: https://github.com/apache/cloudstack/pull/2250#discussion_r136758681
 
 

 ##
 File path: server/src/com/cloud/configuration/ConfigurationManagerImpl.java
 ##
 @@ -4788,7 +4788,7 @@ protected void validateNtwkOffDetails(final Map<Detail, 
String> details, final M
 // Now apply pagination
 final List wPagination = 
StringUtils.applyPagination(supportedOfferings, cmd.getStartIndex(), 
cmd.getPageSizeVal());
 if (wPagination != null) {
-final Pair<List, Integer> 
listWPagination = new Pair<List, 
Integer>(wPagination, offerings.size());
+final Pair<List, Integer> 
listWPagination = new Pair<List, 
Integer>(wPagination, supportedOfferings.size());
 
 Review comment:
   Line 4798 is correct. The supportedOfferings list is build within the ` if 
(parseOfferings)` code block. In the else case we want to return the offerings 
list and the size of the offerings list (supportedOfferings is also not defined 
in that case).
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] DaanHoogland closed pull request #2251: WIP iso failures research

2017-09-04 Thread git
DaanHoogland closed pull request #2251: WIP iso failures research
URL: https://github.com/apache/cloudstack/pull/2251
 
 
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] DaanHoogland commented on issue #2251: WIP iso failures research

2017-09-04 Thread git
DaanHoogland commented on issue #2251: WIP iso failures research
URL: https://github.com/apache/cloudstack/pull/2251#issuecomment-326883823
 
 
   test_iso still fails closing this
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd commented on a change in pull request #2250: CLOUDSTACK-10057: listNetworkOfferings now returns the correct number of offerings.

2017-09-04 Thread git
rhtyd commented on a change in pull request #2250: CLOUDSTACK-10057: 
listNetworkOfferings now returns the correct number  of offerings.
URL: https://github.com/apache/cloudstack/pull/2250#discussion_r136752100
 
 

 ##
 File path: server/src/com/cloud/configuration/ConfigurationManagerImpl.java
 ##
 @@ -4788,7 +4788,7 @@ protected void validateNtwkOffDetails(final Map<Detail, 
String> details, final M
 // Now apply pagination
 final List wPagination = 
StringUtils.applyPagination(supportedOfferings, cmd.getStartIndex(), 
cmd.getPageSizeVal());
 if (wPagination != null) {
-final Pair<List, Integer> 
listWPagination = new Pair<List, 
Integer>(wPagination, offerings.size());
+final Pair<List, Integer> 
listWPagination = new Pair<List, 
Integer>(wPagination, supportedOfferings.size());
 
 Review comment:
   Additional review and testing requested, if we need to change this line, 
then 4798 may have similar code as well.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] cloudmonger commented on issue #2244: CLOUDSTACK-10054:Volume download times out in 3600 seconds

2017-09-03 Thread git
cloudmonger commented on issue #2244: CLOUDSTACK-10054:Volume download times 
out in 3600 seconds
URL: https://github.com/apache/cloudstack/pull/2244#issuecomment-325209370
 
 
   ### ACS CI BVT Run
**Sumarry:**
Build Number 1153
Hypervisor xenserver
NetworkType Advanced
Passed=104
Failed=8
Skipped=12
   
   _Link to logs Folder (search by build_no):_ 
https://www.dropbox.com/sh/r2si930m8xxzavs/AAAzNrnoF1fC3auFrvsKo_8-a?dl=0
   
   **Failed tests:**
   * test_router_dnsservice.py
   
* test_router_dns_guestipquery Failing since 2 runs
   
   * test_non_contigiousvlan.py
   
* test_extendPhysicalNetworkVlan Failed
   
   * test_list_ids_parameter.py
   
* ContextSuite context=TestListIdsParams>:setup Failing since 55 runs
   
   * test_routers_network_ops.py
   
* test_01_isolate_network_FW_PF_default_routes_egress_true Failing since 18 
runs
   
* test_02_isolate_network_FW_PF_default_routes_egress_false Failing since 
145 runs
   
* test_01_RVR_Network_FW_PF_SSH_default_routes_egress_true Failing since 
140 runs
   
* test_02_RVR_Network_FW_PF_SSH_default_routes_egress_false Failing since 
140 runs
   
* test_03_RVR_Network_check_router_state Failed
   
   
   **Skipped tests:**
   test_vm_nic_adapter_vmxnet3
   test_01_verify_libvirt
   test_02_verify_libvirt_after_restart
   test_03_verify_libvirt_attach_disk
   test_04_verify_guest_lspci
   test_05_change_vm_ostype_restart
   test_06_verify_guest_lspci_again
   test_static_role_account_acls
   test_11_ss_nfs_version_on_ssvm
   test_nested_virtualization_vmware
   test_3d_gpu_support
   test_deploy_vgpu_enabled_vm
   
   **Passed test suits:**
   test_deploy_vm_with_userdata.py
   test_affinity_groups_projects.py
   test_portable_publicip.py
   test_vm_snapshots.py
   test_over_provisioning.py
   test_global_settings.py
   test_scale_vm.py
   test_service_offerings.py
   test_routers_iptables_default_policy.py
   test_loadbalance.py
   test_routers.py
   test_reset_vm_on_reboot.py
   test_deploy_vms_with_varied_deploymentplanners.py
   test_network.py
   test_router_dns.py
   test_login.py
   test_deploy_vm_iso.py
   test_public_ip_range.py
   test_multipleips_per_nic.py
   test_metrics_api.py
   test_regions.py
   test_affinity_groups.py
   test_network_acl.py
   test_pvlan.py
   test_volumes.py
   test_nic.py
   test_deploy_vm_root_resize.py
   test_resource_detail.py
   test_secondary_storage.py
   test_vm_life_cycle.py
   test_disk_offerings.py
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] cloudmonger commented on issue #2244: CLOUDSTACK-10054:Volume download times out in 3600 seconds

2017-09-03 Thread git
cloudmonger commented on issue #2244: CLOUDSTACK-10054:Volume download times 
out in 3600 seconds
URL: https://github.com/apache/cloudstack/pull/2244#issuecomment-326865244
 
 
   ### ACS CI BVT Run
**Sumarry:**
Build Number 1187
Hypervisor xenserver
NetworkType Advanced
Passed=113
Failed=6
Skipped=40
   
   _Link to logs Folder (search by build_no):_ 
https://www.dropbox.com/sh/r2si930m8xxzavs/AAAzNrnoF1fC3auFrvsKo_8-a?dl=0
   
   **Failed tests:**
   * test_router_dns.py
   
* test_router_dns_guestipquery Failed
   
   * test_non_contigiousvlan.py
   
* test_extendPhysicalNetworkVlan Failed
   
   * test_volumes.py
   
* test_06_download_detached_volume Failed
   
   * test_routers_network_ops.py
   
* test_01_isolate_network_FW_PF_default_routes_egress_true Failing since 48 
runs
   
* test_02_isolate_network_FW_PF_default_routes_egress_false Failing since 
175 runs
   
* ContextSuite context=TestRedundantIsolateNetworks>:setup Failing since 11 
runs
   
   
   **Skipped tests:**
   test_vm_nic_adapter_vmxnet3
   test_01_verify_libvirt
   test_02_verify_libvirt_after_restart
   test_03_verify_libvirt_attach_disk
   test_04_verify_guest_lspci
   test_05_change_vm_ostype_restart
   test_06_verify_guest_lspci_again
   test_disable_oobm_ha_state_ineligible
   test_hostha_configure_default_driver
   test_hostha_enable_ha_when_host_disabled
   test_hostha_enable_ha_when_host_disconected
   test_hostha_enable_ha_when_host_in_maintenance
   test_hostha_kvm_host_degraded
   test_hostha_kvm_host_fencing
   test_hostha_kvm_host_recovering
   test_remove_ha_provider_not_possible
   test_configure_ha_provider_invalid
   test_configure_ha_provider_valid
   test_ha_configure_enabledisable_across_clusterzones
   test_ha_disable_feature_invalid
   test_ha_enable_feature_invalid
   test_ha_list_providers
   test_ha_multiple_mgmt_server_ownership
   test_ha_verify_fsm_available
   test_ha_verify_fsm_degraded
   test_ha_verify_fsm_fenced
   test_ha_verify_fsm_recovering
   test_hostha_configure_default_driver
   test_hostha_configure_invalid_provider
   test_hostha_disable_feature_valid
   test_hostha_enable_feature_valid
   test_hostha_enable_feature_without_setting_provider
   test_list_ha_for_host
   test_list_ha_for_host_invalid
   test_list_ha_for_host_valid
   test_static_role_account_acls
   test_11_ss_nfs_version_on_ssvm
   test_nested_virtualization_vmware
   test_3d_gpu_support
   test_deploy_vgpu_enabled_vm
   
   **Passed test suits:**
   test_deploy_vm_with_userdata.py
   test_affinity_groups_projects.py
   test_portable_publicip.py
   test_vm_snapshots.py
   test_over_provisioning.py
   test_global_settings.py
   test_router_dnsservice.py
   test_scale_vm.py
   test_service_offerings.py
   test_routers_iptables_default_policy.py
   test_loadbalance.py
   test_routers.py
   test_reset_vm_on_reboot.py
   test_deploy_vms_with_varied_deploymentplanners.py
   test_network.py
   test_outofbandmanagement_nestedplugin.py
   test_portforwardingrules.py
   test_login.py
   test_deploy_vm_iso.py
   test_list_ids_parameter.py
   test_public_ip_range.py
   test_multipleips_per_nic.py
   test_metrics_api.py
   test_regions.py
   test_affinity_groups.py
   test_network_acl.py
   test_pvlan.py
   test_nic.py
   test_deploy_vm_root_resize.py
   test_resource_detail.py
   test_secondary_storage.py
   test_vm_life_cycle.py
   test_disk_offerings.py
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] PranaliM opened a new pull request #2258: Cloudstack 10064

2017-09-03 Thread git
PranaliM opened a new pull request #2258: Cloudstack 10064
URL: https://github.com/apache/cloudstack/pull/2258
 
 
   **Description**: For Volumes on Secondary Storage, the usage is not 
accounted for.
   
   **The fix is implemented as follows:**
   1. A new Usage Type is added for the Volume on secondary storage : 
VOLUME_SECONDARY (id=26)
   2. A new storage type, 'Volume' is defined.
   3. When a volume is uploaded and the usage server executes next,entry will 
be added to the usage_storage helper table for all the volumes uploaded since 
the  Usage server executed last.
   4. When the uploaded volume is attached, the 'deleted' column in the 
usage_storage table is set to the time-stamp when the volume was deleted 
   5. 2 entries will be added to the cloud_usage table with usage_type=26 and 
usage_type=6 (Volume usage on primary). One for the duration the volume was on 
primary and other for the duration it was on secondary.
   6. Entry is added to the helper table volume_usage for accounting for the 
primary storage.Next execution of the usage server and on-wards, usage entry 
for usage_type=6 only will be added.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] mrunalinikankariya commented on issue #2054: CLOUDSTACK-9886 : After restarting cloudstack-management , It takes time to connect hosts

2017-09-03 Thread git
mrunalinikankariya commented on issue #2054: CLOUDSTACK-9886 : After restarting 
cloudstack-management , It takes time to connect hosts
URL: https://github.com/apache/cloudstack/pull/2054#issuecomment-326861556
 
 
   tag:This is Ready to Merge
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] cloudmonger commented on issue #2102: CLOUDSTACK-9889 Dedication of guest vlan range to a domain

2017-09-03 Thread git
cloudmonger commented on issue #2102: CLOUDSTACK-9889 Dedication of guest vlan 
range to a domain
URL: https://github.com/apache/cloudstack/pull/2102#issuecomment-325957771
 
 
   ### ACS CI BVT Run
**Sumarry:**
Build Number 1166
Hypervisor xenserver
NetworkType Advanced
Passed=109
Failed=5
Skipped=12
   
   _Link to logs Folder (search by build_no):_ 
https://www.dropbox.com/sh/r2si930m8xxzavs/AAAzNrnoF1fC3auFrvsKo_8-a?dl=0
   
   **Failed tests:**
   * test_scale_vm.py
   
* ContextSuite context=TestScaleVm>:setup Failing since 39 runs
   
   * test_routers_network_ops.py
   
* test_01_isolate_network_FW_PF_default_routes_egress_true Failing since 30 
runs
   
* test_02_isolate_network_FW_PF_default_routes_egress_false Failing since 
157 runs
   
* test_01_RVR_Network_FW_PF_SSH_default_routes_egress_true Failing since 
152 runs
   
* test_02_RVR_Network_FW_PF_SSH_default_routes_egress_false Failing since 
152 runs
   
   
   **Skipped tests:**
   test_vm_nic_adapter_vmxnet3
   test_01_verify_libvirt
   test_02_verify_libvirt_after_restart
   test_03_verify_libvirt_attach_disk
   test_04_verify_guest_lspci
   test_05_change_vm_ostype_restart
   test_06_verify_guest_lspci_again
   test_static_role_account_acls
   test_11_ss_nfs_version_on_ssvm
   test_nested_virtualization_vmware
   test_3d_gpu_support
   test_deploy_vgpu_enabled_vm
   
   **Passed test suits:**
   test_deploy_vm_with_userdata.py
   test_affinity_groups_projects.py
   test_portable_publicip.py
   test_vm_snapshots.py
   test_over_provisioning.py
   test_global_settings.py
   test_router_dnsservice.py
   test_service_offerings.py
   test_routers_iptables_default_policy.py
   test_loadbalance.py
   test_routers.py
   test_reset_vm_on_reboot.py
   test_deploy_vms_with_varied_deploymentplanners.py
   test_network.py
   test_router_dns.py
   test_non_contigiousvlan.py
   test_login.py
   test_deploy_vm_iso.py
   test_list_ids_parameter.py
   test_public_ip_range.py
   test_multipleips_per_nic.py
   test_metrics_api.py
   test_regions.py
   test_affinity_groups.py
   test_network_acl.py
   test_pvlan.py
   test_volumes.py
   test_nic.py
   test_deploy_vm_root_resize.py
   test_resource_detail.py
   test_secondary_storage.py
   test_vm_life_cycle.py
   test_disk_offerings.py
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] cloudmonger commented on issue #2102: CLOUDSTACK-9889 Dedication of guest vlan range to a domain

2017-09-03 Thread git
cloudmonger commented on issue #2102: CLOUDSTACK-9889 Dedication of guest vlan 
range to a domain
URL: https://github.com/apache/cloudstack/pull/2102#issuecomment-326835972
 
 
   ### ACS CI BVT Run
**Sumarry:**
Build Number 1186
Hypervisor xenserver
NetworkType Advanced
Passed=117
Failed=4
Skipped=40
   
   _Link to logs Folder (search by build_no):_ 
https://www.dropbox.com/sh/r2si930m8xxzavs/AAAzNrnoF1fC3auFrvsKo_8-a?dl=0
   
   **Failed tests:**
   * test_routers_network_ops.py
   
* test_01_isolate_network_FW_PF_default_routes_egress_true Failing since 47 
runs
   
* test_02_isolate_network_FW_PF_default_routes_egress_false Failing since 
174 runs
   
* test_01_RVR_Network_FW_PF_SSH_default_routes_egress_true Failing since 
169 runs
   
* test_02_RVR_Network_FW_PF_SSH_default_routes_egress_false Failing since 
169 runs
   
   
   **Skipped tests:**
   test_vm_nic_adapter_vmxnet3
   test_01_verify_libvirt
   test_02_verify_libvirt_after_restart
   test_03_verify_libvirt_attach_disk
   test_04_verify_guest_lspci
   test_05_change_vm_ostype_restart
   test_06_verify_guest_lspci_again
   test_disable_oobm_ha_state_ineligible
   test_hostha_configure_default_driver
   test_hostha_enable_ha_when_host_disabled
   test_hostha_enable_ha_when_host_disconected
   test_hostha_enable_ha_when_host_in_maintenance
   test_hostha_kvm_host_degraded
   test_hostha_kvm_host_fencing
   test_hostha_kvm_host_recovering
   test_remove_ha_provider_not_possible
   test_configure_ha_provider_invalid
   test_configure_ha_provider_valid
   test_ha_configure_enabledisable_across_clusterzones
   test_ha_disable_feature_invalid
   test_ha_enable_feature_invalid
   test_ha_list_providers
   test_ha_multiple_mgmt_server_ownership
   test_ha_verify_fsm_available
   test_ha_verify_fsm_degraded
   test_ha_verify_fsm_fenced
   test_ha_verify_fsm_recovering
   test_hostha_configure_default_driver
   test_hostha_configure_invalid_provider
   test_hostha_disable_feature_valid
   test_hostha_enable_feature_valid
   test_hostha_enable_feature_without_setting_provider
   test_list_ha_for_host
   test_list_ha_for_host_invalid
   test_list_ha_for_host_valid
   test_static_role_account_acls
   test_11_ss_nfs_version_on_ssvm
   test_nested_virtualization_vmware
   test_3d_gpu_support
   test_deploy_vgpu_enabled_vm
   
   **Passed test suits:**
   test_deploy_vm_with_userdata.py
   test_affinity_groups_projects.py
   test_portable_publicip.py
   test_vm_snapshots.py
   test_over_provisioning.py
   test_global_settings.py
   test_router_dnsservice.py
   test_scale_vm.py
   test_service_offerings.py
   test_routers_iptables_default_policy.py
   test_loadbalance.py
   test_routers.py
   test_reset_vm_on_reboot.py
   test_deploy_vms_with_varied_deploymentplanners.py
   test_network.py
   test_router_dns.py
   test_outofbandmanagement_nestedplugin.py
   test_portforwardingrules.py
   test_non_contigiousvlan.py
   test_login.py
   test_deploy_vm_iso.py
   test_list_ids_parameter.py
   test_public_ip_range.py
   test_multipleips_per_nic.py
   test_metrics_api.py
   test_regions.py
   test_affinity_groups.py
   test_network_acl.py
   test_pvlan.py
   test_volumes.py
   test_nic.py
   test_deploy_vm_root_resize.py
   test_resource_detail.py
   test_secondary_storage.py
   test_vm_life_cycle.py
   test_disk_offerings.py
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] cloudmonger commented on issue #905: BUG-ID: CLOUDSTACK-8922: Unable to delete IP tag

2017-09-03 Thread git
cloudmonger commented on issue #905: BUG-ID: CLOUDSTACK-8922:  Unable to delete 
IP tag
URL: https://github.com/apache/cloudstack/pull/905#issuecomment-326815810
 
 
   ### ACS CI BVT Run
**Sumarry:**
Build Number 1185
Hypervisor xenserver
NetworkType Advanced
Passed=138
Failed=5
Skipped=41
   
   _Link to logs Folder (search by build_no):_ 
https://www.dropbox.com/sh/r2si930m8xxzavs/AAAzNrnoF1fC3auFrvsKo_8-a?dl=0
   
   **Failed tests:**
   * test_router_dns.py
   
* test_router_dns_guestipquery Failed
   
   * test_routers_network_ops.py
   
* test_01_isolate_network_FW_PF_default_routes_egress_true Failing since 46 
runs
   
* test_02_isolate_network_FW_PF_default_routes_egress_false Failing since 
173 runs
   
* test_01_RVR_Network_FW_PF_SSH_default_routes_egress_true Failing since 
168 runs
   
* test_02_RVR_Network_FW_PF_SSH_default_routes_egress_false Failing since 
168 runs
   
   
   **Skipped tests:**
   test_vm_nic_adapter_vmxnet3
   test_04_vpn_tag
   test_01_verify_libvirt
   test_02_verify_libvirt_after_restart
   test_03_verify_libvirt_attach_disk
   test_04_verify_guest_lspci
   test_05_change_vm_ostype_restart
   test_06_verify_guest_lspci_again
   test_disable_oobm_ha_state_ineligible
   test_hostha_configure_default_driver
   test_hostha_enable_ha_when_host_disabled
   test_hostha_enable_ha_when_host_disconected
   test_hostha_enable_ha_when_host_in_maintenance
   test_hostha_kvm_host_degraded
   test_hostha_kvm_host_fencing
   test_hostha_kvm_host_recovering
   test_remove_ha_provider_not_possible
   test_configure_ha_provider_invalid
   test_configure_ha_provider_valid
   test_ha_configure_enabledisable_across_clusterzones
   test_ha_disable_feature_invalid
   test_ha_enable_feature_invalid
   test_ha_list_providers
   test_ha_multiple_mgmt_server_ownership
   test_ha_verify_fsm_available
   test_ha_verify_fsm_degraded
   test_ha_verify_fsm_fenced
   test_ha_verify_fsm_recovering
   test_hostha_configure_default_driver
   test_hostha_configure_invalid_provider
   test_hostha_disable_feature_valid
   test_hostha_enable_feature_valid
   test_hostha_enable_feature_without_setting_provider
   test_list_ha_for_host
   test_list_ha_for_host_invalid
   test_list_ha_for_host_valid
   test_static_role_account_acls
   test_11_ss_nfs_version_on_ssvm
   test_nested_virtualization_vmware
   test_3d_gpu_support
   test_deploy_vgpu_enabled_vm
   
   **Passed test suits:**
   test_deploy_vm_with_userdata.py
   test_affinity_groups_projects.py
   test_portable_publicip.py
   test_vm_snapshots.py
   test_over_provisioning.py
   test_global_settings.py
   test_router_dnsservice.py
   test_scale_vm.py
   test_service_offerings.py
   test_routers_iptables_default_policy.py
   test_loadbalance.py
   test_routers.py
   test_reset_vm_on_reboot.py
   test_deploy_vms_with_varied_deploymentplanners.py
   test_network.py
   test_outofbandmanagement_nestedplugin.py
   test_portforwardingrules.py
   test_non_contigiousvlan.py
   test_login.py
   test_deploy_vm_iso.py
   test_list_ids_parameter.py
   test_public_ip_range.py
   test_multipleips_per_nic.py
   test_metrics_api.py
   test_regions.py
   test_affinity_groups.py
   test_network_acl.py
   test_pvlan.py
   test_volumes.py
   test_nic.py
   test_deploy_vm_root_resize.py
   test_resource_detail.py
   test_secondary_storage.py
   test_vm_life_cycle.py
   test_disk_offerings.py
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] cloudmonger commented on issue #905: BUG-ID: CLOUDSTACK-8922: Unable to delete IP tag

2017-09-03 Thread git
cloudmonger commented on issue #905: BUG-ID: CLOUDSTACK-8922:  Unable to delete 
IP tag
URL: https://github.com/apache/cloudstack/pull/905#issuecomment-326551732
 
 
   ### ACS CI BVT Run
**Sumarry:**
Build Number 1176
Hypervisor xenserver
NetworkType Advanced
Passed=132
Failed=9
Skipped=41
   
   _Link to logs Folder (search by build_no):_ 
https://www.dropbox.com/sh/r2si930m8xxzavs/AAAzNrnoF1fC3auFrvsKo_8-a?dl=0
   
   **Failed tests:**
   * test_vm_snapshots.py
   
* test_change_service_offering_for_vm_with_snapshots Failed
   
   * test_tags.py
   
* test_06_template_tag Failed
   
   * test_deploy_vm_iso.py
   
* test_deploy_vm_from_iso Failed
   
   * test_volumes.py
   
* test_06_download_detached_volume Failed
   
   * test_routers_network_ops.py
   
* test_01_isolate_network_FW_PF_default_routes_egress_true Failing since 39 
runs
   
* test_02_isolate_network_FW_PF_default_routes_egress_false Failing since 
166 runs
   
* test_01_RVR_Network_FW_PF_SSH_default_routes_egress_true Failing since 
161 runs
   
* test_02_RVR_Network_FW_PF_SSH_default_routes_egress_false Failing since 
161 runs
   
* ContextSuite context=TestRedundantIsolateNetworks>:teardown Failing since 
14 runs
   
   
   **Skipped tests:**
   test_vm_nic_adapter_vmxnet3
   test_04_vpn_tag
   test_01_verify_libvirt
   test_02_verify_libvirt_after_restart
   test_03_verify_libvirt_attach_disk
   test_04_verify_guest_lspci
   test_05_change_vm_ostype_restart
   test_06_verify_guest_lspci_again
   test_disable_oobm_ha_state_ineligible
   test_ha_kvm_host_degraded
   test_ha_kvm_host_fencing
   test_ha_kvm_host_recovering
   test_hostha_configure_default_driver
   test_hostha_enable_ha_when_host_disabled
   test_hostha_enable_ha_when_host_disconected
   test_hostha_enable_ha_when_host_in_maintenance
   test_remove_ha_provider_not_possible
   test_configure_ha_provider_invalid
   test_configure_ha_provider_valid
   test_ha_configure_enabledisable_across_clusterzones
   test_ha_disable_feature_invalid
   test_ha_enable_feature_invalid
   test_ha_list_providers
   test_ha_multiple_mgmt_server_ownership
   test_ha_verify_fsm_available
   test_ha_verify_fsm_degraded
   test_ha_verify_fsm_fenced
   test_ha_verify_fsm_recovering
   test_hostha_configure_default_driver
   test_hostha_configure_invalid_provider
   test_hostha_disable_feature_valid
   test_hostha_enable_feature_valid
   test_hostha_enable_feature_without_setting_provider
   test_list_ha_for_host
   test_list_ha_for_host_invalid
   test_list_ha_for_host_valid
   test_static_role_account_acls
   test_11_ss_nfs_version_on_ssvm
   test_nested_virtualization_vmware
   test_3d_gpu_support
   test_deploy_vgpu_enabled_vm
   
   **Passed test suits:**
   test_deploy_vm_with_userdata.py
   test_affinity_groups_projects.py
   test_portable_publicip.py
   test_over_provisioning.py
   test_global_settings.py
   test_router_dnsservice.py
   test_scale_vm.py
   test_service_offerings.py
   test_routers_iptables_default_policy.py
   test_loadbalance.py
   test_routers.py
   test_reset_vm_on_reboot.py
   test_deploy_vms_with_varied_deploymentplanners.py
   test_network.py
   test_router_dns.py
   test_outofbandmanagement_nestedplugin.py
   test_portforwardingrules.py
   test_non_contigiousvlan.py
   test_login.py
   test_list_ids_parameter.py
   test_public_ip_range.py
   test_multipleips_per_nic.py
   test_metrics_api.py
   test_regions.py
   test_affinity_groups.py
   test_network_acl.py
   test_pvlan.py
   test_nic.py
   test_deploy_vm_root_resize.py
   test_resource_detail.py
   test_secondary_storage.py
   test_disk_offerings.py
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] cloudmonger commented on issue #2232: CLOUDSTACK-10040 Upload volume fails when management server can not r?

2017-09-03 Thread git
cloudmonger commented on issue #2232: CLOUDSTACK-10040 Upload volume fails when 
management server can not r?
URL: https://github.com/apache/cloudstack/pull/2232#issuecomment-326797085
 
 
   ### ACS CI BVT Run
**Sumarry:**
Build Number 1184
Hypervisor xenserver
NetworkType Advanced
Passed=114
Failed=7
Skipped=40
   
   _Link to logs Folder (search by build_no):_ 
https://www.dropbox.com/sh/r2si930m8xxzavs/AAAzNrnoF1fC3auFrvsKo_8-a?dl=0
   
   **Failed tests:**
   * test_router_dnsservice.py
   
* test_router_dns_guestipquery Failed
   
   * test_scale_vm.py
   
* ContextSuite context=TestScaleVm>:setup Failing since 44 runs
   
   * test_volumes.py
   
* test_06_download_detached_volume Failed
   
   * test_routers_network_ops.py
   
* test_01_isolate_network_FW_PF_default_routes_egress_true Failing since 45 
runs
   
* test_02_isolate_network_FW_PF_default_routes_egress_false Failing since 
172 runs
   
* test_01_RVR_Network_FW_PF_SSH_default_routes_egress_true Failing since 
167 runs
   
* test_02_RVR_Network_FW_PF_SSH_default_routes_egress_false Failing since 
167 runs
   
   
   **Skipped tests:**
   test_vm_nic_adapter_vmxnet3
   test_01_verify_libvirt
   test_02_verify_libvirt_after_restart
   test_03_verify_libvirt_attach_disk
   test_04_verify_guest_lspci
   test_05_change_vm_ostype_restart
   test_06_verify_guest_lspci_again
   test_disable_oobm_ha_state_ineligible
   test_hostha_configure_default_driver
   test_hostha_enable_ha_when_host_disabled
   test_hostha_enable_ha_when_host_disconected
   test_hostha_enable_ha_when_host_in_maintenance
   test_hostha_kvm_host_degraded
   test_hostha_kvm_host_fencing
   test_hostha_kvm_host_recovering
   test_remove_ha_provider_not_possible
   test_configure_ha_provider_invalid
   test_configure_ha_provider_valid
   test_ha_configure_enabledisable_across_clusterzones
   test_ha_disable_feature_invalid
   test_ha_enable_feature_invalid
   test_ha_list_providers
   test_ha_multiple_mgmt_server_ownership
   test_ha_verify_fsm_available
   test_ha_verify_fsm_degraded
   test_ha_verify_fsm_fenced
   test_ha_verify_fsm_recovering
   test_hostha_configure_default_driver
   test_hostha_configure_invalid_provider
   test_hostha_disable_feature_valid
   test_hostha_enable_feature_valid
   test_hostha_enable_feature_without_setting_provider
   test_list_ha_for_host
   test_list_ha_for_host_invalid
   test_list_ha_for_host_valid
   test_static_role_account_acls
   test_11_ss_nfs_version_on_ssvm
   test_nested_virtualization_vmware
   test_3d_gpu_support
   test_deploy_vgpu_enabled_vm
   
   **Passed test suits:**
   test_deploy_vm_with_userdata.py
   test_affinity_groups_projects.py
   test_portable_publicip.py
   test_vm_snapshots.py
   test_over_provisioning.py
   test_global_settings.py
   test_service_offerings.py
   test_routers_iptables_default_policy.py
   test_loadbalance.py
   test_routers.py
   test_reset_vm_on_reboot.py
   test_deploy_vms_with_varied_deploymentplanners.py
   test_network.py
   test_router_dns.py
   test_outofbandmanagement_nestedplugin.py
   test_portforwardingrules.py
   test_non_contigiousvlan.py
   test_login.py
   test_deploy_vm_iso.py
   test_list_ids_parameter.py
   test_public_ip_range.py
   test_multipleips_per_nic.py
   test_metrics_api.py
   test_regions.py
   test_affinity_groups.py
   test_network_acl.py
   test_pvlan.py
   test_nic.py
   test_deploy_vm_root_resize.py
   test_resource_detail.py
   test_secondary_storage.py
   test_vm_life_cycle.py
   test_disk_offerings.py
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] cloudmonger commented on issue #2225: [master] Smoketest health checkrun

2017-09-02 Thread git
cloudmonger commented on issue #2225: [master] Smoketest health checkrun
URL: https://github.com/apache/cloudstack/pull/2225#issuecomment-326784083
 
 
   ### ACS CI BVT Run
**Sumarry:**
Build Number 1183
Hypervisor xenserver
NetworkType Advanced
Passed=117
Failed=4
Skipped=40
   
   _Link to logs Folder (search by build_no):_ 
https://www.dropbox.com/sh/r2si930m8xxzavs/AAAzNrnoF1fC3auFrvsKo_8-a?dl=0
   
   **Failed tests:**
   * test_routers_network_ops.py
   
* test_01_isolate_network_FW_PF_default_routes_egress_true Failing since 44 
runs
   
* test_02_isolate_network_FW_PF_default_routes_egress_false Failing since 
171 runs
   
* test_01_RVR_Network_FW_PF_SSH_default_routes_egress_true Failing since 
166 runs
   
* test_02_RVR_Network_FW_PF_SSH_default_routes_egress_false Failing since 
166 runs
   
   
   **Skipped tests:**
   test_vm_nic_adapter_vmxnet3
   test_01_verify_libvirt
   test_02_verify_libvirt_after_restart
   test_03_verify_libvirt_attach_disk
   test_04_verify_guest_lspci
   test_05_change_vm_ostype_restart
   test_06_verify_guest_lspci_again
   test_disable_oobm_ha_state_ineligible
   test_hostha_configure_default_driver
   test_hostha_enable_ha_when_host_disabled
   test_hostha_enable_ha_when_host_disconected
   test_hostha_enable_ha_when_host_in_maintenance
   test_hostha_kvm_host_degraded
   test_hostha_kvm_host_fencing
   test_hostha_kvm_host_recovering
   test_remove_ha_provider_not_possible
   test_configure_ha_provider_invalid
   test_configure_ha_provider_valid
   test_ha_configure_enabledisable_across_clusterzones
   test_ha_disable_feature_invalid
   test_ha_enable_feature_invalid
   test_ha_list_providers
   test_ha_multiple_mgmt_server_ownership
   test_ha_verify_fsm_available
   test_ha_verify_fsm_degraded
   test_ha_verify_fsm_fenced
   test_ha_verify_fsm_recovering
   test_hostha_configure_default_driver
   test_hostha_configure_invalid_provider
   test_hostha_disable_feature_valid
   test_hostha_enable_feature_valid
   test_hostha_enable_feature_without_setting_provider
   test_list_ha_for_host
   test_list_ha_for_host_invalid
   test_list_ha_for_host_valid
   test_static_role_account_acls
   test_11_ss_nfs_version_on_ssvm
   test_nested_virtualization_vmware
   test_3d_gpu_support
   test_deploy_vgpu_enabled_vm
   
   **Passed test suits:**
   test_deploy_vm_with_userdata.py
   test_affinity_groups_projects.py
   test_portable_publicip.py
   test_vm_snapshots.py
   test_over_provisioning.py
   test_global_settings.py
   test_router_dnsservice.py
   test_scale_vm.py
   test_service_offerings.py
   test_routers_iptables_default_policy.py
   test_loadbalance.py
   test_routers.py
   test_reset_vm_on_reboot.py
   test_deploy_vms_with_varied_deploymentplanners.py
   test_network.py
   test_router_dns.py
   test_outofbandmanagement_nestedplugin.py
   test_portforwardingrules.py
   test_non_contigiousvlan.py
   test_login.py
   test_deploy_vm_iso.py
   test_list_ids_parameter.py
   test_public_ip_range.py
   test_multipleips_per_nic.py
   test_metrics_api.py
   test_regions.py
   test_affinity_groups.py
   test_network_acl.py
   test_pvlan.py
   test_volumes.py
   test_nic.py
   test_deploy_vm_root_resize.py
   test_resource_detail.py
   test_secondary_storage.py
   test_vm_life_cycle.py
   test_disk_offerings.py
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] cloudmonger commented on issue #2204: [CLOUDSTACK-10025] Adding Support for NoVNC Console for KVM and XENSERVER

2017-09-02 Thread git
cloudmonger commented on issue #2204: [CLOUDSTACK-10025] Adding Support for 
NoVNC Console for KVM and XENSERVER
URL: https://github.com/apache/cloudstack/pull/2204#issuecomment-326484412
 
 
   ### ACS CI BVT Run
**Sumarry:**
Build Number 1175
Hypervisor xenserver
NetworkType Advanced
Passed=114
Failed=5
Skipped=40
   
   _Link to logs Folder (search by build_no):_ 
https://www.dropbox.com/sh/r2si930m8xxzavs/AAAzNrnoF1fC3auFrvsKo_8-a?dl=0
   
   **Failed tests:**
   * test_list_ids_parameter.py
   
* ContextSuite context=TestListIdsParams>:setup Failing since 60 runs
   
   * test_routers_network_ops.py
   
* test_01_isolate_network_FW_PF_default_routes_egress_true Failing since 38 
runs
   
* test_02_isolate_network_FW_PF_default_routes_egress_false Failing since 
165 runs
   
* test_01_RVR_Network_FW_PF_SSH_default_routes_egress_true Failing since 
160 runs
   
* test_02_RVR_Network_FW_PF_SSH_default_routes_egress_false Failing since 
160 runs
   
   
   **Skipped tests:**
   test_vm_nic_adapter_vmxnet3
   test_01_verify_libvirt
   test_02_verify_libvirt_after_restart
   test_03_verify_libvirt_attach_disk
   test_04_verify_guest_lspci
   test_05_change_vm_ostype_restart
   test_06_verify_guest_lspci_again
   test_disable_oobm_ha_state_ineligible
   test_ha_kvm_host_degraded
   test_ha_kvm_host_fencing
   test_ha_kvm_host_recovering
   test_hostha_configure_default_driver
   test_hostha_enable_ha_when_host_disabled
   test_hostha_enable_ha_when_host_disconected
   test_hostha_enable_ha_when_host_in_maintenance
   test_remove_ha_provider_not_possible
   test_configure_ha_provider_invalid
   test_configure_ha_provider_valid
   test_ha_configure_enabledisable_across_clusterzones
   test_ha_disable_feature_invalid
   test_ha_enable_feature_invalid
   test_ha_list_providers
   test_ha_multiple_mgmt_server_ownership
   test_ha_verify_fsm_available
   test_ha_verify_fsm_degraded
   test_ha_verify_fsm_fenced
   test_ha_verify_fsm_recovering
   test_hostha_configure_default_driver
   test_hostha_configure_invalid_provider
   test_hostha_disable_feature_valid
   test_hostha_enable_feature_valid
   test_hostha_enable_feature_without_setting_provider
   test_list_ha_for_host
   test_list_ha_for_host_invalid
   test_list_ha_for_host_valid
   test_static_role_account_acls
   test_11_ss_nfs_version_on_ssvm
   test_nested_virtualization_vmware
   test_3d_gpu_support
   test_deploy_vgpu_enabled_vm
   
   **Passed test suits:**
   test_deploy_vm_with_userdata.py
   test_affinity_groups_projects.py
   test_portable_publicip.py
   test_vm_snapshots.py
   test_over_provisioning.py
   test_global_settings.py
   test_router_dnsservice.py
   test_scale_vm.py
   test_service_offerings.py
   test_routers_iptables_default_policy.py
   test_loadbalance.py
   test_routers.py
   test_reset_vm_on_reboot.py
   test_deploy_vms_with_varied_deploymentplanners.py
   test_network.py
   test_router_dns.py
   test_outofbandmanagement_nestedplugin.py
   test_portforwardingrules.py
   test_non_contigiousvlan.py
   test_login.py
   test_deploy_vm_iso.py
   test_public_ip_range.py
   test_multipleips_per_nic.py
   test_metrics_api.py
   test_regions.py
   test_affinity_groups.py
   test_network_acl.py
   test_pvlan.py
   test_volumes.py
   test_nic.py
   test_deploy_vm_root_resize.py
   test_resource_detail.py
   test_secondary_storage.py
   test_vm_life_cycle.py
   test_disk_offerings.py
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] cloudmonger commented on issue #2204: [CLOUDSTACK-10025] Adding Support for NoVNC Console for KVM and XENSERVER

2017-09-02 Thread git
cloudmonger commented on issue #2204: [CLOUDSTACK-10025] Adding Support for 
NoVNC Console for KVM and XENSERVER
URL: https://github.com/apache/cloudstack/pull/2204#issuecomment-326772995
 
 
   ### ACS CI BVT Run
**Sumarry:**
Build Number 1182
Hypervisor xenserver
NetworkType Advanced
Passed=115
Failed=6
Skipped=40
   
   _Link to logs Folder (search by build_no):_ 
https://www.dropbox.com/sh/r2si930m8xxzavs/AAAzNrnoF1fC3auFrvsKo_8-a?dl=0
   
   **Failed tests:**
   * test_non_contigiousvlan.py
   
* test_extendPhysicalNetworkVlan Failed
   
   * test_volumes.py
   
* test_06_download_detached_volume Failed
   
   * test_routers_network_ops.py
   
* test_01_isolate_network_FW_PF_default_routes_egress_true Failing since 43 
runs
   
* test_02_isolate_network_FW_PF_default_routes_egress_false Failing since 
170 runs
   
* test_01_RVR_Network_FW_PF_SSH_default_routes_egress_true Failing since 
165 runs
   
* test_02_RVR_Network_FW_PF_SSH_default_routes_egress_false Failing since 
165 runs
   
   
   **Skipped tests:**
   test_vm_nic_adapter_vmxnet3
   test_01_verify_libvirt
   test_02_verify_libvirt_after_restart
   test_03_verify_libvirt_attach_disk
   test_04_verify_guest_lspci
   test_05_change_vm_ostype_restart
   test_06_verify_guest_lspci_again
   test_disable_oobm_ha_state_ineligible
   test_hostha_configure_default_driver
   test_hostha_enable_ha_when_host_disabled
   test_hostha_enable_ha_when_host_disconected
   test_hostha_enable_ha_when_host_in_maintenance
   test_hostha_kvm_host_degraded
   test_hostha_kvm_host_fencing
   test_hostha_kvm_host_recovering
   test_remove_ha_provider_not_possible
   test_configure_ha_provider_invalid
   test_configure_ha_provider_valid
   test_ha_configure_enabledisable_across_clusterzones
   test_ha_disable_feature_invalid
   test_ha_enable_feature_invalid
   test_ha_list_providers
   test_ha_multiple_mgmt_server_ownership
   test_ha_verify_fsm_available
   test_ha_verify_fsm_degraded
   test_ha_verify_fsm_fenced
   test_ha_verify_fsm_recovering
   test_hostha_configure_default_driver
   test_hostha_configure_invalid_provider
   test_hostha_disable_feature_valid
   test_hostha_enable_feature_valid
   test_hostha_enable_feature_without_setting_provider
   test_list_ha_for_host
   test_list_ha_for_host_invalid
   test_list_ha_for_host_valid
   test_static_role_account_acls
   test_11_ss_nfs_version_on_ssvm
   test_nested_virtualization_vmware
   test_3d_gpu_support
   test_deploy_vgpu_enabled_vm
   
   **Passed test suits:**
   test_deploy_vm_with_userdata.py
   test_affinity_groups_projects.py
   test_portable_publicip.py
   test_vm_snapshots.py
   test_over_provisioning.py
   test_global_settings.py
   test_router_dnsservice.py
   test_scale_vm.py
   test_service_offerings.py
   test_routers_iptables_default_policy.py
   test_loadbalance.py
   test_routers.py
   test_reset_vm_on_reboot.py
   test_deploy_vms_with_varied_deploymentplanners.py
   test_network.py
   test_router_dns.py
   test_outofbandmanagement_nestedplugin.py
   test_portforwardingrules.py
   test_login.py
   test_deploy_vm_iso.py
   test_list_ids_parameter.py
   test_public_ip_range.py
   test_multipleips_per_nic.py
   test_metrics_api.py
   test_regions.py
   test_affinity_groups.py
   test_network_acl.py
   test_pvlan.py
   test_nic.py
   test_deploy_vm_root_resize.py
   test_resource_detail.py
   test_secondary_storage.py
   test_vm_life_cycle.py
   test_disk_offerings.py
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2225: [master] Smoketest health checkrun

2017-09-02 Thread git
blueorangutan commented on issue #2225: [master] Smoketest health checkrun
URL: https://github.com/apache/cloudstack/pull/2225#issuecomment-326772080
 
 
   Trillian test result (tid-1491)
   Environment: xenserver-65sp1 (x2), Advanced Networking with Mgmt server 6
   Total time taken: 40753 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr2225-t1491-xenserver-65sp1.zip
   Intermitten failure detected: /marvin/tests/smoke/test_iso.py
   Intermitten failure detected: /marvin/tests/smoke/test_password_server.py
   Intermitten failure detected: /marvin/tests/smoke/test_privategw_acl.py
   Intermitten failure detected: /marvin/tests/smoke/test_vpc_redundant.py
   Intermitten failure detected: /marvin/tests/smoke/test_vpc_vpn.py
   Test completed. 58 look OK, 4 have error(s)
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   test_01_vpc_remote_access_vpn | `Failure` | 136.62 | test_vpc_vpn.py
   test_05_rvpc_multi_tiers | `Failure` | 468.86 | test_vpc_redundant.py
   test_04_rvpc_network_garbage_collector_nics | `Failure` | 402.38 | 
test_vpc_redundant.py
   test_01_create_redundant_VPC_2tiers_4VMs_4IPs_4PF_ACL | `Failure` | 471.39 | 
test_vpc_redundant.py
   test_04_rvpc_privategw_static_routes | `Failure` | 617.92 | 
test_privategw_acl.py
   test_05_iso_permissions | `Failure` | 0.05 | test_iso.py
   test_02_edit_iso | `Failure` | 0.04 | test_iso.py
   test_09_copy_delete_template | Skipped | 0.02 | test_templates.py
   test_06_copy_template | Skipped | 0.00 | test_templates.py
   test_static_role_account_acls | Skipped | 0.02 | test_staticroles.py
   test_11_ss_nfs_version_on_ssvm | Skipped | 0.02 | test_ssvm.py
   test_vm_nic_adapter_vmxnet3 | Skipped | 0.00 | test_nic_adapter_type.py
   test_nested_virtualization_vmware | Skipped | 0.00 | 
test_nested_virtualization.py
   test_06_copy_iso | Skipped | 0.00 | test_iso.py
   test_list_ha_for_host_valid | Skipped | 0.02 | test_hostha_simulator.py
   test_list_ha_for_host_invalid | Skipped | 0.02 | test_hostha_simulator.py
   test_list_ha_for_host | Skipped | 0.03 | test_hostha_simulator.py
   test_hostha_enable_feature_without_setting_provider | Skipped | 0.02 | 
test_hostha_simulator.py
   test_hostha_enable_feature_valid | Skipped | 0.02 | test_hostha_simulator.py
   test_hostha_disable_feature_valid | Skipped | 0.02 | test_hostha_simulator.py
   test_hostha_configure_invalid_provider | Skipped | 0.02 | 
test_hostha_simulator.py
   test_hostha_configure_default_driver | Skipped | 0.02 | 
test_hostha_simulator.py
   test_ha_verify_fsm_recovering | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_verify_fsm_fenced | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_verify_fsm_degraded | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_verify_fsm_available | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_multiple_mgmt_server_ownership | Skipped | 0.02 | 
test_hostha_simulator.py
   test_ha_list_providers | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_enable_feature_invalid | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_disable_feature_invalid | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_configure_enabledisable_across_clusterzones | Skipped | 0.02 | 
test_hostha_simulator.py
   test_configure_ha_provider_valid | Skipped | 0.02 | test_hostha_simulator.py
   test_configure_ha_provider_invalid | Skipped | 0.02 | 
test_hostha_simulator.py
   test_remove_ha_provider_not_possible | Skipped | 0.03 | test_hostha_kvm.py
   test_hostha_kvm_host_recovering | Skipped | 0.03 | test_hostha_kvm.py
   test_hostha_kvm_host_fencing | Skipped | 0.03 | test_hostha_kvm.py
   test_hostha_kvm_host_degraded | Skipped | 0.03 | test_hostha_kvm.py
   test_hostha_enable_ha_when_host_in_maintenance | Skipped | 0.03 | 
test_hostha_kvm.py
   test_hostha_enable_ha_when_host_disconected | Skipped | 0.03 | 
test_hostha_kvm.py
   test_hostha_enable_ha_when_host_disabled | Skipped | 0.04 | 
test_hostha_kvm.py
   test_hostha_configure_default_driver | Skipped | 0.03 | test_hostha_kvm.py
   test_disable_oobm_ha_state_ineligible | Skipped | 0.03 | test_hostha_kvm.py
   test_06_verify_guest_lspci_again | Skipped | 0.00 | 
test_deploy_virtio_scsi_vm.py
   test_05_change_vm_ostype_restart | Skipped | 0.00 | 
test_deploy_virtio_scsi_vm.py
   test_04_verify_guest_lspci | Skipped | 0.00 | test_deploy_virtio_scsi_vm.py
   test_03_verify_libvirt_attach_disk | Skipped | 0.00 | 
test_deploy_virtio_scsi_vm.py
   test_02_verify_libvirt_after_restart | Skipped | 0.00 | 
test_deploy_virtio_scsi_vm.py
   test_01_verify_libvirt | Skipped | 0.00 | test_deploy_virtio_scsi_vm.py
   test_deploy_vgpu_enabled_vm | Skipped | 0.03 | test_deploy_vgpu_enabled_vm.py
   test_3d_gpu_support | Skipped | 0.04 | test_deploy_vgpu_enabled_vm.py
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub

[GitHub] cloudmonger commented on issue #2214: Speed-up VR initialisation/configuration

2017-09-02 Thread git
_ownership
   test_ha_verify_fsm_available
   test_ha_verify_fsm_degraded
   test_ha_verify_fsm_fenced
   test_ha_verify_fsm_recovering
   test_hostha_configure_default_driver
   test_hostha_configure_invalid_provider
   test_hostha_disable_feature_valid
   test_hostha_enable_feature_valid
   test_hostha_enable_feature_without_setting_provider
   test_list_ha_for_host
   test_list_ha_for_host_invalid
   test_list_ha_for_host_valid
   test_static_role_account_acls
   test_11_ss_nfs_version_on_ssvm
   test_nested_virtualization_vmware
   test_3d_gpu_support
   test_deploy_vgpu_enabled_vm
   
   **Passed test suits:**
   test_portable_publicip.py
   test_over_provisioning.py
   test_global_settings.py
   test_outofbandmanagement_nestedplugin.py
   test_non_contigiousvlan.py
   test_login.py
   test_public_ip_range.py
   test_regions.py
   test_pvlan.py
   test_resource_detail.py
   test_secondary_storage.py
   test_disk_offerings.py
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] cloudmonger commented on issue #2214: Speed-up VR initialisation/configuration

2017-09-02 Thread git
cloudmonger commented on issue #2214: Speed-up VR initialisation/configuration
URL: https://github.com/apache/cloudstack/pull/2214#issuecomment-324528552
 
 
   ### ACS CI BVT Run
**Sumarry:**
Build Number 1137
Hypervisor xenserver
NetworkType Advanced
Passed=105
Failed=5
Skipped=12
   
   _Link to logs Folder (search by build_no):_ 
https://www.dropbox.com/sh/r2si930m8xxzavs/AAAzNrnoF1fC3auFrvsKo_8-a?dl=0
   
   **Failed tests:**
   * test_loadbalance.py
   
* ContextSuite context=TestLoadBalance>:setup Failing since 11 runs
   
   * test_non_contigiousvlan.py
   
* test_extendPhysicalNetworkVlan Failing since 4 runs
   
   * test_routers_network_ops.py
   
* test_01_isolate_network_FW_PF_default_routes_egress_true Failing since 2 
runs
   
* test_02_isolate_network_FW_PF_default_routes_egress_false Failing since 
129 runs
   
* ContextSuite context=TestRedundantIsolateNetworks>:setup Failing since 10 
runs
   
   
   **Skipped tests:**
   test_vm_nic_adapter_vmxnet3
   test_01_verify_libvirt
   test_02_verify_libvirt_after_restart
   test_03_verify_libvirt_attach_disk
   test_04_verify_guest_lspci
   test_05_change_vm_ostype_restart
   test_06_verify_guest_lspci_again
   test_static_role_account_acls
   test_11_ss_nfs_version_on_ssvm
   test_nested_virtualization_vmware
   test_3d_gpu_support
   test_deploy_vgpu_enabled_vm
   
   **Passed test suits:**
   test_deploy_vm_with_userdata.py
   test_affinity_groups_projects.py
   test_portable_publicip.py
   test_vm_snapshots.py
   test_over_provisioning.py
   test_global_settings.py
   test_router_dnsservice.py
   test_scale_vm.py
   test_service_offerings.py
   test_routers_iptables_default_policy.py
   test_routers.py
   test_reset_vm_on_reboot.py
   test_deploy_vms_with_varied_deploymentplanners.py
   test_network.py
   test_router_dns.py
   test_login.py
   test_deploy_vm_iso.py
   test_list_ids_parameter.py
   test_public_ip_range.py
   test_multipleips_per_nic.py
   test_metrics_api.py
   test_regions.py
   test_affinity_groups.py
   test_network_acl.py
   test_pvlan.py
   test_volumes.py
   test_nic.py
   test_deploy_vm_root_resize.py
   test_resource_detail.py
   test_secondary_storage.py
   test_vm_life_cycle.py
   test_disk_offerings.py
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] cloudmonger commented on issue #2158: CLOUDSTACK-9972: Enhance listVolume API to include physical size and ?

2017-09-02 Thread git
cloudmonger commented on issue #2158: CLOUDSTACK-9972: Enhance listVolume API 
to include physical size and ?
URL: https://github.com/apache/cloudstack/pull/2158#issuecomment-326187287
 
 
   ### ACS CI BVT Run
**Sumarry:**
Build Number 1170
Hypervisor xenserver
NetworkType Advanced
Passed=117
Failed=4
Skipped=40
   
   _Link to logs Folder (search by build_no):_ 
https://www.dropbox.com/sh/r2si930m8xxzavs/AAAzNrnoF1fC3auFrvsKo_8-a?dl=0
   
   **Failed tests:**
   * test_routers_network_ops.py
   
* test_01_isolate_network_FW_PF_default_routes_egress_true Failing since 34 
runs
   
* test_02_isolate_network_FW_PF_default_routes_egress_false Failing since 
161 runs
   
* test_01_RVR_Network_FW_PF_SSH_default_routes_egress_true Failing since 
156 runs
   
* test_02_RVR_Network_FW_PF_SSH_default_routes_egress_false Failing since 
156 runs
   
   
   **Skipped tests:**
   test_vm_nic_adapter_vmxnet3
   test_01_verify_libvirt
   test_02_verify_libvirt_after_restart
   test_03_verify_libvirt_attach_disk
   test_04_verify_guest_lspci
   test_05_change_vm_ostype_restart
   test_06_verify_guest_lspci_again
   test_disable_oobm_ha_state_ineligible
   test_ha_kvm_host_degraded
   test_ha_kvm_host_fencing
   test_ha_kvm_host_recovering
   test_hostha_configure_default_driver
   test_hostha_enable_ha_when_host_disabled
   test_hostha_enable_ha_when_host_disconected
   test_hostha_enable_ha_when_host_in_maintenance
   test_remove_ha_provider_not_possible
   test_configure_ha_provider_invalid
   test_configure_ha_provider_valid
   test_ha_configure_enabledisable_across_clusterzones
   test_ha_disable_feature_invalid
   test_ha_enable_feature_invalid
   test_ha_list_providers
   test_ha_multiple_mgmt_server_ownership
   test_ha_verify_fsm_available
   test_ha_verify_fsm_degraded
   test_ha_verify_fsm_fenced
   test_ha_verify_fsm_recovering
   test_hostha_configure_default_driver
   test_hostha_configure_invalid_provider
   test_hostha_disable_feature_valid
   test_hostha_enable_feature_valid
   test_hostha_enable_feature_without_setting_provider
   test_list_ha_for_host
   test_list_ha_for_host_invalid
   test_list_ha_for_host_valid
   test_static_role_account_acls
   test_11_ss_nfs_version_on_ssvm
   test_nested_virtualization_vmware
   test_3d_gpu_support
   test_deploy_vgpu_enabled_vm
   
   **Passed test suits:**
   test_deploy_vm_with_userdata.py
   test_affinity_groups_projects.py
   test_portable_publicip.py
   test_vm_snapshots.py
   test_over_provisioning.py
   test_global_settings.py
   test_router_dnsservice.py
   test_scale_vm.py
   test_service_offerings.py
   test_routers_iptables_default_policy.py
   test_loadbalance.py
   test_routers.py
   test_reset_vm_on_reboot.py
   test_deploy_vms_with_varied_deploymentplanners.py
   test_network.py
   test_router_dns.py
   test_outofbandmanagement_nestedplugin.py
   test_non_contigiousvlan.py
   test_login.py
   test_deploy_vm_iso.py
   test_list_ids_parameter.py
   test_public_ip_range.py
   test_multipleips_per_nic.py
   test_metrics_api.py
   test_regions.py
   test_affinity_groups.py
   test_network_acl.py
   test_pvlan.py
   test_volumes.py
   test_nic.py
   test_deploy_vm_root_resize.py
   test_resource_detail.py
   test_secondary_storage.py
   test_vm_life_cycle.py
   test_disk_offerings.py
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] cloudmonger commented on issue #2158: CLOUDSTACK-9972: Enhance listVolume API to include physical size and ?

2017-09-02 Thread git
cloudmonger commented on issue #2158: CLOUDSTACK-9972: Enhance listVolume API 
to include physical size and ?
URL: https://github.com/apache/cloudstack/pull/2158#issuecomment-326737007
 
 
   ### ACS CI BVT Run
**Sumarry:**
Build Number 1180
Hypervisor xenserver
NetworkType Advanced
Passed=114
Failed=9
Skipped=40
   
   _Link to logs Folder (search by build_no):_ 
https://www.dropbox.com/sh/r2si930m8xxzavs/AAAzNrnoF1fC3auFrvsKo_8-a?dl=0
   
   **Failed tests:**
   * test_router_dnsservice.py
   
* test_router_dns_guestipquery Failed
   
   * test_scale_vm.py
   
* ContextSuite context=TestScaleVm>:setup Failing since 42 runs
   
   * test_portforwardingrules.py
   
* test_01_create_delete_portforwarding_fornonvpc Failed
   
* test_01_create_delete_portforwarding_fornonvpc Failing since 2 runs
   
   * test_routers_network_ops.py
   
* test_01_isolate_network_FW_PF_default_routes_egress_true Failing since 41 
runs
   
* test_02_isolate_network_FW_PF_default_routes_egress_false Failing since 
168 runs
   
* test_01_RVR_Network_FW_PF_SSH_default_routes_egress_true Failing since 
163 runs
   
* test_02_RVR_Network_FW_PF_SSH_default_routes_egress_false Failing since 
163 runs
   
* test_03_RVR_Network_check_router_state Failed
   
   
   **Skipped tests:**
   test_vm_nic_adapter_vmxnet3
   test_01_verify_libvirt
   test_02_verify_libvirt_after_restart
   test_03_verify_libvirt_attach_disk
   test_04_verify_guest_lspci
   test_05_change_vm_ostype_restart
   test_06_verify_guest_lspci_again
   test_disable_oobm_ha_state_ineligible
   test_hostha_configure_default_driver
   test_hostha_enable_ha_when_host_disabled
   test_hostha_enable_ha_when_host_disconected
   test_hostha_enable_ha_when_host_in_maintenance
   test_hostha_kvm_host_degraded
   test_hostha_kvm_host_fencing
   test_hostha_kvm_host_recovering
   test_remove_ha_provider_not_possible
   test_configure_ha_provider_invalid
   test_configure_ha_provider_valid
   test_ha_configure_enabledisable_across_clusterzones
   test_ha_disable_feature_invalid
   test_ha_enable_feature_invalid
   test_ha_list_providers
   test_ha_multiple_mgmt_server_ownership
   test_ha_verify_fsm_available
   test_ha_verify_fsm_degraded
   test_ha_verify_fsm_fenced
   test_ha_verify_fsm_recovering
   test_hostha_configure_default_driver
   test_hostha_configure_invalid_provider
   test_hostha_disable_feature_valid
   test_hostha_enable_feature_valid
   test_hostha_enable_feature_without_setting_provider
   test_list_ha_for_host
   test_list_ha_for_host_invalid
   test_list_ha_for_host_valid
   test_static_role_account_acls
   test_11_ss_nfs_version_on_ssvm
   test_nested_virtualization_vmware
   test_3d_gpu_support
   test_deploy_vgpu_enabled_vm
   
   **Passed test suits:**
   test_deploy_vm_with_userdata.py
   test_affinity_groups_projects.py
   test_portable_publicip.py
   test_vm_snapshots.py
   test_over_provisioning.py
   test_global_settings.py
   test_service_offerings.py
   test_routers_iptables_default_policy.py
   test_loadbalance.py
   test_routers.py
   test_reset_vm_on_reboot.py
   test_deploy_vms_with_varied_deploymentplanners.py
   test_network.py
   test_router_dns.py
   test_outofbandmanagement_nestedplugin.py
   test_non_contigiousvlan.py
   test_login.py
   test_deploy_vm_iso.py
   test_list_ids_parameter.py
   test_public_ip_range.py
   test_multipleips_per_nic.py
   test_metrics_api.py
   test_regions.py
   test_affinity_groups.py
   test_network_acl.py
   test_pvlan.py
   test_volumes.py
   test_nic.py
   test_deploy_vm_root_resize.py
   test_resource_detail.py
   test_secondary_storage.py
   test_vm_life_cycle.py
   test_disk_offerings.py
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2225: [master] Smoketest health checkrun

2017-09-02 Thread git
blueorangutan commented on issue #2225: [master] Smoketest health checkrun
URL: https://github.com/apache/cloudstack/pull/2225#issuecomment-326728078
 
 
   Trillian test result (tid-1489)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 34098 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr2225-t1489-kvm-centos7.zip
   Intermitten failure detected: /marvin/tests/smoke/test_iso.py
   Intermitten failure detected: /marvin/tests/smoke/test_privategw_acl.py
   Intermitten failure detected: /marvin/tests/smoke/test_vpc_vpn.py
   Test completed. 59 look OK, 3 have error(s)
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   test_01_vpc_remote_access_vpn | `Failure` | 55.67 | test_vpc_vpn.py
   test_04_rvpc_privategw_static_routes | `Failure` | 354.44 | 
test_privategw_acl.py
   test_05_iso_permissions | `Failure` | 0.04 | test_iso.py
   test_04_extract_Iso | `Failure` | 132.29 | test_iso.py
   test_02_edit_iso | `Failure` | 0.04 | test_iso.py
   test_change_service_offering_for_vm_with_snapshots | Skipped | 0.00 | 
test_vm_snapshots.py
   test_09_copy_delete_template | Skipped | 0.01 | test_templates.py
   test_06_copy_template | Skipped | 0.00 | test_templates.py
   test_static_role_account_acls | Skipped | 0.02 | test_staticroles.py
   test_11_ss_nfs_version_on_ssvm | Skipped | 0.02 | test_ssvm.py
   test_01_scale_vm | Skipped | 0.00 | test_scale_vm.py
   test_01_primary_storage_iscsi | Skipped | 0.03 | test_primary_storage.py
   test_vm_nic_adapter_vmxnet3 | Skipped | 0.00 | test_nic_adapter_type.py
   test_nested_virtualization_vmware | Skipped | 0.00 | 
test_nested_virtualization.py
   test_06_copy_iso | Skipped | 0.00 | test_iso.py
   test_list_ha_for_host_valid | Skipped | 0.02 | test_hostha_simulator.py
   test_list_ha_for_host_invalid | Skipped | 0.01 | test_hostha_simulator.py
   test_list_ha_for_host | Skipped | 0.02 | test_hostha_simulator.py
   test_hostha_enable_feature_without_setting_provider | Skipped | 0.01 | 
test_hostha_simulator.py
   test_hostha_enable_feature_valid | Skipped | 0.01 | test_hostha_simulator.py
   test_hostha_disable_feature_valid | Skipped | 0.02 | test_hostha_simulator.py
   test_hostha_configure_invalid_provider | Skipped | 0.02 | 
test_hostha_simulator.py
   test_hostha_configure_default_driver | Skipped | 0.02 | 
test_hostha_simulator.py
   test_ha_verify_fsm_recovering | Skipped | 0.03 | test_hostha_simulator.py
   test_ha_verify_fsm_fenced | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_verify_fsm_degraded | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_verify_fsm_available | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_multiple_mgmt_server_ownership | Skipped | 0.02 | 
test_hostha_simulator.py
   test_ha_list_providers | Skipped | 0.01 | test_hostha_simulator.py
   test_ha_enable_feature_invalid | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_disable_feature_invalid | Skipped | 0.01 | test_hostha_simulator.py
   test_ha_configure_enabledisable_across_clusterzones | Skipped | 0.02 | 
test_hostha_simulator.py
   test_configure_ha_provider_valid | Skipped | 0.02 | test_hostha_simulator.py
   test_configure_ha_provider_invalid | Skipped | 0.02 | 
test_hostha_simulator.py
   test_deploy_vgpu_enabled_vm | Skipped | 0.02 | test_deploy_vgpu_enabled_vm.py
   test_3d_gpu_support | Skipped | 0.03 | test_deploy_vgpu_enabled_vm.py
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary storage usage metrics

2017-09-01 Thread git
blueorangutan commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary 
storage usage metrics
URL: https://github.com/apache/cloudstack/pull/2035#issuecomment-326721544
 
 
   Trillian test result (tid-1485)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 49176 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr2035-t1485-kvm-centos7.zip
   Intermitten failure detected: 
/marvin/tests/smoke/test_deploy_virtio_scsi_vm.py
   Intermitten failure detected: /marvin/tests/smoke/test_internal_lb.py
   Intermitten failure detected: /marvin/tests/smoke/test_iso.py
   Intermitten failure detected: /marvin/tests/smoke/test_privategw_acl.py
   Intermitten failure detected: /marvin/tests/smoke/test_routers_network_ops.py
   Intermitten failure detected: /marvin/tests/smoke/test_snapshots.py
   Intermitten failure detected: /marvin/tests/smoke/test_vpc_redundant.py
   Intermitten failure detected: /marvin/tests/smoke/test_vpc_vpn.py
   Test completed. 55 look OK, 7 have error(s)
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   test_01_vpc_remote_access_vpn | `Failure` | 45.79 | test_vpc_vpn.py
   test_04_rvpc_privategw_static_routes | `Failure` | 401.33 | 
test_privategw_acl.py
   test_05_iso_permissions | `Failure` | 0.06 | test_iso.py
   test_02_edit_iso | `Failure` | 0.06 | test_iso.py
   ContextSuite context=TestSnapshotRootDisk>:setup | `Error` | 0.00 | 
test_snapshots.py
   ContextSuite context=TestRedundantIsolateNetworks>:setup | `Error` | 1785.78 
| test_routers_network_ops.py
   ContextSuite context=TestInternalLb>:setup | `Error` | 0.00 | 
test_internal_lb.py
   ContextSuite context=TestDeployVirtioSCSIVM>:setup | `Error` | 0.00 | 
test_deploy_virtio_scsi_vm.py
   test_change_service_offering_for_vm_with_snapshots | Skipped | 0.00 | 
test_vm_snapshots.py
   test_09_copy_delete_template | Skipped | 0.02 | test_templates.py
   test_06_copy_template | Skipped | 0.00 | test_templates.py
   test_static_role_account_acls | Skipped | 0.03 | test_staticroles.py
   test_11_ss_nfs_version_on_ssvm | Skipped | 0.02 | test_ssvm.py
   test_01_scale_vm | Skipped | 0.00 | test_scale_vm.py
   test_01_primary_storage_iscsi | Skipped | 0.04 | test_primary_storage.py
   test_vm_nic_adapter_vmxnet3 | Skipped | 0.00 | test_nic_adapter_type.py
   test_nested_virtualization_vmware | Skipped | 0.00 | 
test_nested_virtualization.py
   test_06_copy_iso | Skipped | 0.00 | test_iso.py
   test_list_ha_for_host_valid | Skipped | 0.06 | test_hostha_simulator.py
   test_list_ha_for_host_invalid | Skipped | 0.06 | test_hostha_simulator.py
   test_list_ha_for_host | Skipped | 0.04 | test_hostha_simulator.py
   test_hostha_enable_feature_without_setting_provider | Skipped | 0.02 | 
test_hostha_simulator.py
   test_hostha_enable_feature_valid | Skipped | 0.02 | test_hostha_simulator.py
   test_hostha_disable_feature_valid | Skipped | 0.03 | test_hostha_simulator.py
   test_hostha_configure_invalid_provider | Skipped | 0.02 | 
test_hostha_simulator.py
   test_hostha_configure_default_driver | Skipped | 0.02 | 
test_hostha_simulator.py
   test_ha_verify_fsm_recovering | Skipped | 0.03 | test_hostha_simulator.py
   test_ha_verify_fsm_fenced | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_verify_fsm_degraded | Skipped | 0.03 | test_hostha_simulator.py
   test_ha_verify_fsm_available | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_multiple_mgmt_server_ownership | Skipped | 0.02 | 
test_hostha_simulator.py
   test_ha_list_providers | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_enable_feature_invalid | Skipped | 0.03 | test_hostha_simulator.py
   test_ha_disable_feature_invalid | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_configure_enabledisable_across_clusterzones | Skipped | 0.02 | 
test_hostha_simulator.py
   test_configure_ha_provider_valid | Skipped | 0.02 | test_hostha_simulator.py
   test_configure_ha_provider_invalid | Skipped | 0.03 | 
test_hostha_simulator.py
   test_deploy_vgpu_enabled_vm | Skipped | 0.03 | test_deploy_vgpu_enabled_vm.py
   test_3d_gpu_support | Skipped | 0.03 | test_deploy_vgpu_enabled_vm.py
   test_provision_certificate | Skipped | 0.02 | test_certauthority_root.py
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2158: CLOUDSTACK-9972: Enhance listVolume API to include physical size and ?

2017-09-01 Thread git
blueorangutan commented on issue #2158: CLOUDSTACK-9972: Enhance listVolume API 
to include physical size and ?
URL: https://github.com/apache/cloudstack/pull/2158#issuecomment-326699736
 
 
   Trillian test result (tid-1484)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 34804 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr2158-t1484-kvm-centos7.zip
   Intermitten failure detected: /marvin/tests/smoke/test_hostha_kvm.py
   Intermitten failure detected: /marvin/tests/smoke/test_iso.py
   Intermitten failure detected: /marvin/tests/smoke/test_privategw_acl.py
   Intermitten failure detected: /marvin/tests/smoke/test_vpc_vpn.py
   Test completed. 58 look OK, 4 have error(s)
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   test_01_vpc_remote_access_vpn | `Failure` | 70.69 | test_vpc_vpn.py
   test_04_rvpc_privategw_static_routes | `Failure` | 409.50 | 
test_privategw_acl.py
   test_02_vpc_privategw_static_routes | `Failure` | 896.82 | 
test_privategw_acl.py
   test_05_iso_permissions | `Failure` | 0.04 | test_iso.py
   test_02_edit_iso | `Failure` | 0.03 | test_iso.py
   test_ha_kvm_host_degraded | `Error` | 26.73 | test_hostha_kvm.py
   test_change_service_offering_for_vm_with_snapshots | Skipped | 0.00 | 
test_vm_snapshots.py
   test_09_copy_delete_template | Skipped | 0.01 | test_templates.py
   test_06_copy_template | Skipped | 0.00 | test_templates.py
   test_static_role_account_acls | Skipped | 0.01 | test_staticroles.py
   test_11_ss_nfs_version_on_ssvm | Skipped | 0.01 | test_ssvm.py
   test_01_scale_vm | Skipped | 0.00 | test_scale_vm.py
   test_01_primary_storage_iscsi | Skipped | 0.02 | test_primary_storage.py
   test_vm_nic_adapter_vmxnet3 | Skipped | 0.00 | test_nic_adapter_type.py
   test_nested_virtualization_vmware | Skipped | 0.00 | 
test_nested_virtualization.py
   test_06_copy_iso | Skipped | 0.00 | test_iso.py
   test_list_ha_for_host_valid | Skipped | 0.01 | test_hostha_simulator.py
   test_list_ha_for_host_invalid | Skipped | 0.01 | test_hostha_simulator.py
   test_list_ha_for_host | Skipped | 0.01 | test_hostha_simulator.py
   test_hostha_enable_feature_without_setting_provider | Skipped | 0.01 | 
test_hostha_simulator.py
   test_hostha_enable_feature_valid | Skipped | 0.01 | test_hostha_simulator.py
   test_hostha_disable_feature_valid | Skipped | 0.01 | test_hostha_simulator.py
   test_hostha_configure_invalid_provider | Skipped | 0.01 | 
test_hostha_simulator.py
   test_hostha_configure_default_driver | Skipped | 0.01 | 
test_hostha_simulator.py
   test_ha_verify_fsm_recovering | Skipped | 0.01 | test_hostha_simulator.py
   test_ha_verify_fsm_fenced | Skipped | 0.01 | test_hostha_simulator.py
   test_ha_verify_fsm_degraded | Skipped | 0.01 | test_hostha_simulator.py
   test_ha_verify_fsm_available | Skipped | 0.01 | test_hostha_simulator.py
   test_ha_multiple_mgmt_server_ownership | Skipped | 0.01 | 
test_hostha_simulator.py
   test_ha_list_providers | Skipped | 0.01 | test_hostha_simulator.py
   test_ha_enable_feature_invalid | Skipped | 0.01 | test_hostha_simulator.py
   test_ha_disable_feature_invalid | Skipped | 0.01 | test_hostha_simulator.py
   test_ha_configure_enabledisable_across_clusterzones | Skipped | 0.02 | 
test_hostha_simulator.py
   test_configure_ha_provider_valid | Skipped | 0.01 | test_hostha_simulator.py
   test_configure_ha_provider_invalid | Skipped | 0.01 | 
test_hostha_simulator.py
   test_deploy_vgpu_enabled_vm | Skipped | 0.02 | test_deploy_vgpu_enabled_vm.py
   test_3d_gpu_support | Skipped | 0.02 | test_deploy_vgpu_enabled_vm.py
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] cloudmonger commented on issue #1940: CLOUDSTACK-9781:ACS records ID in events tables instead of UUID.

2017-09-01 Thread git
cloudmonger commented on issue #1940: CLOUDSTACK-9781:ACS records ID in events 
tables instead of UUID.
URL: https://github.com/apache/cloudstack/pull/1940#issuecomment-304401481
 
 
   ### ACS CI BVT Run
**Sumarry:**
Build Number 755
Hypervisor xenserver
NetworkType Advanced
Passed=110
Failed=2
Skipped=12
   
   _Link to logs Folder (search by build_no):_ 
https://www.dropbox.com/sh/r2si930m8xxzavs/AAAzNrnoF1fC3auFrvsKo_8-a?dl=0
   
   **Failed tests:**
   * test_volumes.py
   
* test_06_download_detached_volume Failing since 2 runs
   
   * test_routers_network_ops.py
   
* test_02_RVR_Network_FW_PF_SSH_default_routes_egress_false Failed
   
   
   **Skipped tests:**
   test_vm_nic_adapter_vmxnet3
   test_01_verify_libvirt
   test_02_verify_libvirt_after_restart
   test_03_verify_libvirt_attach_disk
   test_04_verify_guest_lspci
   test_05_change_vm_ostype_restart
   test_06_verify_guest_lspci_again
   test_static_role_account_acls
   test_11_ss_nfs_version_on_ssvm
   test_nested_virtualization_vmware
   test_3d_gpu_support
   test_deploy_vgpu_enabled_vm
   
   **Passed test suits:**
   test_deploy_vm_with_userdata.py
   test_affinity_groups_projects.py
   test_portable_publicip.py
   test_vm_snapshots.py
   test_over_provisioning.py
   test_global_settings.py
   test_scale_vm.py
   test_service_offerings.py
   test_routers_iptables_default_policy.py
   test_loadbalance.py
   test_routers.py
   test_reset_vm_on_reboot.py
   test_deploy_vms_with_varied_deploymentplanners.py
   test_network.py
   test_router_dns.py
   test_non_contigiousvlan.py
   test_login.py
   test_deploy_vm_iso.py
   test_list_ids_parameter.py
   test_public_ip_range.py
   test_multipleips_per_nic.py
   test_metrics_api.py
   test_regions.py
   test_affinity_groups.py
   test_network_acl.py
   test_pvlan.py
   test_nic.py
   test_deploy_vm_root_resize.py
   test_resource_detail.py
   test_secondary_storage.py
   test_vm_life_cycle.py
   test_disk_offerings.py
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] cloudmonger commented on issue #1940: CLOUDSTACK-9781:ACS records ID in events tables instead of UUID.

2017-09-01 Thread git
cloudmonger commented on issue #1940: CLOUDSTACK-9781:ACS records ID in events 
tables instead of UUID.
URL: https://github.com/apache/cloudstack/pull/1940#issuecomment-326697681
 
 
   ### ACS CI BVT Run
**Sumarry:**
Build Number 1178
Hypervisor xenserver
NetworkType Advanced
Passed=108
Failed=11
Skipped=40
   
   _Link to logs Folder (search by build_no):_ 
https://www.dropbox.com/sh/r2si930m8xxzavs/AAAzNrnoF1fC3auFrvsKo_8-a?dl=0
   
   **Failed tests:**
   * test_scale_vm.py
   
* ContextSuite context=TestScaleVm>:setup Failing since 41 runs
   
   * test_loadbalance.py
   
* test_01_create_lb_rule_src_nat Failed
   
* test_02_create_lb_rule_non_nat Failed
   
* test_assign_and_removal_lb Failed
   
   * test_deploy_vm_iso.py
   
* test_deploy_vm_from_iso Failing since 2 runs
   
   * test_list_ids_parameter.py
   
* ContextSuite context=TestListIdsParams>:setup Failing since 61 runs
   
   * test_volumes.py
   
* test_06_download_detached_volume Failing since 2 runs
   
   * test_routers_network_ops.py
   
* test_01_isolate_network_FW_PF_default_routes_egress_true Failing since 40 
runs
   
* test_02_isolate_network_FW_PF_default_routes_egress_false Failing since 
167 runs
   
* test_01_RVR_Network_FW_PF_SSH_default_routes_egress_true Failing since 
162 runs
   
* test_02_RVR_Network_FW_PF_SSH_default_routes_egress_false Failing since 
162 runs
   
   
   **Skipped tests:**
   test_vm_nic_adapter_vmxnet3
   test_01_verify_libvirt
   test_02_verify_libvirt_after_restart
   test_03_verify_libvirt_attach_disk
   test_04_verify_guest_lspci
   test_05_change_vm_ostype_restart
   test_06_verify_guest_lspci_again
   test_disable_oobm_ha_state_ineligible
   test_ha_kvm_host_degraded
   test_ha_kvm_host_fencing
   test_ha_kvm_host_recovering
   test_hostha_configure_default_driver
   test_hostha_enable_ha_when_host_disabled
   test_hostha_enable_ha_when_host_disconected
   test_hostha_enable_ha_when_host_in_maintenance
   test_remove_ha_provider_not_possible
   test_configure_ha_provider_invalid
   test_configure_ha_provider_valid
   test_ha_configure_enabledisable_across_clusterzones
   test_ha_disable_feature_invalid
   test_ha_enable_feature_invalid
   test_ha_list_providers
   test_ha_multiple_mgmt_server_ownership
   test_ha_verify_fsm_available
   test_ha_verify_fsm_degraded
   test_ha_verify_fsm_fenced
   test_ha_verify_fsm_recovering
   test_hostha_configure_default_driver
   test_hostha_configure_invalid_provider
   test_hostha_disable_feature_valid
   test_hostha_enable_feature_valid
   test_hostha_enable_feature_without_setting_provider
   test_list_ha_for_host
   test_list_ha_for_host_invalid
   test_list_ha_for_host_valid
   test_static_role_account_acls
   test_11_ss_nfs_version_on_ssvm
   test_nested_virtualization_vmware
   test_3d_gpu_support
   test_deploy_vgpu_enabled_vm
   
   **Passed test suits:**
   test_deploy_vm_with_userdata.py
   test_affinity_groups_projects.py
   test_portable_publicip.py
   test_vm_snapshots.py
   test_over_provisioning.py
   test_global_settings.py
   test_router_dnsservice.py
   test_service_offerings.py
   test_routers_iptables_default_policy.py
   test_routers.py
   test_reset_vm_on_reboot.py
   test_deploy_vms_with_varied_deploymentplanners.py
   test_network.py
   test_router_dns.py
   test_outofbandmanagement_nestedplugin.py
   test_portforwardingrules.py
   test_non_contigiousvlan.py
   test_login.py
   test_public_ip_range.py
   test_multipleips_per_nic.py
   test_metrics_api.py
   test_regions.py
   test_affinity_groups.py
   test_network_acl.py
   test_pvlan.py
   test_nic.py
   test_deploy_vm_root_resize.py
   test_resource_detail.py
   test_secondary_storage.py
   test_vm_life_cycle.py
   test_disk_offerings.py
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2225: [master] Smoketest health checkrun

2017-09-01 Thread git
blueorangutan commented on issue #2225: [master] Smoketest health checkrun
URL: https://github.com/apache/cloudstack/pull/2225#issuecomment-326692415
 
 
   @rhtyd a Trillian-Jenkins matrix job (centos6 mgmt + xs65sp1, centos7 mgmt + 
vmware55u3, centos7 mgmt + kvmcentos7) has been kicked to run smoke tests
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd commented on issue #2225: [master] Smoketest health checkrun

2017-09-01 Thread git
rhtyd commented on issue #2225: [master] Smoketest health checkrun
URL: https://github.com/apache/cloudstack/pull/2225#issuecomment-326692297
 
 
   @blueorangutan test matrix
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2225: [master] Smoketest health checkrun

2017-09-01 Thread git
blueorangutan commented on issue #2225: [master] Smoketest health checkrun
URL: https://github.com/apache/cloudstack/pull/2225#issuecomment-326692200
 
 
   Packaging result: ?centos6 ?centos7 ?debian. JID-1071
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2225: [master] Smoketest health checkrun

2017-09-01 Thread git
blueorangutan commented on issue #2225: [master] Smoketest health checkrun
URL: https://github.com/apache/cloudstack/pull/2225#issuecomment-326688316
 
 
   @rhtyd a Jenkins job has been kicked to build packages. I'll keep you posted 
as I make progress.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd commented on issue #2225: [master] Smoketest health checkrun

2017-09-01 Thread git
rhtyd commented on issue #2225: [master] Smoketest health checkrun
URL: https://github.com/apache/cloudstack/pull/2225#issuecomment-326688271
 
 
   @blueorangutan package
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd commented on issue #2256: CLOUDSTACK-9782: Fix intermittent host-ha KVM test failures

2017-09-01 Thread git
rhtyd commented on issue #2256: CLOUDSTACK-9782: Fix intermittent host-ha KVM 
test failures
URL: https://github.com/apache/cloudstack/pull/2256#issuecomment-326688064
 
 
   Trillian test results confirm the fix, I'll merge this now and fire smoke 
tests (matrix run) separately.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd closed pull request #2256: CLOUDSTACK-9782: Fix intermittent host-ha KVM test failures

2017-09-01 Thread git
rhtyd closed pull request #2256: CLOUDSTACK-9782: Fix intermittent host-ha KVM 
test failures
URL: https://github.com/apache/cloudstack/pull/2256
 
 
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2256: CLOUDSTACK-9782: Fix intermittent host-ha KVM test failures

2017-09-01 Thread git
blueorangutan commented on issue #2256: CLOUDSTACK-9782: Fix intermittent 
host-ha KVM test failures
URL: https://github.com/apache/cloudstack/pull/2256#issuecomment-326687710
 
 
   Trillian test result (tid-1483)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 40641 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr2256-t1483-kvm-centos7.zip
   Intermitten failure detected: 
/marvin/tests/smoke/test_deploy_virtio_scsi_vm.py
   Intermitten failure detected: /marvin/tests/smoke/test_iso.py
   Intermitten failure detected: /marvin/tests/smoke/test_privategw_acl.py
   Intermitten failure detected: /marvin/tests/smoke/test_routers_network_ops.py
   Intermitten failure detected: /marvin/tests/smoke/test_ssvm.py
   Intermitten failure detected: /marvin/tests/smoke/test_vpc_vpn.py
   Test completed. 59 look OK, 3 have error(s)
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   test_04_rvpc_privategw_static_routes | `Failure` | 389.53 | 
test_privategw_acl.py
   test_05_iso_permissions | `Failure` | 0.04 | test_iso.py
   test_02_edit_iso | `Failure` | 0.04 | test_iso.py
   ContextSuite context=TestVpcRemoteAccessVpn>:setup | `Error` | 0.00 | 
test_vpc_vpn.py
   ContextSuite context=TestRVPCSite2SiteVpn>:setup | `Error` | 0.00 | 
test_vpc_vpn.py
   test_change_service_offering_for_vm_with_snapshots | Skipped | 0.00 | 
test_vm_snapshots.py
   test_09_copy_delete_template | Skipped | 0.01 | test_templates.py
   test_06_copy_template | Skipped | 0.00 | test_templates.py
   test_static_role_account_acls | Skipped | 0.01 | test_staticroles.py
   test_11_ss_nfs_version_on_ssvm | Skipped | 0.02 | test_ssvm.py
   test_01_scale_vm | Skipped | 0.00 | test_scale_vm.py
   test_01_primary_storage_iscsi | Skipped | 0.04 | test_primary_storage.py
   test_vm_nic_adapter_vmxnet3 | Skipped | 0.00 | test_nic_adapter_type.py
   test_nested_virtualization_vmware | Skipped | 0.00 | 
test_nested_virtualization.py
   test_06_copy_iso | Skipped | 0.00 | test_iso.py
   test_list_ha_for_host_valid | Skipped | 0.02 | test_hostha_simulator.py
   test_list_ha_for_host_invalid | Skipped | 0.02 | test_hostha_simulator.py
   test_list_ha_for_host | Skipped | 0.02 | test_hostha_simulator.py
   test_hostha_enable_feature_without_setting_provider | Skipped | 0.02 | 
test_hostha_simulator.py
   test_hostha_enable_feature_valid | Skipped | 0.02 | test_hostha_simulator.py
   test_hostha_disable_feature_valid | Skipped | 0.02 | test_hostha_simulator.py
   test_hostha_configure_invalid_provider | Skipped | 0.02 | 
test_hostha_simulator.py
   test_hostha_configure_default_driver | Skipped | 0.02 | 
test_hostha_simulator.py
   test_ha_verify_fsm_recovering | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_verify_fsm_fenced | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_verify_fsm_degraded | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_verify_fsm_available | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_multiple_mgmt_server_ownership | Skipped | 0.02 | 
test_hostha_simulator.py
   test_ha_list_providers | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_enable_feature_invalid | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_disable_feature_invalid | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_configure_enabledisable_across_clusterzones | Skipped | 0.02 | 
test_hostha_simulator.py
   test_configure_ha_provider_valid | Skipped | 0.02 | test_hostha_simulator.py
   test_configure_ha_provider_invalid | Skipped | 0.02 | 
test_hostha_simulator.py
   test_deploy_vgpu_enabled_vm | Skipped | 0.02 | test_deploy_vgpu_enabled_vm.py
   test_3d_gpu_support | Skipped | 0.03 | test_deploy_vgpu_enabled_vm.py
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] mike-tutkowski commented on issue #876: CLOUDSTACK-8865: Adding SR doesn't create Storage_pool_host_ref entry?

2017-09-01 Thread git
mike-tutkowski commented on issue #876: CLOUDSTACK-8865: Adding SR doesn't 
create Storage_pool_host_ref entry?
URL: https://github.com/apache/cloudstack/pull/876#issuecomment-326667052
 
 
   The idea behind the PR makes sense to me and the code LGTM.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd commented on issue #2253: [CLOUDSTACK-10061][Managed Storage] When starting a VM, make sure it has the correct volume access group

2017-09-01 Thread git
rhtyd commented on issue #2253: [CLOUDSTACK-10061][Managed Storage] When 
starting a VM, make sure it has the correct volume access group
URL: https://github.com/apache/cloudstack/pull/2253#issuecomment-326661725
 
 
   LGTM, test LGTM. Merging now.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd closed pull request #2253: [CLOUDSTACK-10061][Managed Storage] When starting a VM, make sure it has the correct volume access group

2017-09-01 Thread git
rhtyd closed pull request #2253: [CLOUDSTACK-10061][Managed Storage] When 
starting a VM, make sure it has the correct volume access group
URL: https://github.com/apache/cloudstack/pull/2253
 
 
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] syed commented on issue #2253: [CLOUDSTACK-10061][Managed Storage] When starting a VM, make sure it has the correct volume access group

2017-09-01 Thread git
syed commented on issue #2253: [CLOUDSTACK-10061][Managed Storage] When 
starting a VM, make sure it has the correct volume access group
URL: https://github.com/apache/cloudstack/pull/2253#issuecomment-326649456
 
 
   @rhtyd @GabrielBrascher Added JIRA ID
   @mike-tutkowski Thanks for the review!
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2246: CLOUDSTACK-10046 checksum validation for any java supported Digests-type

2017-09-01 Thread git
blueorangutan commented on issue #2246: CLOUDSTACK-10046 checksum validation 
for any java supported Digests-type
URL: https://github.com/apache/cloudstack/pull/2246#issuecomment-326637291
 
 
   Trillian test result (tid-1482)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 36183 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr2246-t1482-kvm-centos7.zip
   Intermitten failure detected: /marvin/tests/smoke/test_hostha_kvm.py
   Intermitten failure detected: /marvin/tests/smoke/test_iso.py
   Intermitten failure detected: /marvin/tests/smoke/test_privategw_acl.py
   Intermitten failure detected: /marvin/tests/smoke/test_templates.py
   Intermitten failure detected: /marvin/tests/smoke/test_vpc_vpn.py
   Test completed. 57 look OK, 5 have error(s)
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   test_01_vpc_remote_access_vpn | `Failure` | 81.06 | test_vpc_vpn.py
   test_04_rvpc_privategw_static_routes | `Failure` | 375.48 | 
test_privategw_acl.py
   test_05_iso_permissions | `Failure` | 0.05 | test_iso.py
   test_02_edit_iso | `Failure` | 0.05 | test_iso.py
   test_05_create_template_with_no_checksum | `Error` | 65.68 | 
test_templates.py
   test_04_create_template_with_checksum_md5 | `Error` | 40.48 | 
test_templates.py
   test_03_delete_template | `Error` | 5.11 | test_templates.py
   test_03_create_template_with_checksum_sha256 | `Error` | 65.65 | 
test_templates.py
   test_ha_kvm_host_recovering | `Error` | 62.35 | test_hostha_kvm.py
   test_ha_kvm_host_degraded | `Error` | 32.06 | test_hostha_kvm.py
   test_change_service_offering_for_vm_with_snapshots | Skipped | 0.00 | 
test_vm_snapshots.py
   test_09_copy_delete_template | Skipped | 0.02 | test_templates.py
   test_06_copy_template | Skipped | 0.00 | test_templates.py
   test_static_role_account_acls | Skipped | 0.02 | test_staticroles.py
   test_11_ss_nfs_version_on_ssvm | Skipped | 0.02 | test_ssvm.py
   test_01_scale_vm | Skipped | 0.00 | test_scale_vm.py
   test_01_primary_storage_iscsi | Skipped | 0.04 | test_primary_storage.py
   test_vm_nic_adapter_vmxnet3 | Skipped | 0.00 | test_nic_adapter_type.py
   test_nested_virtualization_vmware | Skipped | 0.00 | 
test_nested_virtualization.py
   test_06_copy_iso | Skipped | 0.00 | test_iso.py
   test_list_ha_for_host_valid | Skipped | 0.02 | test_hostha_simulator.py
   test_list_ha_for_host_invalid | Skipped | 0.01 | test_hostha_simulator.py
   test_list_ha_for_host | Skipped | 0.02 | test_hostha_simulator.py
   test_hostha_enable_feature_without_setting_provider | Skipped | 0.01 | 
test_hostha_simulator.py
   test_hostha_enable_feature_valid | Skipped | 0.02 | test_hostha_simulator.py
   test_hostha_disable_feature_valid | Skipped | 0.01 | test_hostha_simulator.py
   test_hostha_configure_invalid_provider | Skipped | 0.02 | 
test_hostha_simulator.py
   test_hostha_configure_default_driver | Skipped | 0.02 | 
test_hostha_simulator.py
   test_ha_verify_fsm_recovering | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_verify_fsm_fenced | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_verify_fsm_degraded | Skipped | 0.03 | test_hostha_simulator.py
   test_ha_verify_fsm_available | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_multiple_mgmt_server_ownership | Skipped | 0.02 | 
test_hostha_simulator.py
   test_ha_list_providers | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_enable_feature_invalid | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_disable_feature_invalid | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_configure_enabledisable_across_clusterzones | Skipped | 0.02 | 
test_hostha_simulator.py
   test_configure_ha_provider_valid | Skipped | 0.02 | test_hostha_simulator.py
   test_configure_ha_provider_invalid | Skipped | 0.02 | 
test_hostha_simulator.py
   test_deploy_vgpu_enabled_vm | Skipped | 0.03 | test_deploy_vgpu_enabled_vm.py
   test_3d_gpu_support | Skipped | 0.04 | test_deploy_vgpu_enabled_vm.py
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary storage usage metrics

2017-09-01 Thread git
blueorangutan commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary 
storage usage metrics
URL: https://github.com/apache/cloudstack/pull/2035#issuecomment-326603639
 
 
   @nvazquez a Trillian-Jenkins test job (centos7 mgmt + kvm-centos7) has been 
kicked to run smoke tests
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] nvazquez commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary storage usage metrics

2017-09-01 Thread git
nvazquez commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary 
storage usage metrics
URL: https://github.com/apache/cloudstack/pull/2035#issuecomment-326603363
 
 
   @blueorangutan test
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary storage usage metrics

2017-09-01 Thread git
blueorangutan commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary 
storage usage metrics
URL: https://github.com/apache/cloudstack/pull/2035#issuecomment-326582068
 
 
   Packaging result: ?centos6 ?centos7 ?debian. JID-1070
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary storage usage metrics

2017-09-01 Thread git
blueorangutan commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary 
storage usage metrics
URL: https://github.com/apache/cloudstack/pull/2035#issuecomment-326576523
 
 
   @nvazquez a Jenkins job has been kicked to build packages. I'll keep you 
posted as I make progress.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] nvazquez commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary storage usage metrics

2017-09-01 Thread git
nvazquez commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary 
storage usage metrics
URL: https://github.com/apache/cloudstack/pull/2035#issuecomment-326576317
 
 
   @blueorangutan package
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2158: CLOUDSTACK-9972: Enhance listVolume API to include physical size and ?

2017-09-01 Thread git
blueorangutan commented on issue #2158: CLOUDSTACK-9972: Enhance listVolume API 
to include physical size and ?
URL: https://github.com/apache/cloudstack/pull/2158#issuecomment-326576086
 
 
   @nvazquez a Trillian-Jenkins test job (centos7 mgmt + kvm-centos7) has been 
kicked to run smoke tests
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] nvazquez commented on issue #2158: CLOUDSTACK-9972: Enhance listVolume API to include physical size and ?

2017-09-01 Thread git
nvazquez commented on issue #2158: CLOUDSTACK-9972: Enhance listVolume API to 
include physical size and ?
URL: https://github.com/apache/cloudstack/pull/2158#issuecomment-326575981
 
 
   @blueorangutan test
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2158: CLOUDSTACK-9972: Enhance listVolume API to include physical size and ?

2017-09-01 Thread git
blueorangutan commented on issue #2158: CLOUDSTACK-9972: Enhance listVolume API 
to include physical size and ?
URL: https://github.com/apache/cloudstack/pull/2158#issuecomment-326571651
 
 
   Packaging result: ?centos6 ?centos7 ?debian. JID-1069
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary storage usage metrics

2017-09-01 Thread git
blueorangutan commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary 
storage usage metrics
URL: https://github.com/apache/cloudstack/pull/2035#issuecomment-326569771
 
 
   Trillian test result (tid-1479)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 30542 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr2035-t1479-kvm-centos7.zip
   Intermitten failure detected: /marvin/tests/smoke/test_hostha_kvm.py
   Intermitten failure detected: /marvin/tests/smoke/test_iso.py
   Intermitten failure detected: /marvin/tests/smoke/test_privategw_acl.py
   Intermitten failure detected: /marvin/tests/smoke/test_vpc_vpn.py
   Test completed. 58 look OK, 4 have error(s)
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   test_01_vpc_remote_access_vpn | `Failure` | 50.83 | test_vpc_vpn.py
   test_04_rvpc_privategw_static_routes | `Failure` | 313.80 | 
test_privategw_acl.py
   test_05_iso_permissions | `Failure` | 0.04 | test_iso.py
   test_02_edit_iso | `Failure` | 0.04 | test_iso.py
   test_hostha_enable_ha_when_host_disabled | `Failure` | 5.39 | 
test_hostha_kvm.py
   test_ha_kvm_host_recovering | `Failure` | 660.85 | test_hostha_kvm.py
   test_disable_oobm_ha_state_ineligible | `Failure` | 5.46 | test_hostha_kvm.py
   test_ha_kvm_host_degraded | `Error` | 21.70 | test_hostha_kvm.py
   test_change_service_offering_for_vm_with_snapshots | Skipped | 0.00 | 
test_vm_snapshots.py
   test_09_copy_delete_template | Skipped | 0.01 | test_templates.py
   test_06_copy_template | Skipped | 0.00 | test_templates.py
   test_static_role_account_acls | Skipped | 0.01 | test_staticroles.py
   test_11_ss_nfs_version_on_ssvm | Skipped | 0.01 | test_ssvm.py
   test_01_scale_vm | Skipped | 0.00 | test_scale_vm.py
   test_01_primary_storage_iscsi | Skipped | 0.02 | test_primary_storage.py
   test_vm_nic_adapter_vmxnet3 | Skipped | 0.00 | test_nic_adapter_type.py
   test_nested_virtualization_vmware | Skipped | 0.00 | 
test_nested_virtualization.py
   test_06_copy_iso | Skipped | 0.00 | test_iso.py
   test_list_ha_for_host_valid | Skipped | 0.01 | test_hostha_simulator.py
   test_list_ha_for_host_invalid | Skipped | 0.01 | test_hostha_simulator.py
   test_list_ha_for_host | Skipped | 0.01 | test_hostha_simulator.py
   test_hostha_enable_feature_without_setting_provider | Skipped | 0.01 | 
test_hostha_simulator.py
   test_hostha_enable_feature_valid | Skipped | 0.01 | test_hostha_simulator.py
   test_hostha_disable_feature_valid | Skipped | 0.01 | test_hostha_simulator.py
   test_hostha_configure_invalid_provider | Skipped | 0.01 | 
test_hostha_simulator.py
   test_hostha_configure_default_driver | Skipped | 0.02 | 
test_hostha_simulator.py
   test_ha_verify_fsm_recovering | Skipped | 0.01 | test_hostha_simulator.py
   test_ha_verify_fsm_fenced | Skipped | 0.01 | test_hostha_simulator.py
   test_ha_verify_fsm_degraded | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_verify_fsm_available | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_multiple_mgmt_server_ownership | Skipped | 0.03 | 
test_hostha_simulator.py
   test_ha_list_providers | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_enable_feature_invalid | Skipped | 0.01 | test_hostha_simulator.py
   test_ha_disable_feature_invalid | Skipped | 0.01 | test_hostha_simulator.py
   test_ha_configure_enabledisable_across_clusterzones | Skipped | 0.01 | 
test_hostha_simulator.py
   test_configure_ha_provider_valid | Skipped | 0.01 | test_hostha_simulator.py
   test_configure_ha_provider_invalid | Skipped | 0.02 | 
test_hostha_simulator.py
   test_deploy_vgpu_enabled_vm | Skipped | 0.02 | test_deploy_vgpu_enabled_vm.py
   test_3d_gpu_support | Skipped | 0.03 | test_deploy_vgpu_enabled_vm.py
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2158: CLOUDSTACK-9972: Enhance listVolume API to include physical size and ?

2017-09-01 Thread git
blueorangutan commented on issue #2158: CLOUDSTACK-9972: Enhance listVolume API 
to include physical size and ?
URL: https://github.com/apache/cloudstack/pull/2158#issuecomment-326566495
 
 
   @nvazquez a Jenkins job has been kicked to build packages. I'll keep you 
posted as I make progress.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] nvazquez commented on issue #2158: CLOUDSTACK-9972: Enhance listVolume API to include physical size and ?

2017-09-01 Thread git
nvazquez commented on issue #2158: CLOUDSTACK-9972: Enhance listVolume API to 
include physical size and ?
URL: https://github.com/apache/cloudstack/pull/2158#issuecomment-326566412
 
 
   @blueorangutan package
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] PranaliM commented on issue #2257: CLOUDSTACK-10060:ListUsage API always displays the Virtual size as '0' for Usage type=9 (snapshot)

2017-09-01 Thread git
PranaliM commented on issue #2257: CLOUDSTACK-10060:ListUsage API always 
displays the Virtual size as '0' for Usage type=9 (snapshot)
URL: https://github.com/apache/cloudstack/pull/2257#issuecomment-326565296
 
 
   After Fix: Only 1 field displayed as 'Size'
   
   
![after_fix](https://user-images.githubusercontent.com/24890708/29969343-4a7dab86-8f3d-11e7-8a38-77b1b5cc45ff.png)
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] PranaliM commented on issue #2257: CLOUDSTACK-10060:ListUsage API always displays the Virtual size as '0' for Usage type=9 (snapshot)

2017-09-01 Thread git
PranaliM commented on issue #2257: CLOUDSTACK-10060:ListUsage API always 
displays the Virtual size as '0' for Usage type=9 (snapshot)
URL: https://github.com/apache/cloudstack/pull/2257#issuecomment-326563734
 
 
   After Fix: Only 1 field displayed as 'Size'
   
![after_fix](https://user-images.githubusercontent.com/24890708/29969039-06930570-8f3c-11e7-8171-2275455ed265.png)
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rafaelweingartner commented on issue #1124: CID-1338387: Deletion of method endPointSelector.selectHypervisorHost

2017-09-01 Thread git
rafaelweingartner commented on issue #1124: CID-1338387: Deletion of method 
endPointSelector.selectHypervisorHost
URL: https://github.com/apache/cloudstack/pull/1124#issuecomment-326564973
 
 
   Hi @anshul1886, 
   I have reviewed this method in depth with @DaanHoogland and it was not doing 
what you described.
   The whole discussion is found here: 
https://github.com/apache/cloudstack/pull/1056
   
   The work flow you describe makes sense and I understand why one would 
implement it. However, that is not what the removed method was doing. There 
were no guarantees on which "hosts" would be taken to execute methods; that was 
quite odd.
   I would suggest adding the workflow you described as a new feature if we do 
not have something similar yet.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rafaelweingartner commented on issue #1124: CID-1338387: Deletion of method endPointSelector.selectHypervisorHost

2017-09-01 Thread git
rafaelweingartner commented on issue #1124: CID-1338387: Deletion of method 
endPointSelector.selectHypervisorHost
URL: https://github.com/apache/cloudstack/pull/1124#issuecomment-326564973
 
 
   Hi @anshul1886, 
   I have reviewed this method in depth with @DaanHoogland and it was not doing 
what you described.
   The whole discussion is found here: 
https://github.com/apache/cloudstack/pull/1056
   
   The work flow you describe makes sense and I understand why one would 
implement it. However, that is not what the removed method was doing. There 
were no guarantees on which "hosts" would be taken to execute methods; that was 
quite odd.
   
   I would suggest adding the workflow you described as a new feature if we do 
not have something similar yet.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] PranaliM commented on issue #2257: CLOUDSTACK-10060:ListUsage API always displays the Virtual size as '0' for Usage type=9 (snapshot)

2017-09-01 Thread git
PranaliM commented on issue #2257: CLOUDSTACK-10060:ListUsage API always 
displays the Virtual size as '0' for Usage type=9 (snapshot)
URL: https://github.com/apache/cloudstack/pull/2257#issuecomment-326563734
 
 
   After Fix: Only 1 field displayed as 'Size'
   
![after_fix](https://user-images.githubusercontent.com/24890708/29969039-06930570-8f3c-11e7-8171-2275455ed265.png)
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] PranaliM commented on issue #2257: CLOUDSTACK-10060:ListUsage API always displays the Virtual size as '0' for Usage type=9 (snapshot)

2017-09-01 Thread git
PranaliM commented on issue #2257: CLOUDSTACK-10060:ListUsage API always 
displays the Virtual size as '0' for Usage type=9 (snapshot)
URL: https://github.com/apache/cloudstack/pull/2257#issuecomment-326563734
 
 
   
![after_fix](https://user-images.githubusercontent.com/24890708/29969039-06930570-8f3c-11e7-8171-2275455ed265.png)
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] PranaliM opened a new pull request #2257: CLOUDSTACK-10060:ListUsage API always displays the Virtual size as '0 for Usage type=9 (snapshot)

2017-09-01 Thread git
PranaliM opened a new pull request #2257: CLOUDSTACK-10060:ListUsage API always 
displays the Virtual size as '0 for Usage type=9 (snapshot)
URL: https://github.com/apache/cloudstack/pull/2257
 
 
   **Bug Description:**
   In the listUsage API, the Virtual Size of Snapshot is always displayed as 
'0'.
   
   **Root Cause:**
   In case of snapshots, the usage is accounted for depending on the value of 
the global parameter, 'usage.snapshot.virtualsize.select'. If set to 'true', 
the usage is done based on the Virtual Size, and if set to false, it is done 
based on the Physical size. In the Usage API, this value, (i.e. virtual or 
physical) is displayed as 'Size' field in the Usage API and the field 
'VirtualSize' is always displayed as 0.
   
   **Expected Output:**
   Since this is a Usage API, ideally only that size should be displayed which 
is used for billing, depending on the value of 
'usage.snapshot.virtualsize.select'.
   There is another API - the ListSnapshot API that displays both, the physical 
as well as Virtual size and can be used to know both the sizes.
   
   **Fix Implemented:**
   Skipped showing the VirtualField for type=snapshot
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd closed pull request #2254: CLOUDSTACK-10058: Error while opening the Settings tab in Secondary storage

2017-09-01 Thread git
rhtyd closed pull request #2254: CLOUDSTACK-10058: Error while opening the 
Settings tab in Secondary storage
URL: https://github.com/apache/cloudstack/pull/2254
 
 
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] nvazquez commented on issue #2254: CLOUDSTACK-10058: Error while opening the Settings tab in Secondary storage

2017-09-01 Thread git
nvazquez commented on issue #2254: CLOUDSTACK-10058: Error while opening the 
Settings tab in Secondary storage
URL: https://github.com/apache/cloudstack/pull/2254#issuecomment-326553436
 
 
   LGTM
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] cloudmonger commented on issue #905: BUG-ID: CLOUDSTACK-8922: Unable to delete IP tag

2017-09-01 Thread git
cloudmonger commented on issue #905: BUG-ID: CLOUDSTACK-8922:  Unable to delete 
IP tag
URL: https://github.com/apache/cloudstack/pull/905#issuecomment-326551732
 
 
   ### ACS CI BVT Run
**Sumarry:**
Build Number 1176
Hypervisor xenserver
NetworkType Advanced
Passed=132
Failed=9
Skipped=41
   
   _Link to logs Folder (search by build_no):_ 
https://www.dropbox.com/sh/r2si930m8xxzavs/AAAzNrnoF1fC3auFrvsKo_8-a?dl=0
   
   **Failed tests:**
   * test_vm_snapshots.py
   
* test_change_service_offering_for_vm_with_snapshots Failed
   
   * test_tags.py
   
* test_06_template_tag Failed
   
   * test_deploy_vm_iso.py
   
* test_deploy_vm_from_iso Failed
   
   * test_volumes.py
   
* test_06_download_detached_volume Failed
   
   * test_routers_network_ops.py
   
* test_01_isolate_network_FW_PF_default_routes_egress_true Failing since 39 
runs
   
* test_02_isolate_network_FW_PF_default_routes_egress_false Failing since 
166 runs
   
* test_01_RVR_Network_FW_PF_SSH_default_routes_egress_true Failing since 
161 runs
   
* test_02_RVR_Network_FW_PF_SSH_default_routes_egress_false Failing since 
161 runs
   
* ContextSuite context=TestRedundantIsolateNetworks>:teardown Failing since 
14 runs
   
   
   **Skipped tests:**
   test_vm_nic_adapter_vmxnet3
   test_04_vpn_tag
   test_01_verify_libvirt
   test_02_verify_libvirt_after_restart
   test_03_verify_libvirt_attach_disk
   test_04_verify_guest_lspci
   test_05_change_vm_ostype_restart
   test_06_verify_guest_lspci_again
   test_disable_oobm_ha_state_ineligible
   test_ha_kvm_host_degraded
   test_ha_kvm_host_fencing
   test_ha_kvm_host_recovering
   test_hostha_configure_default_driver
   test_hostha_enable_ha_when_host_disabled
   test_hostha_enable_ha_when_host_disconected
   test_hostha_enable_ha_when_host_in_maintenance
   test_remove_ha_provider_not_possible
   test_configure_ha_provider_invalid
   test_configure_ha_provider_valid
   test_ha_configure_enabledisable_across_clusterzones
   test_ha_disable_feature_invalid
   test_ha_enable_feature_invalid
   test_ha_list_providers
   test_ha_multiple_mgmt_server_ownership
   test_ha_verify_fsm_available
   test_ha_verify_fsm_degraded
   test_ha_verify_fsm_fenced
   test_ha_verify_fsm_recovering
   test_hostha_configure_default_driver
   test_hostha_configure_invalid_provider
   test_hostha_disable_feature_valid
   test_hostha_enable_feature_valid
   test_hostha_enable_feature_without_setting_provider
   test_list_ha_for_host
   test_list_ha_for_host_invalid
   test_list_ha_for_host_valid
   test_static_role_account_acls
   test_11_ss_nfs_version_on_ssvm
   test_nested_virtualization_vmware
   test_3d_gpu_support
   test_deploy_vgpu_enabled_vm
   
   **Passed test suits:**
   test_deploy_vm_with_userdata.py
   test_affinity_groups_projects.py
   test_portable_publicip.py
   test_over_provisioning.py
   test_global_settings.py
   test_router_dnsservice.py
   test_scale_vm.py
   test_service_offerings.py
   test_routers_iptables_default_policy.py
   test_loadbalance.py
   test_routers.py
   test_reset_vm_on_reboot.py
   test_deploy_vms_with_varied_deploymentplanners.py
   test_network.py
   test_router_dns.py
   test_outofbandmanagement_nestedplugin.py
   test_portforwardingrules.py
   test_non_contigiousvlan.py
   test_login.py
   test_list_ids_parameter.py
   test_public_ip_range.py
   test_multipleips_per_nic.py
   test_metrics_api.py
   test_regions.py
   test_affinity_groups.py
   test_network_acl.py
   test_pvlan.py
   test_nic.py
   test_deploy_vm_root_resize.py
   test_resource_detail.py
   test_secondary_storage.py
   test_disk_offerings.py
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] cloudmonger commented on issue #905: BUG-ID: CLOUDSTACK-8922: Unable to delete IP tag

2017-09-01 Thread git
cloudmonger commented on issue #905: BUG-ID: CLOUDSTACK-8922:  Unable to delete 
IP tag
URL: https://github.com/apache/cloudstack/pull/905#issuecomment-326089795
 
 
   ### ACS CI BVT Run
**Sumarry:**
Build Number 1168
Hypervisor xenserver
NetworkType Advanced
Passed=129
Failed=7
Skipped=13
   
   _Link to logs Folder (search by build_no):_ 
https://www.dropbox.com/sh/r2si930m8xxzavs/AAAzNrnoF1fC3auFrvsKo_8-a?dl=0
   
   **Failed tests:**
   * test_scale_vm.py
   
* ContextSuite context=TestScaleVm>:setup Failing since 40 runs
   
   * test_non_contigiousvlan.py
   
* test_extendPhysicalNetworkVlan Failing since 2 runs
   
   * test_volumes.py
   
* test_06_download_detached_volume Failed
   
   * test_routers_network_ops.py
   
* test_01_isolate_network_FW_PF_default_routes_egress_true Failing since 32 
runs
   
* test_02_isolate_network_FW_PF_default_routes_egress_false Failing since 
159 runs
   
* test_01_RVR_Network_FW_PF_SSH_default_routes_egress_true Failing since 
154 runs
   
* test_02_RVR_Network_FW_PF_SSH_default_routes_egress_false Failing since 
154 runs
   
   
   **Skipped tests:**
   test_vm_nic_adapter_vmxnet3
   test_04_vpn_tag
   test_01_verify_libvirt
   test_02_verify_libvirt_after_restart
   test_03_verify_libvirt_attach_disk
   test_04_verify_guest_lspci
   test_05_change_vm_ostype_restart
   test_06_verify_guest_lspci_again
   test_static_role_account_acls
   test_11_ss_nfs_version_on_ssvm
   test_nested_virtualization_vmware
   test_3d_gpu_support
   test_deploy_vgpu_enabled_vm
   
   **Passed test suits:**
   test_deploy_vm_with_userdata.py
   test_affinity_groups_projects.py
   test_portable_publicip.py
   test_vm_snapshots.py
   test_over_provisioning.py
   test_global_settings.py
   test_router_dnsservice.py
   test_service_offerings.py
   test_routers_iptables_default_policy.py
   test_loadbalance.py
   test_routers.py
   test_reset_vm_on_reboot.py
   test_deploy_vms_with_varied_deploymentplanners.py
   test_network.py
   test_router_dns.py
   test_login.py
   test_deploy_vm_iso.py
   test_list_ids_parameter.py
   test_public_ip_range.py
   test_multipleips_per_nic.py
   test_metrics_api.py
   test_regions.py
   test_affinity_groups.py
   test_network_acl.py
   test_pvlan.py
   test_nic.py
   test_deploy_vm_root_resize.py
   test_resource_detail.py
   test_secondary_storage.py
   test_vm_life_cycle.py
   test_disk_offerings.py
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] anshul1886 commented on issue #1124: CID-1338387: Deletion of method endPointSelector.selectHypervisorHost

2017-09-01 Thread git
anshul1886 commented on issue #1124: CID-1338387: Deletion of method 
endPointSelector.selectHypervisorHost
URL: https://github.com/apache/cloudstack/pull/1124#issuecomment-326550060
 
 
   @rafaelweingartner @DaanHoogland Removing method has reintroduced bug 
https://issues.apache.org/jira/browse/CLOUDSTACK-9025. Main purpose of 
`getCommandHostDelegation` method is served through this method 
`endPointSelector.selectHypervisorHost`. For example by default `CopyCommand` 
involving only image stores goes to SSVM but for some hypervisors there is some 
optimisation done and can be directly handled by hypervisor agent. With this 
method we can change that default behaviour. And the removed method was giving 
us that different endpoint.  
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2256: CLOUDSTACK-9782: Fix intermittent host-ha KVM test failures

2017-09-01 Thread git
blueorangutan commented on issue #2256: CLOUDSTACK-9782: Fix intermittent 
host-ha KVM test failures
URL: https://github.com/apache/cloudstack/pull/2256#issuecomment-326544007
 
 
   @rhtyd a Trillian-Jenkins test job (centos7 mgmt + kvm-centos7) has been 
kicked to run smoke tests
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd commented on issue #2256: CLOUDSTACK-9782: Fix intermittent host-ha KVM test failures

2017-09-01 Thread git
rhtyd commented on issue #2256: CLOUDSTACK-9782: Fix intermittent host-ha KVM 
test failures
URL: https://github.com/apache/cloudstack/pull/2256#issuecomment-326543834
 
 
   @blueorangutan test
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2256: CLOUDSTACK-9782: Fix intermittent host-ha KVM test failures

2017-09-01 Thread git
blueorangutan commented on issue #2256: CLOUDSTACK-9782: Fix intermittent 
host-ha KVM test failures
URL: https://github.com/apache/cloudstack/pull/2256#issuecomment-326540670
 
 
   Packaging result: ?centos6 ?centos7 ?debian. JID-1068
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2256: CLOUDSTACK-9782: Fix intermittent host-ha KVM test failures

2017-09-01 Thread git
blueorangutan commented on issue #2256: CLOUDSTACK-9782: Fix intermittent 
host-ha KVM test failures
URL: https://github.com/apache/cloudstack/pull/2256#issuecomment-326535558
 
 
   @rhtyd a Jenkins job has been kicked to build packages. I'll keep you posted 
as I make progress.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd closed pull request #1733: CLOUDSTACK-9563 ExtractTemplate returns malformed URL after migrating?

2017-09-01 Thread git
rhtyd closed pull request #1733: CLOUDSTACK-9563 ExtractTemplate returns 
malformed URL after migrating?
URL: https://github.com/apache/cloudstack/pull/1733
 
 
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd commented on issue #876: CLOUDSTACK-8865: Adding SR doesn't create Storage_pool_host_ref entry?

2017-09-01 Thread git
rhtyd commented on issue #876: CLOUDSTACK-8865: Adding SR doesn't create 
Storage_pool_host_ref entry?
URL: https://github.com/apache/cloudstack/pull/876#issuecomment-326533684
 
 
   Failures are not related to this PR, test LGTM.
   Additional final review requested - @syed @karuturi @mike-tutkowski and 
others
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd commented on issue #2253: [Managed Storage] When starting a VM, make sure it has the correct volume access group

2017-09-01 Thread git
rhtyd commented on issue #2253: [Managed Storage] When starting a VM, make sure 
it has the correct volume access group
URL: https://github.com/apache/cloudstack/pull/2253#issuecomment-326530253
 
 
   @syed can we get a JIRA id for this, this is ready for merge.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd commented on issue #2253: [Managed Storage] When starting a VM, make sure it has the correct volume access group

2017-09-01 Thread git
rhtyd commented on issue #2253: [Managed Storage] When starting a VM, make sure 
it has the correct volume access group
URL: https://github.com/apache/cloudstack/pull/2253#issuecomment-326530180
 
 
   LGTM, the other failures are not related to this PR and are known issues 
handled in separate PRs.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd closed pull request #2188: CLOUDSTACK-10004 : On deletion, Vmware volume snapshots are left behind with message 'the snapshot has child, can't delete it on the storage'

2017-09-01 Thread git
rhtyd closed pull request #2188: CLOUDSTACK-10004 : On deletion, Vmware volume 
snapshots are left behind with message 'the snapshot has child, can't delete it 
on the storage'
URL: https://github.com/apache/cloudstack/pull/2188
 
 
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd commented on issue #2092: CLOUDSTACK-8599: [VMware] Successful migration was reported as failure when vCenter session timed out

2017-09-01 Thread git
rhtyd commented on issue #2092: CLOUDSTACK-8599: [VMware] Successful migration 
was reported as failure when vCenter session timed out
URL: https://github.com/apache/cloudstack/pull/2092#issuecomment-326529797
 
 
   LGTM, test failures not related to this PR. Additional review requested 
@niteshsarda @nitin-maharana @karuturi @sureshanaparti and others
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd commented on issue #2188: CLOUDSTACK-10004 : On deletion, Vmware volume snapshots are left behind with message 'the snapshot has child, can't delete it on the storage'

2017-09-01 Thread git
rhtyd commented on issue #2188: CLOUDSTACK-10004 : On deletion, Vmware volume 
snapshots are left behind with message 'the snapshot has child, can't delete it 
on the storage'
URL: https://github.com/apache/cloudstack/pull/2188#issuecomment-326529946
 
 
   LGTM, failures are known issues. 
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd commented on issue #2254: CLOUDSTACK-10058: Error while opening the Settings tab in Secondary storage

2017-09-01 Thread git
rhtyd commented on issue #2254: CLOUDSTACK-10058: Error while opening the 
Settings tab in Secondary storage
URL: https://github.com/apache/cloudstack/pull/2254#issuecomment-326529421
 
 
   Additional review requested @karuturi @DaanHoogland @nvazquez @niteshsarda  
@yvsubhash and others
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd closed pull request #914: CLOUDSTACK-8939 VM Snapshot size with memory correctly calculated in cloud.usage_event (XenServer)

2017-09-01 Thread git
rhtyd closed pull request #914: CLOUDSTACK-8939 VM Snapshot size with memory 
correctly calculated in cloud.usage_event (XenServer)
URL: https://github.com/apache/cloudstack/pull/914
 
 
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rhtyd commented on issue #914: CLOUDSTACK-8939 VM Snapshot size with memory correctly calculated in cloud.usage_event (XenServer)

2017-09-01 Thread git
rhtyd commented on issue #914: CLOUDSTACK-8939 VM Snapshot size with memory 
correctly calculated in cloud.usage_event (XenServer)
URL: https://github.com/apache/cloudstack/pull/914#issuecomment-326529107
 
 
   LGTM, test failures not related to this PR.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2246: CLOUDSTACK-10046 checksum validation for any java supported Digests-type

2017-09-01 Thread git
blueorangutan commented on issue #2246: CLOUDSTACK-10046 checksum validation 
for any java supported Digests-type
URL: https://github.com/apache/cloudstack/pull/2246#issuecomment-326508787
 
 
   @borisstoyanov a Trillian-Jenkins test job (centos7 mgmt + kvm-centos7) has 
been kicked to run smoke tests
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] borisstoyanov commented on issue #2246: CLOUDSTACK-10046 checksum validation for any java supported Digests-type

2017-09-01 Thread git
borisstoyanov commented on issue #2246: CLOUDSTACK-10046 checksum validation 
for any java supported Digests-type
URL: https://github.com/apache/cloudstack/pull/2246#issuecomment-326508744
 
 
   @blueorangutan test
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2246: CLOUDSTACK-10046 checksum validation for any java supported Digests-type

2017-09-01 Thread git
blueorangutan commented on issue #2246: CLOUDSTACK-10046 checksum validation 
for any java supported Digests-type
URL: https://github.com/apache/cloudstack/pull/2246#issuecomment-326508493
 
 
   Packaging result: ?centos6 ?centos7 ?debian. JID-1067
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #914: CLOUDSTACK-8939 VM Snapshot size with memory correctly calculated in cloud.usage_event (XenServer)

2017-09-01 Thread git
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2246: CLOUDSTACK-10046 checksum validation for any java supported Digests-type

2017-09-01 Thread git
blueorangutan commented on issue #2246: CLOUDSTACK-10046 checksum validation 
for any java supported Digests-type
URL: https://github.com/apache/cloudstack/pull/2246#issuecomment-326503908
 
 
   @borisstoyanov a Jenkins job has been kicked to build packages. I'll keep 
you posted as I make progress.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] borisstoyanov commented on issue #2246: CLOUDSTACK-10046 checksum validation for any java supported Digests-type

2017-09-01 Thread git
borisstoyanov commented on issue #2246: CLOUDSTACK-10046 checksum validation 
for any java supported Digests-type
URL: https://github.com/apache/cloudstack/pull/2246#issuecomment-326503837
 
 
   @blueorangutan package
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] cloudmonger commented on issue #2204: [CLOUDSTACK-10025] Adding Support for NoVNC Console for KVM and XENSERVER

2017-08-31 Thread git
cloudmonger commented on issue #2204: [CLOUDSTACK-10025] Adding Support for 
NoVNC Console for KVM and XENSERVER
URL: https://github.com/apache/cloudstack/pull/2204#issuecomment-324907431
 
 
   ### ACS CI BVT Run
**Sumarry:**
Build Number 1144
Hypervisor xenserver
NetworkType Advanced
Passed=110
Failed=4
Skipped=12
   
   _Link to logs Folder (search by build_no):_ 
https://www.dropbox.com/sh/r2si930m8xxzavs/AAAzNrnoF1fC3auFrvsKo_8-a?dl=0
   
   **Failed tests:**
   * test_routers_network_ops.py
   
* test_01_isolate_network_FW_PF_default_routes_egress_true Failing since 9 
runs
   
* test_02_isolate_network_FW_PF_default_routes_egress_false Failing since 
136 runs
   
* test_01_RVR_Network_FW_PF_SSH_default_routes_egress_true Failing since 
131 runs
   
* test_02_RVR_Network_FW_PF_SSH_default_routes_egress_false Failing since 
131 runs
   
   
   **Skipped tests:**
   test_vm_nic_adapter_vmxnet3
   test_01_verify_libvirt
   test_02_verify_libvirt_after_restart
   test_03_verify_libvirt_attach_disk
   test_04_verify_guest_lspci
   test_05_change_vm_ostype_restart
   test_06_verify_guest_lspci_again
   test_static_role_account_acls
   test_11_ss_nfs_version_on_ssvm
   test_nested_virtualization_vmware
   test_3d_gpu_support
   test_deploy_vgpu_enabled_vm
   
   **Passed test suits:**
   test_deploy_vm_with_userdata.py
   test_affinity_groups_projects.py
   test_portable_publicip.py
   test_vm_snapshots.py
   test_over_provisioning.py
   test_global_settings.py
   test_router_dnsservice.py
   test_scale_vm.py
   test_service_offerings.py
   test_routers_iptables_default_policy.py
   test_loadbalance.py
   test_routers.py
   test_reset_vm_on_reboot.py
   test_deploy_vms_with_varied_deploymentplanners.py
   test_network.py
   test_router_dns.py
   test_non_contigiousvlan.py
   test_login.py
   test_deploy_vm_iso.py
   test_list_ids_parameter.py
   test_public_ip_range.py
   test_multipleips_per_nic.py
   test_metrics_api.py
   test_regions.py
   test_affinity_groups.py
   test_network_acl.py
   test_pvlan.py
   test_volumes.py
   test_nic.py
   test_deploy_vm_root_resize.py
   test_resource_detail.py
   test_secondary_storage.py
   test_vm_life_cycle.py
   test_disk_offerings.py
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] cloudmonger commented on issue #2204: [CLOUDSTACK-10025] Adding Support for NoVNC Console for KVM and XENSERVER

2017-08-31 Thread git
cloudmonger commented on issue #2204: [CLOUDSTACK-10025] Adding Support for 
NoVNC Console for KVM and XENSERVER
URL: https://github.com/apache/cloudstack/pull/2204#issuecomment-326484412
 
 
   ### ACS CI BVT Run
**Sumarry:**
Build Number 1175
Hypervisor xenserver
NetworkType Advanced
Passed=114
Failed=5
Skipped=40
   
   _Link to logs Folder (search by build_no):_ 
https://www.dropbox.com/sh/r2si930m8xxzavs/AAAzNrnoF1fC3auFrvsKo_8-a?dl=0
   
   **Failed tests:**
   * test_list_ids_parameter.py
   
* ContextSuite context=TestListIdsParams>:setup Failing since 60 runs
   
   * test_routers_network_ops.py
   
* test_01_isolate_network_FW_PF_default_routes_egress_true Failing since 38 
runs
   
* test_02_isolate_network_FW_PF_default_routes_egress_false Failing since 
165 runs
   
* test_01_RVR_Network_FW_PF_SSH_default_routes_egress_true Failing since 
160 runs
   
* test_02_RVR_Network_FW_PF_SSH_default_routes_egress_false Failing since 
160 runs
   
   
   **Skipped tests:**
   test_vm_nic_adapter_vmxnet3
   test_01_verify_libvirt
   test_02_verify_libvirt_after_restart
   test_03_verify_libvirt_attach_disk
   test_04_verify_guest_lspci
   test_05_change_vm_ostype_restart
   test_06_verify_guest_lspci_again
   test_disable_oobm_ha_state_ineligible
   test_ha_kvm_host_degraded
   test_ha_kvm_host_fencing
   test_ha_kvm_host_recovering
   test_hostha_configure_default_driver
   test_hostha_enable_ha_when_host_disabled
   test_hostha_enable_ha_when_host_disconected
   test_hostha_enable_ha_when_host_in_maintenance
   test_remove_ha_provider_not_possible
   test_configure_ha_provider_invalid
   test_configure_ha_provider_valid
   test_ha_configure_enabledisable_across_clusterzones
   test_ha_disable_feature_invalid
   test_ha_enable_feature_invalid
   test_ha_list_providers
   test_ha_multiple_mgmt_server_ownership
   test_ha_verify_fsm_available
   test_ha_verify_fsm_degraded
   test_ha_verify_fsm_fenced
   test_ha_verify_fsm_recovering
   test_hostha_configure_default_driver
   test_hostha_configure_invalid_provider
   test_hostha_disable_feature_valid
   test_hostha_enable_feature_valid
   test_hostha_enable_feature_without_setting_provider
   test_list_ha_for_host
   test_list_ha_for_host_invalid
   test_list_ha_for_host_valid
   test_static_role_account_acls
   test_11_ss_nfs_version_on_ssvm
   test_nested_virtualization_vmware
   test_3d_gpu_support
   test_deploy_vgpu_enabled_vm
   
   **Passed test suits:**
   test_deploy_vm_with_userdata.py
   test_affinity_groups_projects.py
   test_portable_publicip.py
   test_vm_snapshots.py
   test_over_provisioning.py
   test_global_settings.py
   test_router_dnsservice.py
   test_scale_vm.py
   test_service_offerings.py
   test_routers_iptables_default_policy.py
   test_loadbalance.py
   test_routers.py
   test_reset_vm_on_reboot.py
   test_deploy_vms_with_varied_deploymentplanners.py
   test_network.py
   test_router_dns.py
   test_outofbandmanagement_nestedplugin.py
   test_portforwardingrules.py
   test_non_contigiousvlan.py
   test_login.py
   test_deploy_vm_iso.py
   test_public_ip_range.py
   test_multipleips_per_nic.py
   test_metrics_api.py
   test_regions.py
   test_affinity_groups.py
   test_network_acl.py
   test_pvlan.py
   test_volumes.py
   test_nic.py
   test_deploy_vm_root_resize.py
   test_resource_detail.py
   test_secondary_storage.py
   test_vm_life_cycle.py
   test_disk_offerings.py
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary storage usage metrics

2017-08-31 Thread git
blueorangutan commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary 
storage usage metrics
URL: https://github.com/apache/cloudstack/pull/2035#issuecomment-326480455
 
 
   @nvazquez a Jenkins job has been kicked to build packages. I'll keep you 
posted as I make progress.
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] nvazquez commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary storage usage metrics

2017-08-31 Thread git
nvazquez commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary 
storage usage metrics
URL: https://github.com/apache/cloudstack/pull/2035#issuecomment-326482662
 
 
   @rhtyd conflicts fixed, however packaging is failing for centos6
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] nvazquez commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary storage usage metrics

2017-08-31 Thread git
nvazquez commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary 
storage usage metrics
URL: https://github.com/apache/cloudstack/pull/2035#issuecomment-326482505
 
 
   @blueorangutan test
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary storage usage metrics

2017-08-31 Thread git
blueorangutan commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary 
storage usage metrics
URL: https://github.com/apache/cloudstack/pull/2035#issuecomment-326482515
 
 
   @nvazquez a Trillian-Jenkins test job (centos7 mgmt + kvm-centos7) has been 
kicked to run smoke tests
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary storage usage metrics

2017-08-31 Thread git
blueorangutan commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary 
storage usage metrics
URL: https://github.com/apache/cloudstack/pull/2035#issuecomment-326482459
 
 
   Packaging result: ?centos6 ?centos7 ?debian. JID-1066
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] nvazquez commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary storage usage metrics

2017-08-31 Thread git
nvazquez commented on issue #2035: CLOUDSTACK-9867:VM snapshot on primary 
storage usage metrics
URL: https://github.com/apache/cloudstack/pull/2035#issuecomment-326480380
 
 
   @blueorangutan package
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2254: CLOUDSTACK-10058: Error while opening the Settings tab in Secondary storage

2017-08-31 Thread git
blueorangutan commented on issue #2254: CLOUDSTACK-10058: Error while opening 
the Settings tab in Secondary storage
URL: https://github.com/apache/cloudstack/pull/2254#issuecomment-326467737
 
 
   Trillian test result (tid-1477)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 39750 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr2254-t1477-kvm-centos7.zip
   Intermitten failure detected: /marvin/tests/smoke/test_hostha_kvm.py
   Intermitten failure detected: /marvin/tests/smoke/test_iso.py
   Intermitten failure detected: /marvin/tests/smoke/test_privategw_acl.py
   Intermitten failure detected: /marvin/tests/smoke/test_vpc_redundant.py
   Intermitten failure detected: /marvin/tests/smoke/test_vpc_vpn.py
   Test completed. 57 look OK, 5 have error(s)
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   test_01_vpc_remote_access_vpn | `Failure` | 55.70 | test_vpc_vpn.py
   test_02_redundant_VPC_default_routes | `Failure` | 852.51 | 
test_vpc_redundant.py
   test_04_rvpc_privategw_static_routes | `Failure` | 319.24 | 
test_privategw_acl.py
   test_05_iso_permissions | `Failure` | 0.03 | test_iso.py
   test_02_edit_iso | `Failure` | 0.03 | test_iso.py
   test_ha_kvm_host_recovering | `Failure` | 625.99 | test_hostha_kvm.py
   test_ha_kvm_host_degraded | `Error` | 32.02 | test_hostha_kvm.py
   test_change_service_offering_for_vm_with_snapshots | Skipped | 0.00 | 
test_vm_snapshots.py
   test_09_copy_delete_template | Skipped | 0.01 | test_templates.py
   test_06_copy_template | Skipped | 0.00 | test_templates.py
   test_static_role_account_acls | Skipped | 0.01 | test_staticroles.py
   test_11_ss_nfs_version_on_ssvm | Skipped | 0.02 | test_ssvm.py
   test_01_scale_vm | Skipped | 0.00 | test_scale_vm.py
   test_01_primary_storage_iscsi | Skipped | 0.02 | test_primary_storage.py
   test_vm_nic_adapter_vmxnet3 | Skipped | 0.00 | test_nic_adapter_type.py
   test_nested_virtualization_vmware | Skipped | 0.00 | 
test_nested_virtualization.py
   test_06_copy_iso | Skipped | 0.00 | test_iso.py
   test_list_ha_for_host_valid | Skipped | 0.01 | test_hostha_simulator.py
   test_list_ha_for_host_invalid | Skipped | 0.02 | test_hostha_simulator.py
   test_list_ha_for_host | Skipped | 0.01 | test_hostha_simulator.py
   test_hostha_enable_feature_without_setting_provider | Skipped | 0.01 | 
test_hostha_simulator.py
   test_hostha_enable_feature_valid | Skipped | 0.01 | test_hostha_simulator.py
   test_hostha_disable_feature_valid | Skipped | 0.02 | test_hostha_simulator.py
   test_hostha_configure_invalid_provider | Skipped | 0.01 | 
test_hostha_simulator.py
   test_hostha_configure_default_driver | Skipped | 0.01 | 
test_hostha_simulator.py
   test_ha_verify_fsm_recovering | Skipped | 0.01 | test_hostha_simulator.py
   test_ha_verify_fsm_fenced | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_verify_fsm_degraded | Skipped | 0.01 | test_hostha_simulator.py
   test_ha_verify_fsm_available | Skipped | 0.01 | test_hostha_simulator.py
   test_ha_multiple_mgmt_server_ownership | Skipped | 0.01 | 
test_hostha_simulator.py
   test_ha_list_providers | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_enable_feature_invalid | Skipped | 0.01 | test_hostha_simulator.py
   test_ha_disable_feature_invalid | Skipped | 0.01 | test_hostha_simulator.py
   test_ha_configure_enabledisable_across_clusterzones | Skipped | 0.01 | 
test_hostha_simulator.py
   test_configure_ha_provider_valid | Skipped | 0.01 | test_hostha_simulator.py
   test_configure_ha_provider_invalid | Skipped | 0.02 | 
test_hostha_simulator.py
   test_deploy_vgpu_enabled_vm | Skipped | 0.02 | test_deploy_vgpu_enabled_vm.py
   test_3d_gpu_support | Skipped | 0.02 | test_deploy_vgpu_enabled_vm.py
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2092: CLOUDSTACK-8599: [VMware] Successful migration was reported as failure when vCenter session timed out

2017-08-31 Thread git
   test_deploy_vgpu_enabled_vm | Skipped | 1.36 | test_deploy_vgpu_enabled_vm.py
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #2188: CLOUDSTACK-10004 : On deletion, Vmware volume snapshots are left behind with message 'the snapshot has child, can't delete it on the storage'

2017-08-31 Thread git
 | test_deploy_vgpu_enabled_vm.py
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] blueorangutan commented on issue #876: CLOUDSTACK-8865: Adding SR doesn't create Storage_pool_host_ref entry?

2017-08-31 Thread git
blueorangutan commented on issue #876: CLOUDSTACK-8865: Adding SR doesn't 
create Storage_pool_host_ref entry?
URL: https://github.com/apache/cloudstack/pull/876#issuecomment-326438631
 
 
   Trillian test result (tid-1473)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 42025 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr876-t1473-kvm-centos7.zip
   Intermitten failure detected: /marvin/tests/smoke/test_hostha_kvm.py
   Intermitten failure detected: /marvin/tests/smoke/test_iso.py
   Intermitten failure detected: /marvin/tests/smoke/test_privategw_acl.py
   Intermitten failure detected: /marvin/tests/smoke/test_vpc_redundant.py
   Intermitten failure detected: /marvin/tests/smoke/test_vpc_vpn.py
   Test completed. 57 look OK, 5 have error(s)
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   test_01_vpc_remote_access_vpn | `Failure` | 50.88 | test_vpc_vpn.py
   test_05_rvpc_multi_tiers | `Failure` | 187.04 | test_vpc_redundant.py
   test_02_redundant_VPC_default_routes | `Failure` | 859.18 | 
test_vpc_redundant.py
   test_01_create_redundant_VPC_2tiers_4VMs_4IPs_4PF_ACL | `Failure` | 378.88 | 
test_vpc_redundant.py
   test_04_rvpc_privategw_static_routes | `Failure` | 346.07 | 
test_privategw_acl.py
   test_05_iso_permissions | `Failure` | 0.06 | test_iso.py
   test_02_edit_iso | `Failure` | 0.06 | test_iso.py
   test_hostha_enable_ha_when_host_disabled | `Failure` | 5.68 | 
test_hostha_kvm.py
   test_disable_oobm_ha_state_ineligible | `Failure` | 5.83 | test_hostha_kvm.py
   test_ha_kvm_host_degraded | `Error` | 27.55 | test_hostha_kvm.py
   test_change_service_offering_for_vm_with_snapshots | Skipped | 0.00 | 
test_vm_snapshots.py
   test_09_copy_delete_template | Skipped | 0.02 | test_templates.py
   test_06_copy_template | Skipped | 0.00 | test_templates.py
   test_static_role_account_acls | Skipped | 0.02 | test_staticroles.py
   test_11_ss_nfs_version_on_ssvm | Skipped | 0.02 | test_ssvm.py
   test_01_scale_vm | Skipped | 0.00 | test_scale_vm.py
   test_01_primary_storage_iscsi | Skipped | 0.09 | test_primary_storage.py
   test_vm_nic_adapter_vmxnet3 | Skipped | 0.00 | test_nic_adapter_type.py
   test_nested_virtualization_vmware | Skipped | 0.00 | 
test_nested_virtualization.py
   test_06_copy_iso | Skipped | 0.00 | test_iso.py
   test_list_ha_for_host_valid | Skipped | 0.02 | test_hostha_simulator.py
   test_list_ha_for_host_invalid | Skipped | 0.02 | test_hostha_simulator.py
   test_list_ha_for_host | Skipped | 0.02 | test_hostha_simulator.py
   test_hostha_enable_feature_without_setting_provider | Skipped | 0.02 | 
test_hostha_simulator.py
   test_hostha_enable_feature_valid | Skipped | 0.02 | test_hostha_simulator.py
   test_hostha_disable_feature_valid | Skipped | 0.02 | test_hostha_simulator.py
   test_hostha_configure_invalid_provider | Skipped | 0.02 | 
test_hostha_simulator.py
   test_hostha_configure_default_driver | Skipped | 0.03 | 
test_hostha_simulator.py
   test_ha_verify_fsm_recovering | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_verify_fsm_fenced | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_verify_fsm_degraded | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_verify_fsm_available | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_multiple_mgmt_server_ownership | Skipped | 0.03 | 
test_hostha_simulator.py
   test_ha_list_providers | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_enable_feature_invalid | Skipped | 0.02 | test_hostha_simulator.py
   test_ha_disable_feature_invalid | Skipped | 0.03 | test_hostha_simulator.py
   test_ha_configure_enabledisable_across_clusterzones | Skipped | 0.03 | 
test_hostha_simulator.py
   test_configure_ha_provider_valid | Skipped | 0.03 | test_hostha_simulator.py
   test_configure_ha_provider_invalid | Skipped | 0.03 | 
test_hostha_simulator.py
   test_deploy_vgpu_enabled_vm | Skipped | 0.04 | test_deploy_vgpu_enabled_vm.py
   test_3d_gpu_support | Skipped | 0.04 | test_deploy_vgpu_enabled_vm.py
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


<    7   8   9   10   11   12   13   14   15   16   >