Skip to content

Conversation

@sudhansu7
Copy link

@sudhansu7 sudhansu7 commented Dec 2, 2016

Issue:
NIC adapter type becomes e1000 , even after changing the global parameter "vmware.systemvm.nic.device.type" to vmxnet3.

Description

Repro steps:-

-> Set global parameter "vmware.systemvm.nic.device.type" to vmxnet3.
-> Created a VPC network and deployed a VM using the same network.
-> Checked the router details and found that for private network , it was showing nic adapter type as VMXNET3 and for other networks (public and guest) it was showing as E1000.
-> Rebooted the VPC network and checked it again, it was same as earlier.

/vmfs/volumes/3e5dffc5-9b91346e/r-2805-VM # grep virtualDev r-2805-VM.vmx
pciBridge4.virtualDev = "pcieRootPort"
pciBridge5.virtualDev = "pcieRootPort"
pciBridge6.virtualDev = "pcieRootPort"
pciBridge7.virtualDev = "pcieRootPort"
scsi0.virtualDev = "lsilogic"
ethernet0.virtualDev = "vmxnet3"
ethernet1.virtualDev = "e1000"
ethernet2.virtualDev = "e1000"
ethernet3.virtualDev = "e1000"

Root Cause:

While preparing PlugNicCommand for VPC Network, NIC adapter type is not used.

PlugNicCommand:

        "com.cloud.agent.api.PlugNicCommand": {
            "nic": {
                "deviceId": 1,
                "networkRateMbps": 200,
                "defaultNic": true,
                "pxeDisable": true,
                "nicUuid": "9ae41bb1-dc22-4489-95f4-2c2659c99486",
                "uuid": "4ffdfb14-7d47-4ffd-b7fb-85f171c349ff",
                "ip": "10.104.92.161",
                "netmask": "255.255.254.0",
                "gateway": "10.104.92.1",
                "mac": "06:f8:de:00:00:14",
                "broadcastType": "Vlan",
                "type": "Public",
                "broadcastUri": "vlan://untagged",
                "isolationUri": "vlan://untagged",
                "isSecurityGroupEnabled": false
            },
            "instanceName": "r-2784-VM",
            "vmType": "DomainRouter",
            "wait": 0
        }

Code Snippet:

public class VpcVirtualNetworkApplianceManagerImpl extends VirtualNetworkApplianceManagerImpl implements VpcVirtualNetworkApplianceManager {

...
...

