[GitHub] [cloudstack] nvazquez commented on issue #4014: Improvement on build time and new quality profile

2020-04-04 Thread GitBox
nvazquez commented on issue #4014: Improvement on build time and new quality 
profile
URL: https://github.com/apache/cloudstack/pull/4014#issuecomment-609363765
 
 
   @blueorangutan test


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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] [cloudstack] blueorangutan commented on issue #4014: Improvement on build time and new quality profile

2020-04-04 Thread GitBox
blueorangutan commented on issue #4014: Improvement on build time and new 
quality profile
URL: https://github.com/apache/cloudstack/pull/4014#issuecomment-609363829
 
 
   @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 to 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] [cloudstack] blueorangutan commented on issue #4014: Improvement on build time and new quality profile

2020-04-04 Thread GitBox
blueorangutan commented on issue #4014: Improvement on build time and new 
quality profile
URL: https://github.com/apache/cloudstack/pull/4014#issuecomment-609363379
 
 
   Packaging result: ✔centos7 ✔debian. JID-1127


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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] [cloudstack] blueorangutan commented on issue #4014: Improvement on build time and new quality profile

2020-04-04 Thread GitBox
blueorangutan commented on issue #4014: Improvement on build time and new 
quality profile
URL: https://github.com/apache/cloudstack/pull/4014#issuecomment-609361590
 
 
   @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 to 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] [cloudstack] nvazquez commented on issue #4014: Improvement on build time and new quality profile

2020-04-04 Thread GitBox
nvazquez commented on issue #4014: Improvement on build time and new quality 
profile
URL: https://github.com/apache/cloudstack/pull/4014#issuecomment-609361529
 
 
   @blueorangutan package


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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] [cloudstack] blueorangutan commented on issue #4014: Improvement on build time and new quality profile

2020-04-04 Thread GitBox
blueorangutan commented on issue #4014: Improvement on build time and new 
quality profile
URL: https://github.com/apache/cloudstack/pull/4014#issuecomment-609359765
 
 
   Packaging result: ✖centos7 ✖debian. JID-1126


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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] [cloudstack] blueorangutan commented on issue #4014: Improvement on build time and new quality profile

2020-04-04 Thread GitBox
blueorangutan commented on issue #4014: Improvement on build time and new 
quality profile
URL: https://github.com/apache/cloudstack/pull/4014#issuecomment-609359548
 
 
   @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 to 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] [cloudstack] nvazquez commented on issue #4014: Improvement on build time and new quality profile

2020-04-04 Thread GitBox
nvazquez commented on issue #4014: Improvement on build time and new quality 
profile
URL: https://github.com/apache/cloudstack/pull/4014#issuecomment-609359470
 
 
   @blueorangutan package


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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] [cloudstack] nvazquez opened a new pull request #4014: Improvement on build time and new quality profile

2020-04-04 Thread GitBox
nvazquez opened a new pull request #4014: Improvement on build time and new 
quality profile
URL: https://github.com/apache/cloudstack/pull/4014
 
 
   ## Description
   Since PR #3956 has been merged the build time has increased drastically due 
to the quality tools added.
   
   This PR simply removes these tools from the default build execution and adds 
a new profile with name: `quality` to enable these tools.
   
   To enable this new profile, simply append: `-P quality` to the maven build 
command
   
   As a result, the default build time increases significantly, as shown in the 
'How has this been tested' section
   
   ## Types of changes
   - [ ] Breaking change (fix or feature that would cause existing 
functionality to change)
   - [ ] New feature (non-breaking change which adds functionality)
   - [ ] Bug fix (non-breaking change which fixes an issue)
   - [x] Enhancement (improves an existing feature and functionality)
   - [ ] Cleanup (Code refactoring and cleanup, that may add test cases)
   
   ## Screenshots (if appropriate):
   
   ## How Has This Been Tested?
   
   Tested on Ubuntu 19.10 laptop, 8x1.8Ghz CPU - 16GB RAM
   openjdk version "11.0.6" 2020-01-14
   Apache Maven 3.6.1
   
   Default build:
   
   
   $ mvn clean install -Dnoredist -P developer,systemvm -DskipTests -T4
   
   [INFO] 

   [INFO] BUILD SUCCESS
   [INFO] 

   [INFO] Total time:  06:21 min (Wall Clock)
   [INFO] Finished at: 2020-04-05T01:16:18-03:00
   [INFO] 

   
   
   Enabling quality tools (x2+ slower):
   
   mvn clean install -Dnoredist -P developer,systemvm,quality -U -DskipTests -T4
   
   [INFO] 

   [INFO] BUILD SUCCESS
   [INFO] 

   [INFO] Total time:  16:25 min (Wall Clock)
   [INFO] Finished at: 2020-04-05T01:42:07-03:00
   [INFO] 

   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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] [cloudstack] blueorangutan commented on issue #3967: noVNC console integration

2020-04-04 Thread GitBox
blueorangutan commented on issue #3967: noVNC console integration
URL: https://github.com/apache/cloudstack/pull/3967#issuecomment-609112245
 
 
   Trillian test result (tid-1353)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 141082 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr3967-t1353-kvm-centos7.zip
   Intermittent failure detected: /marvin/tests/smoke/test_accounts.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_affinity_groups_projects.py
   Intermittent failure detected: /marvin/tests/smoke/test_async_job.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_deploy_virtio_scsi_vm.py
   Intermittent failure detected: /marvin/tests/smoke/test_deploy_vm_iso.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_deploy_vms_with_varied_deploymentplanners.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_deploy_vm_with_userdata.py
   Intermittent failure detected: /marvin/tests/smoke/test_diagnostics.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_domain_service_offerings.py
   Intermittent failure detected: /marvin/tests/smoke/test_internal_lb.py
   Intermittent failure detected: /marvin/tests/smoke/test_iso.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_kubernetes_supported_versions.py
   Intermittent failure detected: /marvin/tests/smoke/test_list_ids_parameter.py
   Intermittent failure detected: /marvin/tests/smoke/test_loadbalance.py
   Intermittent failure detected: /marvin/tests/smoke/test_metrics_api.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_multipleips_per_nic.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_nested_virtualization.py
   Intermittent failure detected: /marvin/tests/smoke/test_network_acl.py
   Intermittent failure detected: /marvin/tests/smoke/test_network.py
   Intermittent failure detected: /marvin/tests/smoke/test_nic_adapter_type.py
   Intermittent failure detected: /marvin/tests/smoke/test_password_server.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_portforwardingrules.py
   Intermittent failure detected: /marvin/tests/smoke/test_privategw_acl.py
   Intermittent failure detected: /marvin/tests/smoke/test_projects.py
   Intermittent failure detected: /marvin/tests/smoke/test_reset_vm_on_reboot.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_resource_accounting.py
   Intermittent failure detected: /marvin/tests/smoke/test_router_dhcphosts.py
   Intermittent failure detected: /marvin/tests/smoke/test_router_dns.py
   Intermittent failure detected: /marvin/tests/smoke/test_router_dnsservice.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_routers_iptables_default_policy.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_routers_network_ops.py
   Intermittent failure detected: /marvin/tests/smoke/test_routers.py
   Intermittent failure detected: /marvin/tests/smoke/test_service_offerings.py
   Intermittent failure detected: /marvin/tests/smoke/test_snapshots.py
   Intermittent failure detected: /marvin/tests/smoke/test_templates.py
   Intermittent failure detected: /marvin/tests/smoke/test_usage.py
   Intermittent failure detected: /marvin/tests/smoke/test_vm_life_cycle.py
   Intermittent failure detected: /marvin/tests/smoke/test_vpc_redundant.py
   Intermittent failure detected: /marvin/tests/smoke/test_vpc_router_nics.py
   Intermittent failure detected: /marvin/tests/smoke/test_vpc_vpn.py
   Intermittent failure detected: /marvin/tests/smoke/test_hostha_kvm.py
   Smoke tests completed. 42 look OK, 41 have error(s)
   Only failed tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   ContextSuite context=TestAccounts>:setup | `Error` | 0.00 | test_accounts.py
   ContextSuite context=TestAddVmToSubDomain>:setup | `Error` | 0.00 | 
test_accounts.py
   test_DeleteDomain | `Error` | 0.69 | test_accounts.py
   test_forceDeleteDomain | `Failure` | 0.69 | test_accounts.py
   test_forceDeleteDomain | `Error` | 2.84 | test_accounts.py
   ContextSuite context=TestRemoveUserFromAccount>:setup | `Error` | 4.90 | 
test_accounts.py
   ContextSuite context=TestRemoteDiagnostics>:setup | `Error` | 0.00 | 
test_diagnostics.py
   ContextSuite context=TestDeployVmWithAffinityGroup>:setup | `Error` | 0.00 | 
test_affinity_groups_projects.py
   ContextSuite context=TestAsyncJob>:setup | `Error` | 0.00 | test_async_job.py
   ContextSuite context=TestDeployVirtioSCSIVM>:setup | `Error` | 0.00 | 