 @Override
 public boolean finalizeCommandsOnStart(Commands cmds, VirtualMachineProfile profile) {

...
...
//3) PREPARE PLUG NIC COMMANDS
try {
//add VPC router to public networks
...
..

               final PlugNicCommand plugNicCmd = new PlugNicCommand(_nwHelper.getNicTO(domainRouterVO, publicNic.getNetworkId(), publicNic.getBroadcastUri().toString()),
                        domainRouterVO.getInstanceName(), domainRouterVO.getType());

...
...

        //add VPC router to guest networks
        for (Pair<Nic, Network> nicNtwk : guestNics) {
            Nic guestNic = nicNtwk.first();
            //plug guest nic
            final PlugNicCommand plugNicCmd = new PlugNicCommand(_nwHelper.getNicTO(domainRouterVO, guestNic.getNetworkId(), null), domainRouterVO.getInstanceName(), domainRouterVO.getType());
            cmds.addCommand(plugNicCmd);

...
}
...
...
}

Solution:
Fetch and add NIC adapter type to PlugNicCommand.

Command After fix:

   {
     "com.cloud.agent.api.PlugNicCommand":{
        "nic":{
           "deviceId":2,
           "networkRateMbps":200,
           "defaultNic":false,
           "pxeDisable":true,
           "nicUuid":"06c1b9dc-9061-4bbf-8ad3-60baa3ee3e9a",
           "uuid":"381fc075-4035-40c3-a09c-84baf6f1a0b2",
           "ip":"10.147.100.10",
           "netmask":"255.255.255.0",
           "gateway":"10.147.100.1",
           "mac":"06:0f:88:00:01:48",
           "broadcastType":"Vlan",
           "type":"Guest",
           "broadcastUri":"vlan://100",
           "isolationUri":"vlan://100",
           "isSecurityGroupEnabled":false
        },
        "instanceName":"r-2808-VM",
        "vmType":"DomainRouter",
        "details":{
           "nicAdapter":"Vmxnet3",
           "vmware.reserve.cpu":"false",
           "vmware.reserve.mem":"false"
        },
        "wait":0
     }
  },

Before:

/vmfs/volumes/3e5dffc5-9b91346e/r-2805-VM # grep virtualDev r-2805-VM.vmx
pciBridge4.virtualDev = "pcieRootPort"
pciBridge5.virtualDev = "pcieRootPort"
pciBridge6.virtualDev = "pcieRootPort"
pciBridge7.virtualDev = "pcieRootPort"
scsi0.virtualDev = "lsilogic"
ethernet0.virtualDev = "vmxnet3"
ethernet1.virtualDev = "e1000"
ethernet2.virtualDev = "e1000"
ethernet3.virtualDev = "e1000"

After

/vmfs/volumes/3e5dffc5-9b91346e/r-2808-VM # grep virtualDev r-2808-VM.vmx
pciBridge4.virtualDev = "pcieRootPort"
pciBridge5.virtualDev = "pcieRootPort"
pciBridge6.virtualDev = "pcieRootPort"
pciBridge7.virtualDev = "pcieRootPort"
scsi0.virtualDev = "lsilogic"
ethernet0.virtualDev = "vmxnet3"
ethernet1.virtualDev = "vmxnet3"
ethernet2.virtualDev = "vmxnet3"
ethernet3.virtualDev = "vmxnet3"

… the global parameter

 "vmware.systemvm.nic.device.type" to vmxnet3 for VPC VR

Added NicAdapter details in PlugNicCommmand.
@sudhansu7 sudhansu7 changed the base branch from master to 4.9 December 2, 2016 09:56
@rohityadavcloud
Copy link
Member

Thanks @sudhansu7 good catch
@blueorangutan package

@blueorangutan
Copy link

@rhtyd a Jenkins job has been kicked to build packages. I'll keep you posted as I make progress.

@blueorangutan
Copy link

Packaging result: ✔centos6 ✔centos7 ✔debian. JID-316

@rohityadavcloud
Copy link
Member

@blueorangutan test centos7 vmware-55u3

@blueorangutan
Copy link

@rhtyd a Trillian-Jenkins test job (centos7 mgmt + vmware-55u3) has been kicked to run smoke tests

@blueorangutan
Copy link

Trillian test result (tid-557)
Environment: vmware-55u3 (x2), Advanced Networking with Mgmt server 7
Total time taken: 39675 seconds
Marvin logs: https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr1810-t557-vmware-55u3.zip
Test completed. 43 look ok, 5 have error(s)

Test Result Time (s) Test File
test_01_create_redundant_VPC_2tiers_4VMs_4IPs_4PF_ACL Failure 826.27 test_vpc_redundant.py
test_04_rvpc_privategw_static_routes Failure 906.88 test_privategw_acl.py
test_02_vpc_privategw_static_routes Failure 302.86 test_privategw_acl.py
test_04_rvpc_internallb_haproxy_stats_on_all_interfaces Failure 1082.10 test_internal_lb.py
test_01_vpc_site2site_vpn Error 581.77 test_vpc_vpn.py
test_01_redundant_vpc_site2site_vpn Error 893.11 test_vpc_vpn.py
test_03_create_redundant_VPC_1tier_2VMs_2IPs_2PF_ACL_reboot_routers Error 317.91 test_vpc_redundant.py
test_06_download_detached_volume Error 85.69 test_volumes.py
test_01_create_volume Error 961.05 test_volumes.py
test_03_vpc_privategw_restart_vpc_cleanup Error 818.12 test_privategw_acl.py
test_03_vpc_privategw_restart_vpc_cleanup Error 873.62 test_privategw_acl.py
test_01_vpc_remote_access_vpn Success 252.00 test_vpc_vpn.py
test_02_VPC_default_routes Success 434.61 test_vpc_router_nics.py
test_01_VPC_nics_after_destroy Success 826.01 test_vpc_router_nics.py
test_05_rvpc_multi_tiers Success 802.88 test_vpc_redundant.py
test_04_rvpc_network_garbage_collector_nics Success 1608.69 test_vpc_redundant.py
test_02_redundant_VPC_default_routes Success 826.78 test_vpc_redundant.py
test_09_delete_detached_volume Success 30.79 test_volumes.py
test_05_detach_volume Success 110.31 test_volumes.py
test_04_delete_attached_volume Success 15.17 test_volumes.py
test_03_download_attached_volume Success 20.23 test_volumes.py
test_02_attach_volume Success 63.85 test_volumes.py
test_03_delete_vm_snapshots Success 275.15 test_vm_snapshots.py
test_02_revert_vm_snapshots Success 237.27 test_vm_snapshots.py
test_01_test_vm_volume_snapshot Success 206.53 test_vm_snapshots.py
test_01_create_vm_snapshots Success 161.60 test_vm_snapshots.py
test_deploy_vm_multiple Success 363.22 test_vm_life_cycle.py
test_deploy_vm Success 0.03 test_vm_life_cycle.py
test_advZoneVirtualRouter Success 0.02 test_vm_life_cycle.py
test_10_attachAndDetach_iso Success 26.78 test_vm_life_cycle.py
test_09_expunge_vm Success 125.21 test_vm_life_cycle.py
test_08_migrate_vm Success 95.95 test_vm_life_cycle.py
test_07_restore_vm Success 0.08 test_vm_life_cycle.py
test_06_destroy_vm Success 10.12 test_vm_life_cycle.py
test_03_reboot_vm Success 5.11 test_vm_life_cycle.py
test_02_start_vm Success 25.21 test_vm_life_cycle.py
test_01_stop_vm Success 5.10 test_vm_life_cycle.py
test_CreateTemplateWithDuplicateName Success 422.26 test_templates.py
test_08_list_system_templates Success 0.03 test_templates.py
test_07_list_public_templates Success 0.03 test_templates.py
test_05_template_permissions Success 0.05 test_templates.py
test_04_extract_template Success 15.26 test_templates.py
test_03_delete_template Success 5.09 test_templates.py
test_02_edit_template Success 90.16 test_templates.py
test_01_create_template Success 226.33 test_templates.py
test_10_destroy_cpvm Success 301.66 test_ssvm.py
test_09_destroy_ssvm Success 304.86 test_ssvm.py
test_08_reboot_cpvm Success 156.34 test_ssvm.py
test_07_reboot_ssvm Success 158.33 test_ssvm.py
test_06_stop_cpvm Success 242.06 test_ssvm.py
test_05_stop_ssvm Success 214.41 test_ssvm.py
test_04_cpvm_internals Success 1.03 test_ssvm.py
test_03_ssvm_internals Success 3.22 test_ssvm.py
test_02_list_cpvm_vm Success 0.09 test_ssvm.py
test_01_list_sec_storage_vm Success 0.10 test_ssvm.py
test_01_snapshot_root_disk Success 26.02 test_snapshots.py
test_04_change_offering_small Success 126.83 test_service_offerings.py
test_03_delete_service_offering Success 0.03 test_service_offerings.py
test_02_edit_service_offering Success 0.06 test_service_offerings.py
test_01_create_service_offering Success 0.10 test_service_offerings.py
test_02_sys_template_ready Success 0.13 test_secondary_storage.py
test_01_sys_vm_start Success 0.13 test_secondary_storage.py
test_09_reboot_router Success 171.31 test_routers.py
test_08_start_router Success 155.97 test_routers.py
test_07_stop_router Success 30.23 test_routers.py
test_06_router_advanced Success 0.04 test_routers.py
test_05_router_basic Success 0.03 test_routers.py
test_04_restart_network_wo_cleanup Success 5.54 test_routers.py
test_03_restart_network_cleanup Success 145.81 test_routers.py
test_02_router_internal_adv Success 0.88 test_routers.py
test_01_router_internal_basic Success 0.51 test_routers.py
test_router_dns_guestipquery Success 78.98 test_router_dns.py
test_router_dns_externalipquery Success 0.07 test_router_dns.py
test_router_dhcphosts Success 157.29 test_router_dhcphosts.py
test_router_dhcp_opts Success 21.33 test_router_dhcphosts.py
test_01_updatevolumedetail Success 0.07 test_resource_detail.py
test_01_reset_vm_on_reboot Success 30.27 test_reset_vm_on_reboot.py
test_createRegion Success 0.03 test_regions.py
test_create_pvlan_network Success 5.16 test_pvlan.py
test_dedicatePublicIpRange Success 0.29 test_public_ip_range.py
test_01_vpc_privategw_acl Success 289.13 test_privategw_acl.py
test_01_primary_storage_nfs Success 38.52 test_primary_storage.py
test_createPortablePublicIPRange Success 15.24 test_portable_publicip.py
test_createPortablePublicIPAcquire Success 15.36 test_portable_publicip.py
test_isolate_network_password_server Success 113.80 test_password_server.py
test_UpdateStorageOverProvisioningFactor Success 0.17 test_over_provisioning.py
test_oobm_zchange_password Success 26.05 test_outofbandmanagement.py
test_oobm_multiple_mgmt_server_ownership Success 11.96 test_outofbandmanagement.py
test_oobm_issue_power_status Success 5.39 test_outofbandmanagement.py
test_oobm_issue_power_soft Success 15.54 test_outofbandmanagement.py
test_oobm_issue_power_reset Success 10.39 test_outofbandmanagement.py
test_oobm_issue_power_on Success 15.56 test_outofbandmanagement.py
test_oobm_issue_power_off Success 15.33 test_outofbandmanagement.py
test_oobm_issue_power_cycle Success 15.28 test_outofbandmanagement.py
test_oobm_enabledisable_across_clusterzones Success 67.28 test_outofbandmanagement.py
test_oobm_enable_feature_valid Success 5.15 test_outofbandmanagement.py
test_oobm_enable_feature_invalid Success 0.08 test_outofbandmanagement.py
test_oobm_disable_feature_valid Success 0.13 test_outofbandmanagement.py
test_oobm_disable_feature_invalid Success 0.10 test_outofbandmanagement.py
test_oobm_configure_invalid_driver Success 0.08 test_outofbandmanagement.py
test_oobm_configure_default_driver Success 0.08 test_outofbandmanagement.py
test_oobm_background_powerstate_sync Success 29.46 test_outofbandmanagement.py
test_extendPhysicalNetworkVlan Success 15.29 test_non_contigiousvlan.py
test_01_nic Success 1089.93 test_nic.py
test_releaseIP Success 333.43 test_network.py
test_reboot_router Success 830.60 test_network.py
test_public_ip_user_account Success 10.21 test_network.py
test_public_ip_admin_account Success 40.21 test_network.py
test_network_rules_acquired_public_ip_3_Load_Balancer_Rule Success 76.57 test_network.py
test_network_rules_acquired_public_ip_2_nat_rule Success 61.36 test_network.py
test_network_rules_acquired_public_ip_1_static_nat_rule Success 125.06 test_network.py
test_delete_account Success 323.01 test_network.py
test_02_port_fwd_on_non_src_nat Success 55.58 test_network.py
test_01_port_fwd_on_src_nat Success 112.05 test_network.py
test_nic_secondaryip_add_remove Success 282.89 test_multipleips_per_nic.py
login_test_saml_user Success 21.44 test_login.py
test_assign_and_removal_lb Success 148.37 test_loadbalance.py
test_02_create_lb_rule_non_nat Success 207.17 test_loadbalance.py
test_01_create_lb_rule_src_nat Success 207.63 test_loadbalance.py
test_03_list_snapshots Success 0.05 test_list_ids_parameter.py
test_02_list_templates Success 0.03 test_list_ids_parameter.py
test_01_list_volumes Success 0.02 test_list_ids_parameter.py
test_07_list_default_iso Success 0.04 test_iso.py
test_05_iso_permissions Success 0.05 test_iso.py
test_04_extract_Iso Success 5.16 test_iso.py
test_03_delete_iso Success 95.16 test_iso.py
test_02_edit_iso Success 0.04 test_iso.py
test_01_create_iso Success 21.32 test_iso.py
test_03_vpc_internallb_haproxy_stats_on_all_interfaces Success 454.25 test_internal_lb.py
test_02_internallb_roundrobin_1RVPC_3VM_HTTP_port80 Success 1199.35 test_internal_lb.py
test_01_internallb_roundrobin_1VPC_3VM_HTTP_port80 Success 853.03 test_internal_lb.py
test_dedicateGuestVlanRange Success 10.19 test_guest_vlan_range.py
test_UpdateConfigParamWithScope Success 0.11 test_global_settings.py
test_rolepermission_lifecycle_update Success 6.46 test_dynamicroles.py
test_rolepermission_lifecycle_list Success 6.25 test_dynamicroles.py
test_rolepermission_lifecycle_delete Success 6.17 test_dynamicroles.py
test_rolepermission_lifecycle_create Success 6.18 test_dynamicroles.py
test_rolepermission_lifecycle_concurrent_updates Success 6.27 test_dynamicroles.py
test_role_lifecycle_update_role_inuse Success 6.19 test_dynamicroles.py
test_role_lifecycle_update Success 6.29 test_dynamicroles.py
test_role_lifecycle_list Success 6.25 test_dynamicroles.py
test_role_lifecycle_delete Success 6.23 test_dynamicroles.py
test_role_lifecycle_create Success 6.24 test_dynamicroles.py
test_role_inuse_deletion Success 6.19 test_dynamicroles.py
test_role_account_acls_multiple_mgmt_servers Success 7.54 test_dynamicroles.py
test_role_account_acls Success 7.82 test_dynamicroles.py
test_default_role_deletion Success 6.29 test_dynamicroles.py
test_04_create_fat_type_disk_offering Success 0.06 test_disk_offerings.py
test_03_delete_disk_offering Success 0.03 test_disk_offerings.py
test_02_edit_disk_offering Success 0.04 test_disk_offerings.py
test_02_create_sparse_type_disk_offering Success 0.07 test_disk_offerings.py
test_01_create_disk_offering Success 0.08 test_disk_offerings.py
test_deployvm_userdispersing Success 65.62 test_deploy_vms_with_varied_deploymentplanners.py
test_deployvm_userconcentrated Success 125.87 test_deploy_vms_with_varied_deploymentplanners.py
test_deployvm_firstfit Success 417.67 test_deploy_vms_with_varied_deploymentplanners.py
test_deployvm_userdata_post Success 95.67 test_deploy_vm_with_userdata.py
test_deployvm_userdata Success 181.75 test_deploy_vm_with_userdata.py
test_02_deploy_vm_root_resize Success 6.15 test_deploy_vm_root_resize.py
test_01_deploy_vm_root_resize Success 6.22 test_deploy_vm_root_resize.py
test_00_deploy_vm_root_resize Success 6.25 test_deploy_vm_root_resize.py
test_deploy_vm_from_iso Success 262.60 test_deploy_vm_iso.py
test_DeployVmAntiAffinityGroup Success 201.34 test_affinity_groups.py
test_08_resize_volume Skipped 10.11 test_volumes.py
test_07_resize_fail Skipped 15.22 test_volumes.py
test_06_copy_template Skipped 0.00 test_templates.py
test_static_role_account_acls Skipped 0.02 test_staticroles.py
test_01_scale_vm Skipped 66.36 test_scale_vm.py
test_01_primary_storage_iscsi Skipped 0.04 test_primary_storage.py
test_06_copy_iso Skipped 0.00 test_iso.py
test_deploy_vgpu_enabled_vm Skipped 0.01 test_deploy_vgpu_enabled_vm.py

@rohityadavcloud
Copy link
Member

@blueorangutan package

@blueorangutan
Copy link

@rhtyd a Jenkins job has been kicked to build packages. I'll keep you posted as I make progress.

@blueorangutan
Copy link

Packaging result: ✔centos6 ✔centos7 ✖debian. JID-335

@rohityadavcloud
Copy link
Member

@blueorangutan test centos7 vmware-55u3

@blueorangutan
Copy link

@rhtyd a Trillian-Jenkins test job (centos7 mgmt + vmware-55u3) has been kicked to run smoke tests

@rohityadavcloud
Copy link
Member

@blueorangutan test

@blueorangutan
Copy link

@rhtyd a Trillian-Jenkins test job (centos7 mgmt + kvm-centos7) has been kicked to run smoke tests

@blueorangutan
Copy link

Trillian test result (tid-609)
Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
Total time taken: 30242 seconds
Marvin logs: https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr1810-t609-kvm-centos7.zip
Test completed. 40 look ok, 8 have error(s)

Test Result Time (s) Test File
test_02_VPC_default_routes Failure 918.70 test_vpc_router_nics.py
test_01_VPC_nics_after_destroy Failure 1024.81 test_vpc_router_nics.py
test_05_rvpc_multi_tiers Failure 184.45 test_vpc_redundant.py
test_04_rvpc_network_garbage_collector_nics Failure 118.30 test_vpc_redundant.py
test_03_create_redundant_VPC_1tier_2VMs_2IPs_2PF_ACL_reboot_routers Failure 108.84 test_vpc_redundant.py
test_02_redundant_VPC_default_routes Failure 154.25 test_vpc_redundant.py
test_01_create_redundant_VPC_2tiers_4VMs_4IPs_4PF_ACL Failure 144.10 test_vpc_redundant.py
test_router_dhcphosts Failure 63.01 test_router_dhcphosts.py
test_04_rvpc_privategw_static_routes Failure 1206.46 test_privategw_acl.py
test_03_vpc_privategw_restart_vpc_cleanup Failure 1060.51 test_privategw_acl.py
test_02_vpc_privategw_static_routes Failure 1045.67 test_privategw_acl.py
test_isolate_network_password_server Failure 95.95 test_password_server.py
test_02_internallb_roundrobin_1RVPC_3VM_HTTP_port80 Failure 353.55 test_internal_lb.py
test_01_internallb_roundrobin_1VPC_3VM_HTTP_port80 Failure 303.17 test_internal_lb.py
test_01_vpc_site2site_vpn Error 393.45 test_vpc_vpn.py
test_01_redundant_vpc_site2site_vpn Error 493.53 test_vpc_vpn.py
test_05_rvpc_multi_tiers Error 356.02 test_vpc_redundant.py
test_03_delete_template Error 5.09 test_templates.py
ContextSuite context=TestRouterDHCPHosts>:teardown Error 108.41 test_router_dhcphosts.py
test_04_rvpc_internallb_haproxy_stats_on_all_interfaces Error 277.25 test_internal_lb.py
test_03_vpc_internallb_haproxy_stats_on_all_interfaces Error 227.05 test_internal_lb.py
test_01_vpc_remote_access_vpn Success 71.20 test_vpc_vpn.py
test_09_delete_detached_volume Success 15.53 test_volumes.py
test_08_resize_volume Success 15.41 test_volumes.py
test_07_resize_fail Success 21.00 test_volumes.py
test_06_download_detached_volume Success 15.34 test_volumes.py
test_05_detach_volume Success 100.26 test_volumes.py
test_04_delete_attached_volume Success 10.21 test_volumes.py
test_03_download_attached_volume Success 15.31 test_volumes.py
test_02_attach_volume Success 73.97 test_volumes.py
test_01_create_volume Success 712.53 test_volumes.py
test_deploy_vm_multiple Success 252.98 test_vm_life_cycle.py
test_deploy_vm Success 0.03 test_vm_life_cycle.py
test_advZoneVirtualRouter Success 0.03 test_vm_life_cycle.py
test_10_attachAndDetach_iso Success 26.80 test_vm_life_cycle.py
test_09_expunge_vm Success 125.23 test_vm_life_cycle.py
test_08_migrate_vm Success 40.96 test_vm_life_cycle.py
test_07_restore_vm Success 0.13 test_vm_life_cycle.py
test_06_destroy_vm Success 125.83 test_vm_life_cycle.py
test_03_reboot_vm Success 125.83 test_vm_life_cycle.py
test_02_start_vm Success 10.18 test_vm_life_cycle.py
test_01_stop_vm Success 40.32 test_vm_life_cycle.py
test_CreateTemplateWithDuplicateName Success 95.78 test_templates.py
test_08_list_system_templates Success 0.03 test_templates.py
test_07_list_public_templates Success 0.04 test_templates.py
test_05_template_permissions Success 0.06 test_templates.py
test_04_extract_template Success 5.20 test_templates.py
test_02_edit_template Success 90.18 test_templates.py
test_01_create_template Success 65.57 test_templates.py
test_10_destroy_cpvm Success 166.75 test_ssvm.py
test_09_destroy_ssvm Success 193.93 test_ssvm.py
test_08_reboot_cpvm Success 101.57 test_ssvm.py
test_07_reboot_ssvm Success 133.56 test_ssvm.py
test_06_stop_cpvm Success 131.74 test_ssvm.py
test_05_stop_ssvm Success 134.13 test_ssvm.py
test_04_cpvm_internals Success 1.20 test_ssvm.py
test_03_ssvm_internals Success 3.42 test_ssvm.py
test_02_list_cpvm_vm Success 0.12 test_ssvm.py
test_01_list_sec_storage_vm Success 0.13 test_ssvm.py
test_01_snapshot_root_disk Success 11.23 test_snapshots.py
test_04_change_offering_small Success 240.27 test_service_offerings.py
test_03_delete_service_offering Success 0.04 test_service_offerings.py
test_02_edit_service_offering Success 0.06 test_service_offerings.py
test_01_create_service_offering Success 0.11 test_service_offerings.py
test_02_sys_template_ready Success 0.13 test_secondary_storage.py
test_01_sys_vm_start Success 0.18 test_secondary_storage.py
test_09_reboot_router Success 40.36 test_routers.py
test_08_start_router Success 30.31 test_routers.py
test_07_stop_router Success 10.18 test_routers.py
test_06_router_advanced Success 0.07 test_routers.py
test_05_router_basic Success 0.04 test_routers.py
test_04_restart_network_wo_cleanup Success 5.73 test_routers.py
test_03_restart_network_cleanup Success 60.56 test_routers.py
test_02_router_internal_adv Success 1.03 test_routers.py
test_01_router_internal_basic Success 0.58 test_routers.py
test_router_dns_guestipquery Success 76.73 test_router_dns.py
test_router_dns_externalipquery Success 0.08 test_router_dns.py
test_router_dhcp_opts Success 21.70 test_router_dhcphosts.py
test_01_updatevolumedetail Success 0.08 test_resource_detail.py
test_01_reset_vm_on_reboot Success 130.97 test_reset_vm_on_reboot.py
test_createRegion Success 0.04 test_regions.py
test_create_pvlan_network Success 5.22 test_pvlan.py
test_dedicatePublicIpRange Success 0.42 test_public_ip_range.py
test_01_vpc_privategw_acl Success 97.51 test_privategw_acl.py
test_01_primary_storage_nfs Success 35.92 test_primary_storage.py
test_createPortablePublicIPRange Success 15.20 test_portable_publicip.py
test_createPortablePublicIPAcquire Success 15.43 test_portable_publicip.py
test_UpdateStorageOverProvisioningFactor Success 0.15 test_over_provisioning.py
test_oobm_zchange_password Success 30.72 test_outofbandmanagement.py
test_oobm_multiple_mgmt_server_ownership Success 16.34 test_outofbandmanagement.py
test_oobm_issue_power_status Success 10.24 test_outofbandmanagement.py
test_oobm_issue_power_soft Success 15.32 test_outofbandmanagement.py
test_oobm_issue_power_reset Success 15.31 test_outofbandmanagement.py
test_oobm_issue_power_on Success 15.32 test_outofbandmanagement.py
test_oobm_issue_power_off Success 15.31 test_outofbandmanagement.py
test_oobm_issue_power_cycle Success 15.33 test_outofbandmanagement.py
test_oobm_enabledisable_across_clusterzones Success 92.73 test_outofbandmanagement.py
test_oobm_enable_feature_valid Success 5.35 test_outofbandmanagement.py
test_oobm_enable_feature_invalid Success 0.09 test_outofbandmanagement.py
test_oobm_disable_feature_valid Success 5.18 test_outofbandmanagement.py
test_oobm_disable_feature_invalid Success 0.10 test_outofbandmanagement.py
test_oobm_configure_invalid_driver Success 0.08 test_outofbandmanagement.py
test_oobm_configure_default_driver Success 0.07 test_outofbandmanagement.py
test_oobm_background_powerstate_sync Success 29.45 test_outofbandmanagement.py
test_extendPhysicalNetworkVlan Success 15.43 test_non_contigiousvlan.py
test_01_nic Success 555.73 test_nic.py
test_releaseIP Success 288.18 test_network.py
test_reboot_router Success 433.79 test_network.py
test_public_ip_user_account Success 10.25 test_network.py
test_public_ip_admin_account Success 40.29 test_network.py
test_network_rules_acquired_public_ip_3_Load_Balancer_Rule Success 67.04 test_network.py
test_network_rules_acquired_public_ip_2_nat_rule Success 61.72 test_network.py
test_network_rules_acquired_public_ip_1_static_nat_rule Success 124.09 test_network.py
test_delete_account Success 302.98 test_network.py
test_02_port_fwd_on_non_src_nat Success 55.70 test_network.py
test_01_port_fwd_on_src_nat Success 112.37 test_network.py
test_nic_secondaryip_add_remove Success 227.75 test_multipleips_per_nic.py
login_test_saml_user Success 19.29 test_login.py
test_assign_and_removal_lb Success 133.56 test_loadbalance.py
test_02_create_lb_rule_non_nat Success 187.30 test_loadbalance.py
test_01_create_lb_rule_src_nat Success 217.92 test_loadbalance.py
test_03_list_snapshots Success 0.08 test_list_ids_parameter.py
test_02_list_templates Success 0.04 test_list_ids_parameter.py
test_01_list_volumes Success 0.03 test_list_ids_parameter.py
test_07_list_default_iso Success 0.06 test_iso.py
test_05_iso_permissions Success 0.06 test_iso.py
test_04_extract_Iso Success 5.15 test_iso.py
test_03_delete_iso Success 95.21 test_iso.py
test_02_edit_iso Success 0.06 test_iso.py
test_01_create_iso Success 21.03 test_iso.py
test_dedicateGuestVlanRange Success 10.27 test_guest_vlan_range.py
test_UpdateConfigParamWithScope Success 0.28 test_global_settings.py
test_rolepermission_lifecycle_update Success 6.14 test_dynamicroles.py
test_rolepermission_lifecycle_list Success 5.98 test_dynamicroles.py
test_rolepermission_lifecycle_delete Success 5.86 test_dynamicroles.py
test_rolepermission_lifecycle_create Success 6.49 test_dynamicroles.py
test_rolepermission_lifecycle_concurrent_updates Success 6.07 test_dynamicroles.py
test_role_lifecycle_update_role_inuse Success 6.06 test_dynamicroles.py
test_role_lifecycle_update Success 5.93 test_dynamicroles.py
test_role_lifecycle_list Success 5.88 test_dynamicroles.py
test_role_lifecycle_delete Success 10.92 test_dynamicroles.py
test_role_lifecycle_create Success 5.89 test_dynamicroles.py
test_role_inuse_deletion Success 5.87 test_dynamicroles.py
test_role_account_acls_multiple_mgmt_servers Success 8.11 test_dynamicroles.py
test_role_account_acls Success 8.22 test_dynamicroles.py
test_default_role_deletion Success 5.99 test_dynamicroles.py
test_04_create_fat_type_disk_offering Success 0.06 test_disk_offerings.py
test_03_delete_disk_offering Success 0.04 test_disk_offerings.py
test_02_edit_disk_offering Success 0.05 test_disk_offerings.py
test_02_create_sparse_type_disk_offering Success 0.07 test_disk_offerings.py
test_01_create_disk_offering Success 0.10 test_disk_offerings.py
test_deployvm_userdispersing Success 25.61 test_deploy_vms_with_varied_deploymentplanners.py
test_deployvm_userconcentrated Success 65.86 test_deploy_vms_with_varied_deploymentplanners.py
test_deployvm_firstfit Success 70.71 test_deploy_vms_with_varied_deploymentplanners.py
test_deployvm_userdata_post Success 10.46 test_deploy_vm_with_userdata.py
test_deployvm_userdata Success 106.06 test_deploy_vm_with_userdata.py
test_02_deploy_vm_root_resize Success 5.97 test_deploy_vm_root_resize.py
test_01_deploy_vm_root_resize Success 5.97 test_deploy_vm_root_resize.py
test_00_deploy_vm_root_resize Success 222.80 test_deploy_vm_root_resize.py
test_deploy_vm_from_iso Success 212.95 test_deploy_vm_iso.py
test_DeployVmAntiAffinityGroup Success 151.97 test_affinity_groups.py
test_03_delete_vm_snapshots Skipped 0.00 test_vm_snapshots.py
test_02_revert_vm_snapshots Skipped 0.00 test_vm_snapshots.py
test_01_test_vm_volume_snapshot Skipped 0.00 test_vm_snapshots.py
test_01_create_vm_snapshots Skipped 0.00 test_vm_snapshots.py
test_06_copy_template Skipped 0.00 test_templates.py
test_static_role_account_acls Skipped 0.02 test_staticroles.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_06_copy_iso Skipped 0.00 test_iso.py
test_deploy_vgpu_enabled_vm Skipped 0.00 test_deploy_vgpu_enabled_vm.py

@rohityadavcloud
Copy link
Member

@blueorangutan package

@blueorangutan
Copy link

@rhtyd a Jenkins job has been kicked to build packages. I'll keep you posted as I make progress.

@blueorangutan
Copy link

Packaging result: ✔centos6 ✔centos7 ✖debian. JID-357

@blueorangutan
Copy link

Trillian test result (tid-615)
Environment: vmware-55u3 (x2), Advanced Networking with Mgmt server 7
Total time taken: 37304 seconds
Marvin logs: https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr1810-t615-vmware-55u3.zip
Test completed. 40 look ok, 8 have error(s)

Test Result Time (s) Test File
test_02_VPC_default_routes Failure 1136.24 test_vpc_router_nics.py
test_01_VPC_nics_after_destroy Failure 1051.84 test_vpc_router_nics.py
test_05_rvpc_multi_tiers Failure 438.50 test_vpc_redundant.py
test_03_create_redundant_VPC_1tier_2VMs_2IPs_2PF_ACL_reboot_routers Failure 335.98 test_vpc_redundant.py
test_02_redundant_VPC_default_routes Failure 386.46 test_vpc_redundant.py
test_01_create_redundant_VPC_2tiers_4VMs_4IPs_4PF_ACL Failure 385.76 test_vpc_redundant.py
test_router_dhcphosts Failure 65.85 test_router_dhcphosts.py
test_04_rvpc_privategw_static_routes Failure 121.74 test_privategw_acl.py
test_03_vpc_privategw_restart_vpc_cleanup Failure 1424.86 test_privategw_acl.py
test_02_vpc_privategw_static_routes Failure 1384.86 test_privategw_acl.py
test_isolate_network_password_server Failure 71.33 test_password_server.py
test_04_rvpc_internallb_haproxy_stats_on_all_interfaces Failure 207.30 test_internal_lb.py
test_02_internallb_roundrobin_1RVPC_3VM_HTTP_port80 Failure 670.56 test_internal_lb.py
test_01_internallb_roundrobin_1VPC_3VM_HTTP_port80 Failure 585.43 test_internal_lb.py
test_01_vpc_site2site_vpn Error 609.87 test_vpc_vpn.py
test_01_redundant_vpc_site2site_vpn Error 810.91 test_vpc_vpn.py
test_05_rvpc_multi_tiers Error 525.05 test_vpc_redundant.py
test_04_rvpc_network_garbage_collector_nics Error 127.13 test_vpc_redundant.py
test_deploy_vm_multiple Error 330.14 test_vm_life_cycle.py
ContextSuite context=TestRouterDHCPHosts>:teardown Error 86.15 test_router_dhcphosts.py
test_03_vpc_internallb_haproxy_stats_on_all_interfaces Error 494.46 test_internal_lb.py
test_01_vpc_remote_access_vpn Success 176.92 test_vpc_vpn.py
test_09_delete_detached_volume Success 35.92 test_volumes.py
test_06_download_detached_volume Success 65.63 test_volumes.py
test_05_detach_volume Success 105.29 test_volumes.py
test_04_delete_attached_volume Success 15.29 test_volumes.py
test_03_download_attached_volume Success 20.35 test_volumes.py
test_02_attach_volume Success 63.86 test_volumes.py
test_01_create_volume Success 537.75 test_volumes.py
test_03_delete_vm_snapshots Success 275.24 test_vm_snapshots.py
test_02_revert_vm_snapshots Success 194.68 test_vm_snapshots.py
test_01_test_vm_volume_snapshot Success 166.89 test_vm_snapshots.py
test_01_create_vm_snapshots Success 165.23 test_vm_snapshots.py
test_deploy_vm Success 0.05 test_vm_life_cycle.py
test_advZoneVirtualRouter Success 0.04 test_vm_life_cycle.py
test_10_attachAndDetach_iso Success 27.09 test_vm_life_cycle.py
test_09_expunge_vm Success 125.27 test_vm_life_cycle.py
test_08_migrate_vm Success 71.49 test_vm_life_cycle.py
test_07_restore_vm Success 0.12 test_vm_life_cycle.py
test_06_destroy_vm Success 10.19 test_vm_life_cycle.py
test_03_reboot_vm Success 10.33 test_vm_life_cycle.py
test_02_start_vm Success 30.39 test_vm_life_cycle.py
test_01_stop_vm Success 10.21 test_vm_life_cycle.py
test_CreateTemplateWithDuplicateName Success 217.32 test_templates.py
test_08_list_system_templates Success 0.06 test_templates.py
test_07_list_public_templates Success 0.07 test_templates.py
test_05_template_permissions Success 0.07 test_templates.py
test_04_extract_template Success 25.75 test_templates.py
test_03_delete_template Success 5.19 test_templates.py
test_02_edit_template Success 90.18 test_templates.py
test_01_create_template Success 156.46 test_templates.py
test_10_destroy_cpvm Success 207.23 test_ssvm.py
test_09_destroy_ssvm Success 239.46 test_ssvm.py
test_08_reboot_cpvm Success 156.66 test_ssvm.py
test_07_reboot_ssvm Success 158.52 test_ssvm.py
test_06_stop_cpvm Success 177.19 test_ssvm.py
test_05_stop_ssvm Success 209.13 test_ssvm.py
test_04_cpvm_internals Success 1.34 test_ssvm.py
test_03_ssvm_internals Success 3.78 test_ssvm.py
test_02_list_cpvm_vm Success 0.24 test_ssvm.py
test_01_list_sec_storage_vm Success 0.21 test_ssvm.py
test_01_snapshot_root_disk Success 67.02 test_snapshots.py
test_04_change_offering_small Success 86.92 test_service_offerings.py
test_03_delete_service_offering Success 0.05 test_service_offerings.py
test_02_edit_service_offering Success 0.10 test_service_offerings.py
test_01_create_service_offering Success 0.13 test_service_offerings.py
test_02_sys_template_ready Success 0.26 test_secondary_storage.py
test_01_sys_vm_start Success 0.24 test_secondary_storage.py
test_09_reboot_router Success 130.93 test_routers.py
test_08_start_router Success 130.98 test_routers.py
test_07_stop_router Success 25.31 test_routers.py
test_06_router_advanced Success 0.07 test_routers.py
test_05_router_basic Success 0.05 test_routers.py
test_04_restart_network_wo_cleanup Success 5.87 test_routers.py
test_03_restart_network_cleanup Success 191.53 test_routers.py
test_02_router_internal_adv Success 1.16 test_routers.py
test_01_router_internal_basic Success 0.61 test_routers.py
test_router_dns_guestipquery Success 79.06 test_router_dns.py
test_router_dns_externalipquery Success 0.08 test_router_dns.py
test_router_dhcp_opts Success 21.84 test_router_dhcphosts.py
test_01_updatevolumedetail Success 0.09 test_resource_detail.py
test_01_reset_vm_on_reboot Success 30.34 test_reset_vm_on_reboot.py
test_createRegion Success 0.05 test_regions.py
test_create_pvlan_network Success 5.34 test_pvlan.py
test_dedicatePublicIpRange Success 0.46 test_public_ip_range.py
test_01_vpc_privategw_acl Success 195.29 test_privategw_acl.py
test_01_primary_storage_nfs Success 40.06 test_primary_storage.py
test_createPortablePublicIPRange Success 15.26 test_portable_publicip.py
test_createPortablePublicIPAcquire Success 15.91 test_portable_publicip.py
test_UpdateStorageOverProvisioningFactor Success 0.17 test_over_provisioning.py
test_oobm_zchange_password Success 25.96 test_outofbandmanagement.py
test_oobm_multiple_mgmt_server_ownership Success 16.41 test_outofbandmanagement.py
test_oobm_issue_power_status Success 10.34 test_outofbandmanagement.py
test_oobm_issue_power_soft Success 15.46 test_outofbandmanagement.py
test_oobm_issue_power_reset Success 15.44 test_outofbandmanagement.py
test_oobm_issue_power_on Success 15.50 test_outofbandmanagement.py
test_oobm_issue_power_off Success 10.43 test_outofbandmanagement.py
test_oobm_issue_power_cycle Success 15.45 test_outofbandmanagement.py
test_oobm_enabledisable_across_clusterzones Success 88.22 test_outofbandmanagement.py
test_oobm_enable_feature_valid Success 5.21 test_outofbandmanagement.py
test_oobm_enable_feature_invalid Success 0.10 test_outofbandmanagement.py
test_oobm_disable_feature_valid Success 5.24 test_outofbandmanagement.py
test_oobm_disable_feature_invalid Success 0.14 test_outofbandmanagement.py
test_oobm_configure_invalid_driver Success 0.10 test_outofbandmanagement.py
test_oobm_configure_default_driver Success 0.09 test_outofbandmanagement.py
test_oobm_background_powerstate_sync Success 29.57 test_outofbandmanagement.py
test_extendPhysicalNetworkVlan Success 15.38 test_non_contigiousvlan.py
test_01_nic Success 622.28 test_nic.py
test_releaseIP Success 273.55 test_network.py
test_reboot_router Success 589.97 test_network.py
test_public_ip_user_account Success 10.25 test_network.py
test_public_ip_admin_account Success 40.28 test_network.py
test_network_rules_acquired_public_ip_3_Load_Balancer_Rule Success 77.01 test_network.py
test_network_rules_acquired_public_ip_2_nat_rule Success 61.77 test_network.py
test_network_rules_acquired_public_ip_1_static_nat_rule Success 125.44 test_network.py
test_delete_account Success 363.36 test_network.py
test_02_port_fwd_on_non_src_nat Success 55.72 test_network.py
test_01_port_fwd_on_src_nat Success 142.57 test_network.py
test_nic_secondaryip_add_remove Success 243.34 test_multipleips_per_nic.py
login_test_saml_user Success 19.42 test_login.py
test_assign_and_removal_lb Success 133.63 test_loadbalance.py
test_02_create_lb_rule_non_nat Success 187.32 test_loadbalance.py
test_01_create_lb_rule_src_nat Success 188.05 test_loadbalance.py
test_03_list_snapshots Success 0.08 test_list_ids_parameter.py
test_02_list_templates Success 0.05 test_list_ids_parameter.py
test_01_list_volumes Success 0.03 test_list_ids_parameter.py
test_07_list_default_iso Success 0.09 test_iso.py
test_05_iso_permissions Success 0.10 test_iso.py
test_04_extract_Iso Success 5.30 test_iso.py
test_03_delete_iso Success 95.18 test_iso.py
test_02_edit_iso Success 0.06 test_iso.py
test_01_create_iso Success 21.06 test_iso.py
test_dedicateGuestVlanRange Success 10.37 test_guest_vlan_range.py
test_UpdateConfigParamWithScope Success 0.24 test_global_settings.py
test_rolepermission_lifecycle_update Success 6.26 test_dynamicroles.py
test_rolepermission_lifecycle_list Success 6.03 test_dynamicroles.py
test_rolepermission_lifecycle_delete Success 5.91 test_dynamicroles.py
test_rolepermission_lifecycle_create Success 5.99 test_dynamicroles.py
test_rolepermission_lifecycle_concurrent_updates Success 6.13 test_dynamicroles.py
test_role_lifecycle_update_role_inuse Success 5.93 test_dynamicroles.py
test_role_lifecycle_update Success 11.06 test_dynamicroles.py
test_role_lifecycle_list Success 5.96 test_dynamicroles.py
test_role_lifecycle_delete Success 11.06 test_dynamicroles.py
test_role_lifecycle_create Success 6.10 test_dynamicroles.py
test_role_inuse_deletion Success 5.98 test_dynamicroles.py
test_role_account_acls_multiple_mgmt_servers Success 8.30 test_dynamicroles.py
test_role_account_acls Success 8.68 test_dynamicroles.py
test_default_role_deletion Success 6.03 test_dynamicroles.py
test_04_create_fat_type_disk_offering Success 0.10 test_disk_offerings.py
test_03_delete_disk_offering Success 0.05 test_disk_offerings.py
test_02_edit_disk_offering Success 0.07 test_disk_offerings.py
test_02_create_sparse_type_disk_offering Success 0.08 test_disk_offerings.py
test_01_create_disk_offering Success 0.13 test_disk_offerings.py
test_deployvm_userdispersing Success 106.47 test_deploy_vms_with_varied_deploymentplanners.py
test_deployvm_userconcentrated Success 66.34 test_deploy_vms_with_varied_deploymentplanners.py
test_deployvm_firstfit Success 262.78 test_deploy_vms_with_varied_deploymentplanners.py
test_deployvm_userdata_post Success 66.25 test_deploy_vm_with_userdata.py
test_deployvm_userdata Success 364.35 test_deploy_vm_with_userdata.py
test_02_deploy_vm_root_resize Success 6.03 test_deploy_vm_root_resize.py
test_01_deploy_vm_root_resize Success 6.24 test_deploy_vm_root_resize.py
test_00_deploy_vm_root_resize Success 6.30 test_deploy_vm_root_resize.py
test_deploy_vm_from_iso Success 178.78 test_deploy_vm_iso.py
test_DeployVmAntiAffinityGroup Success 278.42 test_affinity_groups.py
test_08_resize_volume Skipped 5.12 test_volumes.py
test_07_resize_fail Skipped 10.30 test_volumes.py
test_06_copy_template Skipped 0.00 test_templates.py
test_static_role_account_acls Skipped 0.10 test_staticroles.py
test_01_scale_vm Skipped 63.45 test_scale_vm.py
test_01_primary_storage_iscsi Skipped 0.06 test_primary_storage.py
test_06_copy_iso Skipped 0.00 test_iso.py
test_deploy_vgpu_enabled_vm Skipped 0.01 test_deploy_vgpu_enabled_vm.py

@rohityadavcloud
Copy link
Member

@blueorangutan package

@blueorangutan
Copy link

@rhtyd a Jenkins job has been kicked to build packages. I'll keep you posted as I make progress.

@blueorangutan
Copy link

Packaging result: ✔centos6 ✔centos7 ✔debian. JID-369

@rohityadavcloud
Copy link
Member

@blueorangutan test centos7 vmware-55u3

@blueorangutan
Copy link

@rhtyd a Trillian-Jenkins test job (centos7 mgmt + vmware-55u3) has been kicked to run smoke tests

@blueorangutan
Copy link

Trillian test result (tid-639)
Environment: vmware-55u3 (x2), Advanced Networking with Mgmt server 7
Total time taken: 36341 seconds
Marvin logs: https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr1810-t639-vmware-55u3.zip
Test completed. 44 look ok, 4 have error(s)

Test Result Time (s) Test File
test_04_rvpc_privategw_static_routes Failure 1025.96 test_privategw_acl.py
test_02_vpc_privategw_static_routes Failure 156.95 test_privategw_acl.py
test_01_vpc_site2site_vpn Error 476.67 test_vpc_vpn.py
test_01_redundant_vpc_site2site_vpn Error 738.35 test_vpc_vpn.py
test_CreateTemplateWithDuplicateName Error 0.04 test_templates.py
test_01_create_template Error 0.05 test_templates.py
ContextSuite context=TestTemplates>:setup Error 349.56 test_templates.py
test_03_vpc_privategw_restart_vpc_cleanup Error 772.54 test_privategw_acl.py
test_03_vpc_privategw_restart_vpc_cleanup Error 833.22 test_privategw_acl.py
ContextSuite context=TestListIdsParams>:setup Error 0.00 test_list_ids_parameter.py
test_01_vpc_remote_access_vpn Success 151.77 test_vpc_vpn.py
test_02_VPC_default_routes Success 430.36 test_vpc_router_nics.py
test_01_VPC_nics_after_destroy Success 651.33 test_vpc_router_nics.py
test_05_rvpc_multi_tiers Success 692.49 test_vpc_redundant.py
test_04_rvpc_network_garbage_collector_nics Success 1573.69 test_vpc_redundant.py
test_03_create_redundant_VPC_1tier_2VMs_2IPs_2PF_ACL_reboot_routers Success 658.99 test_vpc_redundant.py
test_02_redundant_VPC_default_routes Success 694.15 test_vpc_redundant.py
test_01_create_redundant_VPC_2tiers_4VMs_4IPs_4PF_ACL Success 1404.94 test_vpc_redundant.py
test_09_delete_detached_volume Success 31.11 test_volumes.py
test_06_download_detached_volume Success 70.62 test_volumes.py
test_05_detach_volume Success 110.55 test_volumes.py
test_04_delete_attached_volume Success 15.24 test_volumes.py
test_03_download_attached_volume Success 20.62 test_volumes.py
test_02_attach_volume Success 59.40 test_volumes.py
test_01_create_volume Success 458.54 test_volumes.py
test_03_delete_vm_snapshots Success 280.27 test_vm_snapshots.py
test_02_revert_vm_snapshots Success 229.71 test_vm_snapshots.py
test_01_test_vm_volume_snapshot Success 372.94 test_vm_snapshots.py
test_01_create_vm_snapshots Success 159.05 test_vm_snapshots.py
test_deploy_vm_multiple Success 282.83 test_vm_life_cycle.py
test_deploy_vm Success 0.03 test_vm_life_cycle.py
test_advZoneVirtualRouter Success 0.03 test_vm_life_cycle.py
test_10_attachAndDetach_iso Success 248.35 test_vm_life_cycle.py
test_09_expunge_vm Success 125.16 test_vm_life_cycle.py
test_08_migrate_vm Success 71.07 test_vm_life_cycle.py
test_07_restore_vm Success 0.10 test_vm_life_cycle.py
test_06_destroy_vm Success 10.14 test_vm_life_cycle.py
test_03_reboot_vm Success 5.14 test_vm_life_cycle.py
test_02_start_vm Success 20.27 test_vm_life_cycle.py
test_01_stop_vm Success 10.16 test_vm_life_cycle.py
test_10_destroy_cpvm Success 231.88 test_ssvm.py
test_09_destroy_ssvm Success 243.82 test_ssvm.py
test_08_reboot_cpvm Success 306.77 test_ssvm.py
test_07_reboot_ssvm Success 158.52 test_ssvm.py
test_06_stop_cpvm Success 211.86 test_ssvm.py
test_05_stop_ssvm Success 210.28 test_ssvm.py
test_04_cpvm_internals Success 1.23 test_ssvm.py
test_03_ssvm_internals Success 3.87 test_ssvm.py
test_02_list_cpvm_vm Success 0.14 test_ssvm.py
test_01_list_sec_storage_vm Success 0.14 test_ssvm.py
test_01_snapshot_root_disk Success 66.46 test_snapshots.py
test_04_change_offering_small Success 96.83 test_service_offerings.py
test_03_delete_service_offering Success 0.04 test_service_offerings.py
test_02_edit_service_offering Success 0.08 test_service_offerings.py
test_01_create_service_offering Success 0.12 test_service_offerings.py
test_02_sys_template_ready Success 0.14 test_secondary_storage.py
test_01_sys_vm_start Success 0.19 test_secondary_storage.py
test_09_reboot_router Success 130.85 test_routers.py
test_08_start_router Success 166.06 test_routers.py
test_07_stop_router Success 20.23 test_routers.py
test_06_router_advanced Success 0.07 test_routers.py
test_05_router_basic Success 0.04 test_routers.py
test_04_restart_network_wo_cleanup Success 5.67 test_routers.py
test_03_restart_network_cleanup Success 176.17 test_routers.py
test_02_router_internal_adv Success 1.01 test_routers.py
test_01_router_internal_basic Success 0.55 test_routers.py
test_router_dns_guestipquery Success 76.67 test_router_dns.py
test_router_dns_externalipquery Success 0.08 test_router_dns.py
test_router_dhcphosts Success 116.87 test_router_dhcphosts.py
test_router_dhcp_opts Success 21.68 test_router_dhcphosts.py
test_01_updatevolumedetail Success 0.09 test_resource_detail.py
test_01_reset_vm_on_reboot Success 65.55 test_reset_vm_on_reboot.py
test_createRegion Success 0.04 test_regions.py
test_create_pvlan_network Success 5.22 test_pvlan.py
test_dedicatePublicIpRange Success 0.41 test_public_ip_range.py
test_01_vpc_privategw_acl Success 283.61 test_privategw_acl.py
test_01_primary_storage_nfs Success 38.70 test_primary_storage.py
test_createPortablePublicIPRange Success 15.19 test_portable_publicip.py
test_createPortablePublicIPAcquire Success 15.49 test_portable_publicip.py
test_isolate_network_password_server Success 64.28 test_password_server.py
test_UpdateStorageOverProvisioningFactor Success 0.15 test_over_provisioning.py
test_oobm_zchange_password Success 30.82 test_outofbandmanagement.py
test_oobm_multiple_mgmt_server_ownership Success 16.35 test_outofbandmanagement.py
test_oobm_issue_power_status Success 10.27 test_outofbandmanagement.py
test_oobm_issue_power_soft Success 15.56 test_outofbandmanagement.py
test_oobm_issue_power_reset Success 15.40 test_outofbandmanagement.py
test_oobm_issue_power_on Success 15.40 test_outofbandmanagement.py
test_oobm_issue_power_off Success 10.35 test_outofbandmanagement.py
test_oobm_issue_power_cycle Success 15.31 test_outofbandmanagement.py
test_oobm_enabledisable_across_clusterzones Success 87.74 test_outofbandmanagement.py
test_oobm_enable_feature_valid Success 0.13 test_outofbandmanagement.py
test_oobm_enable_feature_invalid Success 0.10 test_outofbandmanagement.py
test_oobm_disable_feature_valid Success 5.17 test_outofbandmanagement.py
test_oobm_disable_feature_invalid Success 0.11 test_outofbandmanagement.py
test_oobm_configure_invalid_driver Success 0.09 test_outofbandmanagement.py
test_oobm_configure_default_driver Success 0.11 test_outofbandmanagement.py
test_oobm_background_powerstate_sync Success 29.48 test_outofbandmanagement.py
test_extendPhysicalNetworkVlan Success 15.37 test_non_contigiousvlan.py
test_01_nic Success 637.05 test_nic.py
test_releaseIP Success 288.65 test_network.py
test_reboot_router Success 726.32 test_network.py
test_public_ip_user_account Success 10.38 test_network.py
test_public_ip_admin_account Success 40.34 test_network.py
test_network_rules_acquired_public_ip_3_Load_Balancer_Rule Success 76.91 test_network.py
test_network_rules_acquired_public_ip_2_nat_rule Success 61.65 test_network.py
test_network_rules_acquired_public_ip_1_static_nat_rule Success 124.99 test_network.py
test_delete_account Success 257.76 test_network.py
test_02_port_fwd_on_non_src_nat Success 55.66 test_network.py
test_01_port_fwd_on_src_nat Success 111.80 test_network.py
test_nic_secondaryip_add_remove Success 288.17 test_multipleips_per_nic.py
login_test_saml_user Success 19.25 test_login.py
test_assign_and_removal_lb Success 149.02 test_loadbalance.py
test_02_create_lb_rule_non_nat Success 192.16 test_loadbalance.py
test_01_create_lb_rule_src_nat Success 203.37 test_loadbalance.py
test_07_list_default_iso Success 0.06 test_iso.py
test_05_iso_permissions Success 0.07 test_iso.py
test_04_extract_Iso Success 5.19 test_iso.py
test_03_delete_iso Success 95.24 test_iso.py
test_02_edit_iso Success 0.06 test_iso.py
test_01_create_iso Success 21.02 test_iso.py
test_04_rvpc_internallb_haproxy_stats_on_all_interfaces Success 636.41 test_internal_lb.py
test_03_vpc_internallb_haproxy_stats_on_all_interfaces Success 515.23 test_internal_lb.py
test_02_internallb_roundrobin_1RVPC_3VM_HTTP_port80 Success 1043.42 test_internal_lb.py
test_01_internallb_roundrobin_1VPC_3VM_HTTP_port80 Success 791.25 test_internal_lb.py
test_dedicateGuestVlanRange Success 10.28 test_guest_vlan_range.py
test_UpdateConfigParamWithScope Success 0.15 test_global_settings.py
test_rolepermission_lifecycle_update Success 6.17 test_dynamicroles.py
test_rolepermission_lifecycle_list Success 5.99 test_dynamicroles.py
test_rolepermission_lifecycle_delete Success 5.90 test_dynamicroles.py
test_rolepermission_lifecycle_create Success 5.90 test_dynamicroles.py
test_rolepermission_lifecycle_concurrent_updates Success 6.05 test_dynamicroles.py
test_role_lifecycle_update_role_inuse Success 5.93 test_dynamicroles.py
test_role_lifecycle_update Success 11.04 test_dynamicroles.py
test_role_lifecycle_list Success 5.90 test_dynamicroles.py
test_role_lifecycle_delete Success 11.26 test_dynamicroles.py
test_role_lifecycle_create Success 5.91 test_dynamicroles.py
test_role_inuse_deletion Success 5.86 test_dynamicroles.py
test_role_account_acls_multiple_mgmt_servers Success 8.33 test_dynamicroles.py
test_role_account_acls Success 8.22 test_dynamicroles.py
test_default_role_deletion Success 5.98 test_dynamicroles.py
test_04_create_fat_type_disk_offering Success 0.07 test_disk_offerings.py
test_03_delete_disk_offering Success 0.04 test_disk_offerings.py
test_02_edit_disk_offering Success 0.05 test_disk_offerings.py
test_02_create_sparse_type_disk_offering Success 0.07 test_disk_offerings.py
test_01_create_disk_offering Success 0.11 test_disk_offerings.py
test_deployvm_userdispersing Success 71.11 test_deploy_vms_with_varied_deploymentplanners.py
test_deployvm_userconcentrated Success 106.54 test_deploy_vms_with_varied_deploymentplanners.py
test_deployvm_firstfit Success 196.76 test_deploy_vms_with_varied_deploymentplanners.py
test_deployvm_userdata_post Success 35.62 test_deploy_vm_with_userdata.py
test_deployvm_userdata Success 262.38 test_deploy_vm_with_userdata.py
test_02_deploy_vm_root_resize Success 5.88 test_deploy_vm_root_resize.py
test_01_deploy_vm_root_resize Success 5.86 test_deploy_vm_root_resize.py
test_00_deploy_vm_root_resize Success 5.99 test_deploy_vm_root_resize.py
test_deploy_vm_from_iso Success 238.77 test_deploy_vm_iso.py
test_DeployVmAntiAffinityGroup Success 302.55 test_affinity_groups.py
test_08_resize_volume Skipped 10.30 test_volumes.py
test_07_resize_fail Skipped 10.27 test_volumes.py
test_static_role_account_acls Skipped 0.03 test_staticroles.py
test_01_scale_vm Skipped 66.36 test_scale_vm.py
test_01_primary_storage_iscsi Skipped 0.04 test_primary_storage.py
test_06_copy_iso Skipped 0.00 test_iso.py
test_deploy_vgpu_enabled_vm Skipped 0.01 test_deploy_vgpu_enabled_vm.py

@SudharmaJain
Copy link
Contributor

LGTM for code changes.

@niteshsarda
Copy link
Contributor

I have tested this and LGTM for test.

Following are the results :

Before applying fix :
/vmfs/volumes/5d7b9eae-08336124/r-99-VM # grep virtualDev r-97-VM.vmx
pciBridge4.virtualDev = "pcieRootPort"
pciBridge5.virtualDev = "pcieRootPort"
pciBridge6.virtualDev = "pcieRootPort"
pciBridge7.virtualDev = "pcieRootPort"
scsi0.virtualDev = "lsilogic"
ethernet0.virtualDev = "vmxnet3"
ethernet1.virtualDev = "e1000"
ethernet2.virtualDev = "e1000"

After applying fix :
/vmfs/volumes/5d7b9eae-08336124/r-99-VM # grep virtualDev r-99-VM.vmx
pciBridge4.virtualDev = "pcieRootPort"
pciBridge5.virtualDev = "pcieRootPort"
pciBridge6.virtualDev = "pcieRootPort"
pciBridge7.virtualDev = "pcieRootPort"
scsi0.virtualDev = "lsilogic"
ethernet0.virtualDev = "vmxnet3"
ethernet1.virtualDev = "vmxnet3"
ethernet2.virtualDev = "vmxnet3"

HypervisorGuru hvGuru = _hvGuruMgr.getGuru(profile.getHypervisorType());
VirtualMachineTO vmTO = hvGuru.implement(profile);
if(vmTO.getDetails() != null){
details = vmTO.getDetails();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we pass the details irrespective of the hypervisor type?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Otherwise LGTM.

@rohityadavcloud
Copy link
Member

@blueorangutan package

@blueorangutan
Copy link

@rhtyd a Jenkins job has been kicked to build packages. I'll keep you posted as I make progress.

@blueorangutan
Copy link

Packaging result: ✔centos6 ✔centos7 ✔debian. JID-668

@rohityadavcloud
Copy link
Member

@blueorangutan test centos7 vmware-55u3

@blueorangutan
Copy link

@rhtyd a Trillian-Jenkins test job (centos7 mgmt + vmware-55u3) has been kicked to run smoke tests

@karuturi
Copy link
Member

@sudhansu7 can you check test failures?

@borisstoyanov
Copy link
Contributor

@blueorangutan test centos7 vmware-55u3

@blueorangutan
Copy link

@borisstoyanov a Trillian-Jenkins test job (centos7 mgmt + vmware-55u3) has been kicked to run smoke tests

@blueorangutan
Copy link

Trillian test result (tid-1041)
Environment: vmware-55u3 (x2), Advanced Networking with Mgmt server 7
Total time taken: 47075 seconds
Marvin logs: https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr1810-t1041-vmware-55u3.zip
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_vm_life_cycle.py
Intermitten failure detected: /marvin/tests/smoke/test_vpc_router_nics.py
Test completed. 47 look ok, 2 have error(s)

Test Result Time (s) Test File
test_04_rvpc_privategw_static_routes Failure 317.90 test_privategw_acl.py
test_02_list_snapshots_with_removed_data_store Error 136.35 test_snapshots.py
test_02_list_snapshots_with_removed_data_store Error 141.45 test_snapshots.py
test_01_vpc_site2site_vpn Success 396.83 test_vpc_vpn.py
test_01_vpc_remote_access_vpn Success 171.85 test_vpc_vpn.py
test_01_redundant_vpc_site2site_vpn Success 649.53 test_vpc_vpn.py
test_02_VPC_default_routes Success 502.26 test_vpc_router_nics.py
test_01_VPC_nics_after_destroy Success 740.20 test_vpc_router_nics.py
test_05_rvpc_multi_tiers Success 824.49 test_vpc_redundant.py
test_04_rvpc_network_garbage_collector_nics Success 1630.50 test_vpc_redundant.py
test_03_create_redundant_VPC_1tier_2VMs_2IPs_2PF_ACL_reboot_routers Success 744.89 test_vpc_redundant.py
test_02_redundant_VPC_default_routes Success 715.57 test_vpc_redundant.py
test_01_create_redundant_VPC_2tiers_4VMs_4IPs_4PF_ACL Success 1558.11 test_vpc_redundant.py
test_09_delete_detached_volume Success 31.04 test_volumes.py
test_06_download_detached_volume Success 75.68 test_volumes.py
test_05_detach_volume Success 105.33 test_volumes.py
test_04_delete_attached_volume Success 20.29 test_volumes.py
test_03_download_attached_volume Success 25.38 test_volumes.py
test_02_attach_volume Success 63.90 test_volumes.py
test_01_create_volume Success 521.27 test_volumes.py
test_03_delete_vm_snapshots Success 280.22 test_vm_snapshots.py
test_02_revert_vm_snapshots Success 229.35 test_vm_snapshots.py
test_01_create_vm_snapshots Success 161.79 test_vm_snapshots.py
test_deploy_vm_multiple Success 272.90 test_vm_life_cycle.py
test_deploy_vm Success 0.04 test_vm_life_cycle.py
test_advZoneVirtualRouter Success 0.03 test_vm_life_cycle.py
test_10_attachAndDetach_iso Success 26.94 test_vm_life_cycle.py
test_09_expunge_vm Success 185.33 test_vm_life_cycle.py
test_08_migrate_vm Success 86.53 test_vm_life_cycle.py
test_07_restore_vm Success 0.11 test_vm_life_cycle.py
test_06_destroy_vm Success 10.18 test_vm_life_cycle.py
test_03_reboot_vm Success 5.17 test_vm_life_cycle.py
test_02_start_vm Success 30.39 test_vm_life_cycle.py
test_01_stop_vm Success 10.18 test_vm_life_cycle.py
test_CreateTemplateWithDuplicateName Success 413.53 test_templates.py
test_08_list_system_templates Success 0.04 test_templates.py
test_07_list_public_templates Success 0.05 test_templates.py
test_05_template_permissions Success 0.07 test_templates.py
test_04_extract_template Success 20.32 test_templates.py
test_03_delete_template Success 5.12 test_templates.py
test_02_edit_template Success 90.18 test_templates.py
test_01_create_template Success 181.44 test_templates.py
test_10_destroy_cpvm Success 271.99 test_ssvm.py
test_09_destroy_ssvm Success 264.27 test_ssvm.py
test_08_reboot_cpvm Success 156.69 test_ssvm.py
test_07_reboot_ssvm Success 158.78 test_ssvm.py
test_06_stop_cpvm Success 201.95 test_ssvm.py
test_05_stop_ssvm Success 204.01 test_ssvm.py
test_04_cpvm_internals Success 1.38 test_ssvm.py
test_03_ssvm_internals Success 3.84 test_ssvm.py
test_02_list_cpvm_vm Success 0.15 test_ssvm.py
test_01_list_sec_storage_vm Success 0.15 test_ssvm.py
test_01_snapshot_root_disk Success 71.57 test_snapshots.py
test_04_change_offering_small Success 97.51 test_service_offerings.py
test_03_delete_service_offering Success 0.05 test_service_offerings.py
test_02_edit_service_offering Success 0.09 test_service_offerings.py
test_01_create_service_offering Success 0.14 test_service_offerings.py
test_02_sys_template_ready Success 0.15 test_secondary_storage.py
test_01_sys_vm_start Success 0.22 test_secondary_storage.py
test_09_reboot_router Success 181.38 test_routers.py
test_08_start_router Success 156.13 test_routers.py
test_07_stop_router Success 25.25 test_routers.py
test_06_router_advanced Success 0.07 test_routers.py
test_05_router_basic Success 0.04 test_routers.py
test_04_restart_network_wo_cleanup Success 5.75 test_routers.py
test_03_restart_network_cleanup Success 186.68 test_routers.py
test_02_router_internal_adv Success 1.14 test_routers.py
test_01_router_internal_basic Success 0.62 test_routers.py
test_router_dns_guestipquery Success 76.85 test_router_dns.py
test_router_dns_externalipquery Success 0.09 test_router_dns.py
test_router_dhcphosts Success 157.23 test_router_dhcphosts.py
test_router_dhcp_opts Success 26.89 test_router_dhcphosts.py
test_01_updatevolumedetail Success 5.20 test_resource_detail.py
test_01_reset_vm_on_reboot Success 85.89 test_reset_vm_on_reboot.py
test_createRegion Success 0.08 test_regions.py
test_create_pvlan_network Success 5.24 test_pvlan.py
test_dedicatePublicIpRange Success 0.45 test_public_ip_range.py
test_03_vpc_privategw_restart_vpc_cleanup Success 1296.41 test_privategw_acl.py
test_02_vpc_privategw_static_routes Success 839.80 test_privategw_acl.py
test_01_vpc_privategw_acl Success 258.75 test_privategw_acl.py
test_01_primary_storage_nfs Success 38.72 test_primary_storage.py
test_createPortablePublicIPRange Success 15.21 test_portable_publicip.py
test_createPortablePublicIPAcquire Success 15.49 test_portable_publicip.py
test_isolate_network_password_server Success 95.47 test_password_server.py
test_UpdateStorageOverProvisioningFactor Success 0.15 test_over_provisioning.py
test_oobm_zchange_password Success 30.82 test_outofbandmanagement.py
test_oobm_multiple_mgmt_server_ownership Success 16.41 test_outofbandmanagement.py
test_oobm_issue_power_status Success 10.31 test_outofbandmanagement.py
test_oobm_issue_power_soft Success 15.54 test_outofbandmanagement.py
test_oobm_issue_power_reset Success 15.43 test_outofbandmanagement.py
test_oobm_issue_power_on Success 15.40 test_outofbandmanagement.py
test_oobm_issue_power_off Success 15.41 test_outofbandmanagement.py
test_oobm_issue_power_cycle Success 15.38 test_outofbandmanagement.py
test_oobm_enabledisable_across_clusterzones Success 82.74 test_outofbandmanagement.py
test_oobm_enable_feature_valid Success 5.22 test_outofbandmanagement.py
test_oobm_enable_feature_invalid Success 0.12 test_outofbandmanagement.py
test_oobm_disable_feature_valid Success 5.23 test_outofbandmanagement.py
test_oobm_disable_feature_invalid Success 0.11 test_outofbandmanagement.py
test_oobm_configure_invalid_driver Success 0.09 test_outofbandmanagement.py
test_oobm_configure_default_driver Success 0.08 test_outofbandmanagement.py
test_oobm_background_powerstate_sync Success 29.46 test_outofbandmanagement.py
test_extendPhysicalNetworkVlan Success 15.41 test_non_contigiousvlan.py
test_01_nic Success 669.50 test_nic.py
test_releaseIP Success 499.89 test_network.py
test_reboot_router Success 700.83 test_network.py
test_public_ip_user_account Success 10.31 test_network.py
test_public_ip_admin_account Success 40.32 test_network.py
test_network_rules_acquired_public_ip_3_Load_Balancer_Rule Success 77.08 test_network.py
test_network_rules_acquired_public_ip_2_nat_rule Success 61.82 test_network.py
test_network_rules_acquired_public_ip_1_static_nat_rule Success 130.95 test_network.py
test_delete_account Success 320.77 test_network.py
test_02_port_fwd_on_non_src_nat Success 55.69 test_network.py
test_01_port_fwd_on_src_nat Success 111.96 test_network.py
test_nic_secondaryip_add_remove Success 218.22 test_multipleips_per_nic.py
test_list_zones_metrics Success 0.26 test_metrics_api.py
test_list_volumes_metrics Success 5.61 test_metrics_api.py
test_list_vms_metrics Success 248.04 test_metrics_api.py
test_list_pstorage_metrics Success 0.57 test_metrics_api.py
test_list_infrastructure_metrics Success 0.64 test_metrics_api.py
test_list_hosts_metrics Success 0.58 test_metrics_api.py
test_list_clusters_metrics Success 0.51 test_metrics_api.py
login_test_saml_user Success 19.94 test_login.py
test_assign_and_removal_lb Success 148.85 test_loadbalance.py
test_02_create_lb_rule_non_nat Success 207.75 test_loadbalance.py
test_01_create_lb_rule_src_nat Success 208.98 test_loadbalance.py
test_03_list_snapshots Success 0.09 test_list_ids_parameter.py
test_02_list_templates Success 0.05 test_list_ids_parameter.py
test_01_list_volumes Success 0.03 test_list_ids_parameter.py
test_07_list_default_iso Success 0.06 test_iso.py
test_05_iso_permissions Success 0.07 test_iso.py
test_04_extract_Iso Success 5.20 test_iso.py
test_03_delete_iso Success 95.16 test_iso.py
test_02_edit_iso Success 0.09 test_iso.py
test_01_create_iso Success 21.05 test_iso.py
test_04_rvpc_internallb_haproxy_stats_on_all_interfaces Success 575.70 test_internal_lb.py
test_03_vpc_internallb_haproxy_stats_on_all_interfaces Success 450.82 test_internal_lb.py
test_02_internallb_roundrobin_1RVPC_3VM_HTTP_port80 Success 1156.97 test_internal_lb.py
test_01_internallb_roundrobin_1VPC_3VM_HTTP_port80 Success 861.19 test_internal_lb.py
test_dedicateGuestVlanRange Success 10.33 test_guest_vlan_range.py
test_UpdateConfigParamWithScope Success 0.16 test_global_settings.py
test_rolepermission_lifecycle_update Success 6.26 test_dynamicroles.py
test_rolepermission_lifecycle_list Success 6.03 test_dynamicroles.py
test_rolepermission_lifecycle_delete Success 5.90 test_dynamicroles.py
test_rolepermission_lifecycle_create Success 5.93 test_dynamicroles.py
test_rolepermission_lifecycle_concurrent_updates Success 6.01 test_dynamicroles.py
test_role_lifecycle_update_role_inuse Success 5.92 test_dynamicroles.py
test_role_lifecycle_update Success 11.03 test_dynamicroles.py
test_role_lifecycle_list Success 5.99 test_dynamicroles.py
test_role_lifecycle_delete Success 11.11 test_dynamicroles.py
test_role_lifecycle_create Success 5.95 test_dynamicroles.py
test_role_inuse_deletion Success 5.94 test_dynamicroles.py
test_role_account_acls_multiple_mgmt_servers Success 8.46 test_dynamicroles.py
test_role_account_acls Success 8.86 test_dynamicroles.py
test_default_role_deletion Success 6.11 test_dynamicroles.py
test_04_create_fat_type_disk_offering Success 0.10 test_disk_offerings.py
test_03_delete_disk_offering Success 0.06 test_disk_offerings.py
test_02_edit_disk_offering Success 0.06 test_disk_offerings.py
test_02_create_sparse_type_disk_offering Success 0.11 test_disk_offerings.py
test_01_create_disk_offering Success 0.13 test_disk_offerings.py
test_deployvm_userdispersing Success 81.16 test_deploy_vms_with_varied_deploymentplanners.py
test_deployvm_userconcentrated Success 146.52 test_deploy_vms_with_varied_deploymentplanners.py
test_deployvm_firstfit Success 221.86 test_deploy_vms_with_varied_deploymentplanners.py
test_deployvm_userdata_post Success 91.10 test_deploy_vm_with_userdata.py
test_deployvm_userdata Success 236.95 test_deploy_vm_with_userdata.py
test_02_deploy_vm_root_resize Success 5.87 test_deploy_vm_root_resize.py
test_01_deploy_vm_root_resize Success 5.86 test_deploy_vm_root_resize.py
test_00_deploy_vm_root_resize Success 6.36 test_deploy_vm_root_resize.py
test_deploy_vm_from_iso Success 273.34 test_deploy_vm_iso.py
test_DeployVmAntiAffinityGroup Success 222.25 test_affinity_groups.py
test_08_resize_volume Skipped 10.15 test_volumes.py
test_07_resize_fail Skipped 15.34 test_volumes.py
test_06_copy_template Skipped 0.00 test_templates.py
test_static_role_account_acls Skipped 0.02 test_staticroles.py
test_01_scale_vm Skipped 66.37 test_scale_vm.py
test_01_primary_storage_iscsi Skipped 0.05 test_primary_storage.py
test_06_copy_iso Skipped 0.00 test_iso.py
test_deploy_vgpu_enabled_vm Skipped 0.01 test_deploy_vgpu_enabled_vm.py

@sudhansu7
Copy link
Author

failures in BVT are not related to this PR.
tag:mergeready

@karuturi karuturi modified the milestone: 4.10.0.0 Apr 27, 2017
@karuturi karuturi removed the 4.10.0.0 label Apr 27, 2017
Copy link
Contributor

@borisstoyanov borisstoyanov left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, based on test results and code review

@karuturi karuturi merged commit bdc4fd7 into apache:4.9 May 2, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

8 participants