test_deploy_virtio_scsi_vm.py
   ContextSuite context=TestDeployVMFromISO>:setup | `Error` | 0.00 | 
test_deploy_vm_iso.py
   ContextSuite context=TestInternalLb>:setup | `Error` | 0.00 | 
test_internal_lb.py
   ContextSuite context=TestDeployVmWithVariedPlanners>:setup | `Error` | 0.00 
| test_deploy_vms_with_varied_deploymentplanners.py
   ContextSuite context=TestDeployVmWithUserData>:setup | 

[GitHub] [cloudstack] tobin-landricombe commented on issue #3866: New installation of v 4.13 on Centos 7 completes successfully, but the svms end up in a non-healthy state.

2020-04-04 Thread GitBox
tobin-landricombe commented on issue #3866: New installation of v 4.13 on 
Centos 7 completes successfully, but the svms end up in a non-healthy state.
URL: https://github.com/apache/cloudstack/issues/3866#issuecomment-609053055
 
 
   Same problem. Not a great introduction to the project.
   
   @hextht Did you get past this?


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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] [cloudstack] blueorangutan commented on issue #3969: Snapshot deletion issues

2020-04-04 Thread GitBox
blueorangutan commented on issue #3969: Snapshot deletion issues
URL: https://github.com/apache/cloudstack/pull/3969#issuecomment-609045028
 
 
   @andrijapanicsb 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 to 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] [cloudstack] andrijapanicsb commented on issue #3969: Snapshot deletion issues

2020-04-04 Thread GitBox
andrijapanicsb commented on issue #3969: Snapshot deletion issues
URL: https://github.com/apache/cloudstack/pull/3969#issuecomment-609044924
 
 
   @blueorangutan test


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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] [cloudstack] blueorangutan commented on issue #3969: Snapshot deletion issues

2020-04-04 Thread GitBox
blueorangutan commented on issue #3969: Snapshot deletion issues
URL: https://github.com/apache/cloudstack/pull/3969#issuecomment-609040966
 
 
   Packaging result: ✔centos7 ✔debian. JID-1125


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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] [cloudstack] blueorangutan commented on issue #3969: Snapshot deletion issues

2020-04-04 Thread GitBox
blueorangutan commented on issue #3969: Snapshot deletion issues
URL: https://github.com/apache/cloudstack/pull/3969#issuecomment-609038645
 
 
   @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 to 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] [cloudstack] nvazquez commented on issue #3969: Snapshot deletion issues

2020-04-04 Thread GitBox
nvazquez commented on issue #3969: Snapshot deletion issues
URL: https://github.com/apache/cloudstack/pull/3969#issuecomment-609038460
 
 
   @GabrielBrascher @harikrishna-patnala I have pushed Hari's commit to this PR
   @blueorangutan package


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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


[cloudstack] branch snapshot-deletion-issues updated (3eafab4 -> e4bef7b)

2020-04-04 Thread nvazquez
This is an automated email from the ASF dual-hosted git repository.

nvazquez pushed a change to branch snapshot-deletion-issues
in repository https://gitbox.apache.org/repos/asf/cloudstack.git.


from 3eafab4  Move the snapshotDao.remove(snapshotId); (#4006)
 add 9847b84  Fix deletesnapshot worflow to handle both snapshots created 
in primary storage and snapshots backed up to secondary storage
 add e4bef7b  Fix extra space

No new revisions were added by this update.

Summary of changes:
 .../storage/snapshot/DefaultSnapshotStrategy.java  | 26 ++
 1 file changed, 22 insertions(+), 4 deletions(-)



[GitHub] [cloudstack] andrijapanicsb commented on issue #4002: server: Search zone-wide storage pool when allocation algothrim is firstfitleastconsumed

2020-04-04 Thread GitBox
andrijapanicsb commented on issue #4002: server: Search zone-wide storage pool 
when allocation algothrim is firstfitleastconsumed
URL: https://github.com/apache/cloudstack/pull/4002#issuecomment-609019858
 
 
   @ustcweizhou @weizhouapache yes, of course


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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] [cloudstack] andrijapanicsb commented on issue #3984: Remove rolling-maintenance service from debian rules

2020-04-04 Thread GitBox
andrijapanicsb commented on issue #3984: Remove rolling-maintenance service 
from debian rules
URL: https://github.com/apache/cloudstack/pull/3984#issuecomment-609019088
 
 
   Finally...
   Merging based on 3 x LGTMs/Approvals, manual and automated regression tests. 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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


[cloudstack] branch master updated: Remove rolling-maintenance service from debian rules (#3984)

2020-04-04 Thread andrijapanic
This is an automated email from the ASF dual-hosted git repository.

andrijapanic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/master by this push:
 new 0c4bd53  Remove rolling-maintenance service from debian rules (#3984)
0c4bd53 is described below

commit 0c4bd5346ca5c67aefdf9f78b8c8f5a18d323c28
Author: Nicolas Vazquez 
AuthorDate: Sat Apr 4 09:09:35 2020 -0300

Remove rolling-maintenance service from debian rules (#3984)
---
 debian/rules | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/rules b/debian/rules
index 9055ee1..408a255 100755
--- a/debian/rules
+++ b/debian/rules
@@ -141,7 +141,7 @@ override_dh_auto_install:
cp -r test/integration/* 
$(DESTDIR)/usr/share/$(PACKAGE)-integration-tests/
 
 override_dh_systemd_enable:
-   dh_systemd_enable -pcloudstack-management -pcloudstack-agent 
-pcloudstack-usage -pcloudstack-rolling-maintenance@
+   dh_systemd_enable -pcloudstack-management -pcloudstack-agent 
-pcloudstack-usage
 
 override_dh_strip_nondeterminism:
# Disable dh_strip_nondeterminism to speed up the build



[GitHub] [cloudstack] andrijapanicsb closed issue #3981: Cannot build packages with latest master on Ubuntu 18.04

2020-04-04 Thread GitBox
andrijapanicsb closed issue #3981: Cannot build packages with latest master on 
Ubuntu 18.04
URL: https://github.com/apache/cloudstack/issues/3981
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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] [cloudstack] andrijapanicsb merged pull request #3984: Remove rolling-maintenance service from debian rules

2020-04-04 Thread GitBox
andrijapanicsb merged pull request #3984: Remove rolling-maintenance service 
from debian rules
URL: https://github.com/apache/cloudstack/pull/3984
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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] [cloudstack] andrijapanicsb removed a comment on issue #3984: Remove rolling-maintenance service from debian rules

2020-04-04 Thread GitBox
andrijapanicsb removed a comment on issue #3984: Remove rolling-maintenance 
service from debian rules
URL: https://github.com/apache/cloudstack/pull/3984#issuecomment-605985261
 
 
   2020-03-26 11:44:20,062 - CRITICAL - EXCEPTION: 
test_UpdateConfigParamWithScope: ['Traceback (most recent call last):\n', '  
File "/usr/lib64/python2.7/unittest/case.py", line 369, in run\n
testMethod()\n', '  File "/marvin/tests/smoke/test_global_settings.py", line 
63, in test_UpdateConfigParamWithScope\nself.assertEqual(configParam.value, 
updateConfigurationResponse.value, "Check if the update API returned \\\n', 
"UnboundLocalError: local variable 'configParam' referenced before 
assignment\n"]


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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] [cloudstack] andrijapanicsb commented on issue #3999: Update schema-41310to41400.sql

2020-04-04 Thread GitBox
andrijapanicsb commented on issue #3999: Update schema-41310to41400.sql
URL: https://github.com/apache/cloudstack/pull/3999#issuecomment-609018854
 
 
   Looking good, 2 x LGTMs, manual testing regression testing OK (failed test 
nothing to do with the PR).
   
   Merging. 


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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] [cloudstack] andrijapanicsb merged pull request #3999: Update schema-41310to41400.sql

2020-04-04 Thread GitBox
andrijapanicsb merged pull request #3999: Update schema-41310to41400.sql
URL: https://github.com/apache/cloudstack/pull/3999
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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] [cloudstack] blueorangutan removed a comment on issue #3984: Remove rolling-maintenance service from debian rules

2020-04-04 Thread GitBox
blueorangutan removed a comment on issue #3984: Remove rolling-maintenance 
service from debian rules
URL: https://github.com/apache/cloudstack/pull/3984#issuecomment-605447080
 
 
   Trillian test result (tid-1331)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 27340 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr3984-t1331-kvm-centos7.zip
   Intermittent failure detected: /marvin/tests/smoke/test_global_settings.py
   Intermittent failure detected: /marvin/tests/smoke/test_privategw_acl.py
   Intermittent failure detected: /marvin/tests/smoke/test_host_maintenance.py
   Smoke tests completed. 74 look OK, 3 have error(s)
   Only failed tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   test_UpdateConfigParamWithScope | `Error` | 0.07 | test_global_settings.py
   test_02_vpc_privategw_static_routes | `Failure` | 120.64 | 
test_privategw_acl.py
   test_03_vpc_privategw_restart_vpc_cleanup | `Failure` | 123.95 | 
test_privategw_acl.py
   test_04_rvpc_privategw_static_routes | `Failure` | 170.61 | 
test_privategw_acl.py
   test_02_cancel_host_maintenace_with_migration_jobs | `Failure` | 168.68 | 
test_host_maintenance.py
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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] [cloudstack] andrijapanicsb removed a comment on issue #3984: Remove rolling-maintenance service from debian rules

2020-04-04 Thread GitBox
andrijapanicsb removed a comment on issue #3984: Remove rolling-maintenance 
service from debian rules
URL: https://github.com/apache/cloudstack/pull/3984#issuecomment-605985118
 
 
   2020-03-26 18:25:03,722 - CRITICAL - FAILED: 
test_02_cancel_host_maintenace_with_migration_jobs: ['Traceback (most recent 
call last):\n', '  File "/usr/lib64/python2.7/unittest/case.py", line 369, in 
run\ntestMethod()\n', '  File 
"/marvin/tests/smoke/test_host_maintenance.py", line 267, in 
test_02_cancel_host_maintenace_with_migration_jobs\nself.fail("Cancel host 
maintenance failed {}".format(e[0]))\n', '  File 
"/usr/lib64/python2.7/unittest/case.py", line 450, in fail\nraise 
self.failureException(msg)\n', "AssertionError: Cancel host maintenance failed 
Job failed: {jobprocstatus : 0, created : u'2020-03-26T18:25:34+', 
jobresult : {errorcode : 530, errortext : u**'Failed to prepare host for 
maintenance due to: Host contains incoming VMs migrating. Please wait for them 
to complete before putting to maintenance.'**}, cmd : 
u'org.apache.cloudstack.api.command.admin.host.PrepareForMaintenanceCmd', 
userid : u'468cf55a-6f4e-11ea-bae1-1e004d0108b3', jobstatus : 2, jobid : 
u'260a1baf-01bd-47c9-b619-855cdccb7ebe', jobresultcode : 530, jobinstanceid : 
u'0f788fc5-a6e0-4682-8b3a-82b462124b9b', jobresulttype : u'object', 
jobinstancetype : u'Host', completed : u'2020-03-26T18:25:34+', accountid : 
u'468bb53a-6f4e-11ea-bae1-1e004d0108b3'}\n"]


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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


[cloudstack] branch master updated: Update schema-41310to41400.sql (#3999)

2020-04-04 Thread andrijapanic
This is an automated email from the ASF dual-hosted git repository.

andrijapanic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/master by this push:
 new d52f3f4  Update schema-41310to41400.sql (#3999)
d52f3f4 is described below

commit d52f3f4a6b33618a6f6c50d97dc1a9545880886c
Author: Andrija Panic <45762285+andrijapani...@users.noreply.github.com>
AuthorDate: Sat Apr 4 14:07:14 2020 +0200

Update schema-41310to41400.sql (#3999)

* Update schema-41310to41400.sql

* update desc

* update the config key as well

* Update schema-41310to41400.sql (#4012)

* Update schema-41310to41400.sql

* update configkey desc
---
 engine/schema/src/main/resources/META-INF/db/schema-41310to41400.sql | 4 
 server/src/main/java/com/cloud/storage/snapshot/SnapshotManager.java | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git 
a/engine/schema/src/main/resources/META-INF/db/schema-41310to41400.sql 
b/engine/schema/src/main/resources/META-INF/db/schema-41310to41400.sql
index bc00941..baa7bcf 100644
--- a/engine/schema/src/main/resources/META-INF/db/schema-41310to41400.sql
+++ b/engine/schema/src/main/resources/META-INF/db/schema-41310to41400.sql
@@ -19,6 +19,10 @@
 -- Schema upgrade from 4.13.1.0 to 4.14.0.0
 --;
 
+-- Update the description to indicate this only works with KVM + Ceph 
+-- (not implemented properly atm for KVM+NFS/local, and it accidentaly works 
with XS + NFS. Not applicable for VMware)
+UPDATE `cloud`.`configuration` SET `description`='Indicates whether to always 
backup primary storage snapshot to secondary storage. Keeping snapshots only on 
Primary storage is applicable for KVM + Ceph only.' WHERE  
`name`='snapshot.backup.to.secondary';
+
 -- KVM: enable storage data motion on KVM hypervisor_capabilities
 UPDATE `cloud`.`hypervisor_capabilities` SET `storage_motion_supported` = 1 
WHERE `hypervisor_capabilities`.`hypervisor_type` = 'KVM';
 
diff --git 
a/server/src/main/java/com/cloud/storage/snapshot/SnapshotManager.java 
b/server/src/main/java/com/cloud/storage/snapshot/SnapshotManager.java
index 407ffa3..c900b2d 100644
--- a/server/src/main/java/com/cloud/storage/snapshot/SnapshotManager.java
+++ b/server/src/main/java/com/cloud/storage/snapshot/SnapshotManager.java
@@ -57,7 +57,7 @@ public interface SnapshotManager extends Configurable {
 "Time in seconds between retries in backing up snapshot to 
secondary", false, ConfigKey.Scope.Global, null);
 
 public static final ConfigKey BackupSnapshotAfterTakingSnapshot = 
new ConfigKey(Boolean.class, "snapshot.backup.to.secondary",  
"Snapshots", "true",
-"Indicates whether to always backup primary storage snapshot to 
secondary storage", false, ConfigKey.Scope.Global, null);
+"Indicates whether to always backup primary storage snapshot to 
secondary storage. Keeping snapshots only on Primary storage is applicable for 
KVM + Ceph only.", false, ConfigKey.Scope.Global, null);
 
 void deletePoliciesForVolume(Long volumeId);
 



[GitHub] [cloudstack] blueorangutan commented on issue #3936: [HEALTH][master/4.14] Health Check Run

2020-04-04 Thread GitBox
blueorangutan commented on issue #3936: [HEALTH][master/4.14] Health Check Run
URL: https://github.com/apache/cloudstack/pull/3936#issuecomment-609015513
 
 
   Trillian test result (tid-1351)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 141080 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr3936-t1351-kvm-centos7.zip
   Intermittent failure detected: /marvin/tests/smoke/test_accounts.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_affinity_groups_projects.py
   Intermittent failure detected: /marvin/tests/smoke/test_async_job.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_deploy_virtio_scsi_vm.py
   Intermittent failure detected: /marvin/tests/smoke/test_deploy_vm_iso.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_deploy_vms_with_varied_deploymentplanners.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_deploy_vm_with_userdata.py
   Intermittent failure detected: /marvin/tests/smoke/test_diagnostics.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_domain_service_offerings.py
   Intermittent failure detected: /marvin/tests/smoke/test_internal_lb.py
   Intermittent failure detected: /marvin/tests/smoke/test_iso.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_kubernetes_supported_versions.py
   Intermittent failure detected: /marvin/tests/smoke/test_list_ids_parameter.py
   Intermittent failure detected: /marvin/tests/smoke/test_loadbalance.py
   Intermittent failure detected: /marvin/tests/smoke/test_metrics_api.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_multipleips_per_nic.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_nested_virtualization.py
   Intermittent failure detected: /marvin/tests/smoke/test_network_acl.py
   Intermittent failure detected: /marvin/tests/smoke/test_network.py
   Intermittent failure detected: /marvin/tests/smoke/test_nic_adapter_type.py
   Intermittent failure detected: /marvin/tests/smoke/test_password_server.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_portforwardingrules.py
   Intermittent failure detected: /marvin/tests/smoke/test_privategw_acl.py
   Intermittent failure detected: /marvin/tests/smoke/test_projects.py
   Intermittent failure detected: /marvin/tests/smoke/test_reset_vm_on_reboot.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_resource_accounting.py
   Intermittent failure detected: /marvin/tests/smoke/test_router_dhcphosts.py
   Intermittent failure detected: /marvin/tests/smoke/test_router_dns.py
   Intermittent failure detected: /marvin/tests/smoke/test_router_dnsservice.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_routers_iptables_default_policy.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_routers_network_ops.py
   Intermittent failure detected: /marvin/tests/smoke/test_routers.py
   Intermittent failure detected: /marvin/tests/smoke/test_service_offerings.py
   Intermittent failure detected: /marvin/tests/smoke/test_snapshots.py
   Intermittent failure detected: /marvin/tests/smoke/test_templates.py
   Intermittent failure detected: /marvin/tests/smoke/test_usage.py
   Intermittent failure detected: /marvin/tests/smoke/test_vm_life_cycle.py
   Intermittent failure detected: /marvin/tests/smoke/test_vpc_redundant.py
   Intermittent failure detected: /marvin/tests/smoke/test_vpc_router_nics.py
   Intermittent failure detected: /marvin/tests/smoke/test_vpc_vpn.py
   Intermittent failure detected: /marvin/tests/smoke/test_hostha_kvm.py
   Smoke tests completed. 42 look OK, 41 have error(s)
   Only failed tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   ContextSuite context=TestAccounts>:setup | `Error` | 0.00 | test_accounts.py
   ContextSuite context=TestAddVmToSubDomain>:setup | `Error` | 0.00 | 
test_accounts.py
   test_DeleteDomain | `Error` | 0.66 | test_accounts.py
   test_forceDeleteDomain | `Failure` | 0.66 | test_accounts.py
   test_forceDeleteDomain | `Error` | 2.81 | test_accounts.py
   ContextSuite context=TestRemoveUserFromAccount>:setup | `Error` | 4.92 | 
test_accounts.py
   ContextSuite context=TestRemoteDiagnostics>:setup | `Error` | 0.00 | 
test_diagnostics.py
   ContextSuite context=TestDeployVmWithAffinityGroup>:setup | `Error` | 0.00 | 
test_affinity_groups_projects.py
   ContextSuite context=TestAsyncJob>:setup | `Error` | 0.00 | test_async_job.py
   ContextSuite context=TestDeployVirtioSCSIVM>:setup | `Error` | 0.00 | 
test_deploy_virtio_scsi_vm.py
   ContextSuite context=TestDeployVMFromISO>:setup | `Error` | 0.00 | 
test_deploy_vm_iso.py
   ContextSuite context=TestInternalLb>:setup | `Error` | 0.00 | 
test_internal_lb.py
   ContextSuite context=TestDeployVmWithVariedPlanners>:setup | `Error` | 0.00 
| test_deploy_vms_with_varied_deploymentplanners.py
   ContextSuite 

[GitHub] [cloudstack] blueorangutan commented on issue #3936: [HEALTH][master/4.14] Health Check Run

2020-04-04 Thread GitBox
blueorangutan commented on issue #3936: [HEALTH][master/4.14] Health Check Run
URL: https://github.com/apache/cloudstack/pull/3936#issuecomment-609005710
 
 
   Trillian test result (tid-1350)
   Environment: xenserver-71 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 135182 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr3936-t1350-xenserver-71.zip
   Intermittent failure detected: /marvin/tests/smoke/test_accounts.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_affinity_groups_projects.py
   Intermittent failure detected: /marvin/tests/smoke/test_async_job.py
   Intermittent failure detected: /marvin/tests/smoke/test_deploy_vm_iso.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_deploy_vms_with_varied_deploymentplanners.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_deploy_vm_with_userdata.py
   Intermittent failure detected: /marvin/tests/smoke/test_diagnostics.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_domain_service_offerings.py
   Intermittent failure detected: /marvin/tests/smoke/test_internal_lb.py
   Intermittent failure detected: /marvin/tests/smoke/test_iso.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_kubernetes_supported_versions.py
   Intermittent failure detected: /marvin/tests/smoke/test_list_ids_parameter.py
   Intermittent failure detected: /marvin/tests/smoke/test_loadbalance.py
   Intermittent failure detected: /marvin/tests/smoke/test_metrics_api.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_multipleips_per_nic.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_nested_virtualization.py
   Intermittent failure detected: /marvin/tests/smoke/test_network_acl.py
   Intermittent failure detected: /marvin/tests/smoke/test_network.py
   Intermittent failure detected: /marvin/tests/smoke/test_nic_adapter_type.py
   Intermittent failure detected: /marvin/tests/smoke/test_password_server.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_portforwardingrules.py
   Intermittent failure detected: /marvin/tests/smoke/test_privategw_acl.py
   Intermittent failure detected: /marvin/tests/smoke/test_projects.py
   Intermittent failure detected: /marvin/tests/smoke/test_reset_vm_on_reboot.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_resource_accounting.py
   Intermittent failure detected: /marvin/tests/smoke/test_router_dhcphosts.py
   Intermittent failure detected: /marvin/tests/smoke/test_router_dns.py
   Intermittent failure detected: /marvin/tests/smoke/test_router_dnsservice.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_routers_iptables_default_policy.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_routers_network_ops.py
   Intermittent failure detected: /marvin/tests/smoke/test_routers.py
   Intermittent failure detected: /marvin/tests/smoke/test_scale_vm.py
   Intermittent failure detected: /marvin/tests/smoke/test_service_offerings.py
   Intermittent failure detected: /marvin/tests/smoke/test_snapshots.py
   Intermittent failure detected: /marvin/tests/smoke/test_templates.py
   Intermittent failure detected: /marvin/tests/smoke/test_usage.py
   Intermittent failure detected: /marvin/tests/smoke/test_vm_life_cycle.py
   Intermittent failure detected: /marvin/tests/smoke/test_vpc_redundant.py
   Intermittent failure detected: /marvin/tests/smoke/test_vpc_router_nics.py
   Intermittent failure detected: /marvin/tests/smoke/test_vpc_vpn.py
   Smoke tests completed. 43 look OK, 40 have error(s)
   Only failed tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   ContextSuite context=TestAccounts>:setup | `Error` | 0.00 | test_accounts.py
   ContextSuite context=TestAddVmToSubDomain>:setup | `Error` | 0.00 | 
test_accounts.py
   test_DeleteDomain | `Error` | 1.38 | test_accounts.py
   test_forceDeleteDomain | `Failure` | 1.22 | test_accounts.py
   test_forceDeleteDomain | `Error` | 1.71 | test_accounts.py
   ContextSuite context=TestRemoveUserFromAccount>:setup | `Error` | 3.04 | 
test_accounts.py
   ContextSuite context=TestDeployVmWithAffinityGroup>:setup | `Error` | 0.00 | 
test_affinity_groups_projects.py
   ContextSuite context=TestAsyncJob>:setup | `Error` | 0.00 | test_async_job.py
   ContextSuite context=TestDeployVMFromISO>:setup | `Error` | 0.00 | 
test_deploy_vm_iso.py
   ContextSuite context=TestInternalLb>:setup | `Error` | 0.00 | 
test_internal_lb.py
   ContextSuite context=TestDeployVmWithVariedPlanners>:setup | `Error` | 0.00 
| test_deploy_vms_with_varied_deploymentplanners.py
   ContextSuite context=TestDeployVmWithUserData>:setup | `Error` | 0.00 | 
test_deploy_vm_with_userdata.py
   test_01_create_iso_with_checksum_sha1 | `Error` | 65.34 | test_iso.py
   test_02_create_iso_with_checksum_sha256 | `Error` | 65.33 | test_iso.py
   test_03_create_iso_with_checksum_md5 | `Error` | 65.34 | test_iso.py
  

[GitHub] [cloudstack] blueorangutan commented on issue #3984: Remove rolling-maintenance service from debian rules

2020-04-04 Thread GitBox
blueorangutan commented on issue #3984: Remove rolling-maintenance service from 
debian rules
URL: https://github.com/apache/cloudstack/pull/3984#issuecomment-608997069
 
 
   Trillian test result (tid-1356)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 45907 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr3984-t1356-kvm-centos7.zip
   Intermittent failure detected: 
/marvin/tests/smoke/test_kubernetes_clusters.py
   Smoke tests completed. 83 look OK, 0 have error(s)
   Only failed tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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] [cloudstack] blueorangutan commented on issue #3999: Update schema-41310to41400.sql

2020-04-04 Thread GitBox
blueorangutan commented on issue #3999: Update schema-41310to41400.sql
URL: https://github.com/apache/cloudstack/pull/3999#issuecomment-608991687
 
 
   Trillian test result (tid-1357)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 41869 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr3999-t1357-kvm-centos7.zip
   Intermittent failure detected: /marvin/tests/smoke/test_internal_lb.py
   Smoke tests completed. 82 look OK, 1 have error(s)
   Only failed tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   test_04_rvpc_internallb_haproxy_stats_on_all_interfaces | `Error` | 186.87 | 
test_internal_lb.py
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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] [cloudstack] nvazquez opened a new pull request #4013: Allow IMG extension for QCOW2 format

2020-04-04 Thread GitBox
nvazquez opened a new pull request #4013: Allow IMG extension for QCOW2 format
URL: https://github.com/apache/cloudstack/pull/4013
 
 
   ## Description
   Attempts to register QCOW2 template with .img extension fails fast:
   
![image](https://user-images.githubusercontent.com/5295080/78420699-e110d400-7627-11ea-88e7-6332fd88a66d.png)
   
   This fix allows registering a QCOW2 template with .img extension
   
   ## Types of changes
   - [ ] Breaking change (fix or feature that would cause existing 
functionality to change)
   - [ ] New feature (non-breaking change which adds functionality)
   - [ ] Bug fix (non-breaking change which fixes an issue)
   - [x] Enhancement (improves an existing feature and functionality)
   - [ ] Cleanup (Code refactoring and cleanup, that may add test cases)
   
   ## Screenshots (if appropriate):
   
   ## How Has This Been Tested?
   Register templates: 
https://cloud-images.ubuntu.com/minimal/releases/bionic/release/ubuntu-18.04-minimal-cloudimg-amd64.img,
 http://dl.openvm.eu/cloudstack/macchinina/x86_64/macchinina.img with format = 
QCOW2
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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