[GitHub] [cloudstack] cl-k-takahashi opened a new issue #3762: [DB] cloud.host_pod_ref.description is not 1NF.

2019-12-11 Thread GitBox
cl-k-takahashi opened a new issue #3762: [DB] cloud.host_pod_ref.description is 
not 1NF.
URL: https://github.com/apache/cloudstack/issues/3762
 
 
   
   
   # ISSUE TYPE
   
* Improvement Request
   
   # COMPONENT NAME
   
   ~~~
   DB schema
   ~~~
   
   # CLOUDSTACK VERSION
   
   
   ~~~
   master
   ~~~
   
   # SUMMARY
   
   cloud.host_pod_ref.description may contain multiple tuples. This is not 1NF.
   ```
   /*
* POD Description is refactored to:
* 
---,---,...
   */
   ```
   I propose to use separate ip range table like this:
   ```
   mysql> desc pod_ip_range_map;
   
++-+--+-+-++
   | Field  | Type| Null | Key | Default | Extra
  |
   
++-+--+-+-++
   | id | bigint(20) unsigned | NO   | PRI | NULL| 
auto_increment |
   | pod_id | bigint(20) unsigned | YES  | MUL | NULL|  
  |
   | start_ip   | varchar(15) | YES  | | NULL|  
  |
   | end_ip | varchar(15) | YES  | | NULL|  
  |
   | for_system_vms | tinyint(1)  | YES  | | NULL|  
  |
   | vlan_id| varchar(255)| YES  | | NULL|  
  |
   
++-+--+-+-++
   6 rows in set (0.00 sec)
   ```
   
   


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 #3601: JDK11, Debian 10 support

2019-12-11 Thread GitBox
blueorangutan commented on issue #3601: JDK11, Debian 10 support
URL: https://github.com/apache/cloudstack/pull/3601#issuecomment-564837655
 
 
   Trillian test result (tid-608)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 41552 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr3601-t608-kvm-centos7.zip
   Intermittent failure detected: /marvin/tests/smoke/test_accounts.py
   Intermittent failure detected: /marvin/tests/smoke/test_hostha_simulator.py
   Intermittent failure detected: /marvin/tests/smoke/test_iso.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_outofbandmanagement.py
   Intermittent failure detected: /marvin/tests/smoke/test_templates.py
   Intermittent failure detected: /marvin/tests/smoke/test_volumes.py
   Intermittent failure detected: /marvin/tests/smoke/test_vpc_redundant.py
   Intermittent failure detected: /marvin/tests/smoke/test_hostha_kvm.py
   Smoke tests completed. 69 look OK, 8 have error(s)
   Only failed tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   ContextSuite context=TestTemplateHierarchy>:setup | `Error` | 1518.23 | 
test_accounts.py
   runTest | `Error` | 0.00 | test_hostha_simulator.py
   test_04_extract_Iso | `Failure` | 1.07 | test_iso.py
   runTest | `Error` | 0.00 | test_outofbandmanagement.py
   test_04_extract_template | `Failure` | 1.06 | test_templates.py
   test_06_download_detached_volume | `Failure` | 10.40 | test_volumes.py
   test_01_create_redundant_VPC_2tiers_4VMs_4IPs_4PF_ACL | `Failure` | 369.16 | 
test_vpc_redundant.py
   test_04_rvpc_network_garbage_collector_nics | `Error` | 3815.17 | 
test_vpc_redundant.py
   runTest | `Error` | 0.00 | test_hostha_kvm.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


[cloudstack-primate] branch master updated: views: fix jerky refresh behaviour in list view

2019-12-11 Thread rohit
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 8c5b0fc  views: fix jerky refresh behaviour in list view
8c5b0fc is described below

commit 8c5b0fc02a9b18c71fe241c187dd319e4ad38b36
Author: Rohit Yadav 
AuthorDate: Thu Dec 12 06:24:39 2019 +0530

views: fix jerky refresh behaviour in list view

Signed-off-by: Rohit Yadav 
---
 src/views/AutogenView.vue | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/views/AutogenView.vue b/src/views/AutogenView.vue
index 4bd14ee..0050239 100644
--- a/src/views/AutogenView.vue
+++ b/src/views/AutogenView.vue
@@ -313,7 +313,10 @@ export default {
   },
   methods: {
 fetchData () {
-  this.routeName = this.$route.name
+  if (this.routeName !== this.$route.name) {
+this.routeName = this.$route.name
+this.items = []
+  }
   if (!this.routeName) {
 this.routeName = this.$route.matched[this.$route.matched.length - 
1].parent.name
   }
@@ -321,7 +324,6 @@ export default {
   this.actions = []
   this.columns = []
   this.columnKeys = []
-  this.items = []
   this.treeData = []
   this.treeSelected = {}
   var params = { listall: true }



[cloudstack-primate] branch master updated: compute: Custom VM migration form (#67)

2019-12-11 Thread rohit
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new ec16639  compute: Custom VM migration form (#67)
ec16639 is described below

commit ec16639a9794ef1b0ef234e2c0ed88c460446c16
Author: Ritchie Vincent 
AuthorDate: Thu Dec 12 00:16:42 2019 +

compute: Custom VM migration form (#67)

Custom VM migration form

Signed-off-by: Rohit Yadav 
---
 package-lock.json   | 614 
 package.json|  16 +-
 src/locales/en.json |   2 +-
 src/utils/methods.js|  60 
 src/views/AutogenView.vue   |   1 +
 src/views/auth/Login.vue|   1 +
 src/views/compute/MigrateWizard.vue | 204 +++-
 7 files changed, 673 insertions(+), 225 deletions(-)

diff --git a/package-lock.json b/package-lock.json
index 70c500a..1e54b65 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -2304,40 +2304,40 @@
   }
 },
 "@fortawesome/fontawesome-common-types": {
-  "version": "0.2.25",
-  "resolved": 
"https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.25.tgz;,
-  "integrity": 
"sha512-3RuZPDuuPELd7RXtUqTCfed14fcny9UiPOkdr2i+cYxBoTOfQgxcDoq77fHiiHcgWuo1LoBUpvGxFF1H/y7s3Q=="
+  "version": "0.2.26",
+  "resolved": 
"https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.26.tgz;,
+  "integrity": 
"sha512-CcM/fIFwZlRdiWG/25xE/wHbtyUuCtqoCTrr6BsWw7hH072fR++n4L56KPydAr3ANgMJMjT8v83ZFIsDc7kE+A=="
 },
 "@fortawesome/fontawesome-svg-core": {
-  "version": "1.2.25",
-  "resolved": 
"https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-1.2.25.tgz;,
-  "integrity": 
"sha512-MotKnn53JKqbkLQiwcZSBJVYtTgIKFbh7B8+kd05TSnfKYPFmjKKI59o2fpz5t0Hzl35vVGU6+N4twoOpZUrqA==",
+  "version": "1.2.26",
+  "resolved": 
"https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-1.2.26.tgz;,
+  "integrity": 
"sha512-3Dfd/v2IztP1TxKOxZiB5+4kaOZK9mNy0KU1vVK7nFlPWz3gzxrCWB+AloQhQUoJ8HhGqbzjliK89Vl7PExGbw==",
   "requires": {
-"@fortawesome/fontawesome-common-types": "^0.2.25"
+"@fortawesome/fontawesome-common-types": "^0.2.26"
   }
 },
 "@fortawesome/free-brands-svg-icons": {
-  "version": "5.11.2",
-  "resolved": 
"https://registry.npmjs.org/@fortawesome/free-brands-svg-icons/-/free-brands-svg-icons-5.11.2.tgz;,
-  "integrity": 
"sha512-wKK5znpHiZ2S0VgOvbeAnYuzkk3H86rxWajD9PVpfBj3s/kySEWTFKh/uLPyxiTOx8Tsd0OGN4En/s9XudVHLQ==",
+  "version": "5.12.0",
+  "resolved": 
"https://registry.npmjs.org/@fortawesome/free-brands-svg-icons/-/free-brands-svg-icons-5.12.0.tgz;,
+  "integrity": 
"sha512-50uCFzVUki3wfmFmrMNLFhOt8dP6YZ53zwR4dK9FR7Lwq1IVHXnSBb8MtGLe3urLJ2sA+CSu7Pc7s3i6/zLxmA==",
   "requires": {
-"@fortawesome/fontawesome-common-types": "^0.2.25"
+"@fortawesome/fontawesome-common-types": "^0.2.26"
   }
 },
 "@fortawesome/free-regular-svg-icons": {
-  "version": "5.11.2",
-  "resolved": 
"https://registry.npmjs.org/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-5.11.2.tgz;,
-  "integrity": 
"sha512-k0vbThRv9AvnXYBWi1gn1rFW4X7co/aFkbm0ZNmAR5PoWb9vY9EDDDobg8Ay4ISaXtCPypvJ0W1FWkSpLQwZ6w==",
+  "version": "5.12.0",
+  "resolved": 
"https://registry.npmjs.org/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-5.12.0.tgz;,
+  "integrity": 
"sha512-FAvpmylTs0PosHwHrWPQX6/7ODc9M11kCE6AOAujFufDYzqTj2cPHT4yJO7zTEkKdAbbusJzbWpnOboMuyjeQA==",
   "requires": {
-"@fortawesome/fontawesome-common-types": "^0.2.25"
+"@fortawesome/fontawesome-common-types": "^0.2.26"
   }
 },
 "@fortawesome/free-solid-svg-icons": {
-  "version": "5.11.2",
-  "resolved": 
"https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.11.2.tgz;,
-  "integrity": 
"sha512-zBue4i0PAZJUXOmLBBvM7L0O7wmsDC8dFv9IhpW5QL4kT9xhhVUsYg/LX1+5KaukWq4/cbDcKT+RT1aRe543sg==",
+  "version": "5.12.0",
+  "resolved": 
"https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.12.0.tgz;,
+  "integrity": 
"sha512-CnpsWs6GhTs9ekNB3d8rcO5HYqRkXbYKf2YNiAlTWbj5eVlPqsd/XH1F9If8jkcR1aegryAbln/qYeKVZzpM0g==",
   "requires": {
-"@fortawesome/fontawesome-common-types": "^0.2.25"
+"@fortawesome/fontawesome-common-types": "^0.2.26"
   }
 },
 "@fortawesome/vue-fontawesome": {
@@ -3346,8 +3346,7 @@
 "@types/color-name": {
   "version": "1.1.1",
   "resolved": 
"https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz;,
-  "integrity": 

[GitHub] [cloudstack] blueorangutan commented on issue #3553: [WIP] [DO NOT MERGE] CloudStack Backup & Recovery Framework

2019-12-11 Thread GitBox
blueorangutan commented on issue #3553: [WIP] [DO NOT MERGE] CloudStack Backup 
& Recovery Framework
URL: https://github.com/apache/cloudstack/pull/3553#issuecomment-564787034
 
 
   Packaging result: ✖centos6 ✔centos7 ✔debian. JID-458


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 #3553: [WIP] [DO NOT MERGE] CloudStack Backup & Recovery Framework

2019-12-11 Thread GitBox
blueorangutan commented on issue #3553: [WIP] [DO NOT MERGE] CloudStack Backup 
& Recovery Framework
URL: https://github.com/apache/cloudstack/pull/3553#issuecomment-564782390
 
 
   @rhtyd a Jenkins job has been kicked to build packages. I'll keep you posted 
as I make progress.


This is an automated message from the Apache Git Service.
To respond to the message, please log on 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] rhtyd commented on issue #3553: [WIP] [DO NOT MERGE] CloudStack Backup & Recovery Framework

2019-12-11 Thread GitBox
rhtyd commented on issue #3553: [WIP] [DO NOT MERGE] CloudStack Backup & 
Recovery Framework
URL: https://github.com/apache/cloudstack/pull/3553#issuecomment-564782159
 
 
   @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 #3715: break session only on illegal origin

2019-12-11 Thread GitBox
blueorangutan commented on issue #3715: break session only on illegal origin
URL: https://github.com/apache/cloudstack/pull/3715#issuecomment-564690121
 
 
   Trillian test result (tid-603)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 34250 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr3715-t603-kvm-centos7.zip
   Intermittent failure detected: /marvin/tests/smoke/test_hostha_simulator.py
   Intermittent failure detected: 
/marvin/tests/smoke/test_outofbandmanagement.py
   Intermittent failure detected: /marvin/tests/smoke/test_privategw_acl.py
   Intermittent failure detected: /marvin/tests/smoke/test_hostha_kvm.py
   Smoke tests completed. 74 look OK, 3 have error(s)
   Only failed tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   runTest | `Error` | 0.00 | test_hostha_simulator.py
   runTest | `Error` | 0.00 | test_outofbandmanagement.py
   runTest | `Error` | 0.00 | test_hostha_kvm.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


[cloudstack] branch master updated: Fix OS category for some OS-es added in 4.13 (#3746)

2019-12-11 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 0d92b92  Fix OS category for some OS-es added in 4.13 (#3746)
0d92b92 is described below

commit 0d92b929359de4b6cae408c6fe5a47504840ecac
Author: Andrija Panic <45762285+andrijapani...@users.noreply.github.com>
AuthorDate: Wed Dec 11 19:02:06 2019 +0100

Fix OS category for some OS-es added in 4.13 (#3746)
---
 .../src/main/resources/META-INF/db/schema-41300to41400.sql  | 13 +
 1 file changed, 13 insertions(+)

diff --git 
a/engine/schema/src/main/resources/META-INF/db/schema-41300to41400.sql 
b/engine/schema/src/main/resources/META-INF/db/schema-41300to41400.sql
index 43e282d..137dd2c 100644
--- a/engine/schema/src/main/resources/META-INF/db/schema-41300to41400.sql
+++ b/engine/schema/src/main/resources/META-INF/db/schema-41300to41400.sql
@@ -21,3 +21,16 @@
 
 -- KVM: enable storage data motion on KVM hypervisor_capabilities
 UPDATE `cloud`.`hypervisor_capabilities` SET `storage_motion_supported` = 1 
WHERE `hypervisor_capabilities`.`hypervisor_type` = 'KVM';
+
+-- Fix OS category for some Ubuntu and RedHat OS-es
+UPDATE `cloud`.`guest_os` SET `category_id`='10' WHERE `id`=277 AND 
display_name="Ubuntu 17.04";
+UPDATE `cloud`.`guest_os` SET `category_id`='10' WHERE `id`=278 AND 
display_name="Ubuntu 17.10";
+UPDATE `cloud`.`guest_os` SET `category_id`='10' WHERE `id`=279 AND 
display_name="Ubuntu 18.04 LTS";
+UPDATE `cloud`.`guest_os` SET `category_id`='10' WHERE `id`=280 AND 
display_name="Ubuntu 18.10";
+UPDATE `cloud`.`guest_os` SET `category_id`='10' WHERE `id`=281 AND 
display_name="Ubuntu 19.04";
+UPDATE `cloud`.`guest_os` SET `category_id`='4' WHERE `id`=282 AND 
display_name="Red Hat Enterprise Linux 7.3";
+UPDATE `cloud`.`guest_os` SET `category_id`='4' WHERE `id`=283 AND 
display_name="Red Hat Enterprise Linux 7.4";
+UPDATE `cloud`.`guest_os` SET `category_id`='4' WHERE `id`=284 AND 
display_name="Red Hat Enterprise Linux 7.5";
+UPDATE `cloud`.`guest_os` SET `category_id`='4' WHERE `id`=285 AND 
display_name="Red Hat Enterprise Linux 7.6";
+UPDATE `cloud`.`guest_os` SET `category_id`='4' WHERE `id`=286 AND 
display_name="Red Hat Enterprise Linux 8.0";
+



[GitHub] [cloudstack] andrijapanicsb commented on issue #3746: Fix OS category for some OS-es added in 4.13

2019-12-11 Thread GitBox
andrijapanicsb commented on issue #3746: Fix OS category for some OS-es added 
in 4.13
URL: https://github.com/apache/cloudstack/pull/3746#issuecomment-564663055
 
 
   Merging based on 2 x approvals and manual test results.


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 #3746: Fix OS category for some OS-es added in 4.13

2019-12-11 Thread GitBox
andrijapanicsb merged pull request #3746: Fix OS category for some OS-es added 
in 4.13
URL: https://github.com/apache/cloudstack/pull/3746
 
 
   


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-primate] branch master updated (e7e4961 -> 435a24c)

2019-12-11 Thread rohit
This is an automated email from the ASF dual-hosted git repository.

rohit pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack-primate.git.


from e7e4961  setting: reusable component (#63)
 add 435a24c  iam: Account Cert Tab (#66)

No new revisions were added by this update.

Summary of changes:
 docs/api/apis.remaining|   3 -
 src/components/view/DetailSettings.vue |   4 +-
 src/components/view/ResourceView.vue   |   7 +-
 src/components/view/SettingsTab.vue|  18 +--
 src/config/section/iam.js  |  29 +++-
 src/locales/en.json|   4 +
 src/views/AutogenView.vue  |   9 ++
 src/views/iam/SSLCertificateTab.vue| 250 +
 8 files changed, 303 insertions(+), 21 deletions(-)
 create mode 100644 src/views/iam/SSLCertificateTab.vue



[GitHub] [cloudstack] andrijapanicsb commented on issue #3723: a conditional to prevent creation of a field

2019-12-11 Thread GitBox
andrijapanicsb commented on issue #3723: a conditional to prevent creation of a 
field
URL: https://github.com/apache/cloudstack/pull/3723#issuecomment-564646090
 
 
   +1 


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] DaanHoogland commented on issue #3723: a conditional to prevent creation of a field

2019-12-11 Thread GitBox
DaanHoogland commented on issue #3723: a conditional to prevent creation of a 
field
URL: https://github.com/apache/cloudstack/pull/3723#issuecomment-564590695
 
 
   @GabrielBrascher @andrijapanicsb should we backport this to 4.13? It seems 
like a genuine regression to me.


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 #3732: Enable PVLAN support on L2 networks

2019-12-11 Thread GitBox
blueorangutan commented on issue #3732: Enable PVLAN support on L2 networks
URL: https://github.com/apache/cloudstack/pull/3732#issuecomment-564546630
 
 
   Packaging result: ✖centos6 ✔centos7 ✔debian. JID-457


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] onitake opened a new pull request #3761: [FIX] [BACKPORT] [4.13] Rethrow takeVMSnapshot() exception

2019-12-11 Thread GitBox
onitake opened a new pull request #3761: [FIX] [BACKPORT] [4.13] Rethrow 
takeVMSnapshot() exception
URL: https://github.com/apache/cloudstack/pull/3761
 
 
   ## Description
   
   
   
   
   
   
   
   
   Backport of #3546 to 4.13: Rethrow takeVMSnapshot() exception instead of 
returning null in VMSnapshotManagerImpl.
   
   Contributes to: #3518
   
   ## Types of changes
   
   - [ ] Breaking change (fix or feature that would cause existing 
functionality to change)
   - [ ] New feature (non-breaking change which adds functionality)
   - [x] Bug fix (non-breaking change which fixes an issue)
   - [ ] 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?
   
   
   
   The change has been tested on the master branch for 4.14. See #3546.
   
   
   


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 #3732: Enable PVLAN support on L2 networks

2019-12-11 Thread GitBox
blueorangutan commented on issue #3732: Enable PVLAN support on L2 networks
URL: https://github.com/apache/cloudstack/pull/3732#issuecomment-564536985
 
 
   @andrijapanicsb 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] andrijapanicsb commented on issue #3732: Enable PVLAN support on L2 networks

2019-12-11 Thread GitBox
andrijapanicsb commented on issue #3732: Enable PVLAN support on L2 networks
URL: https://github.com/apache/cloudstack/pull/3732#issuecomment-564536852
 
 
   @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 #3601: JDK11, Debian 10 support

2019-12-11 Thread GitBox
blueorangutan commented on issue #3601: JDK11, Debian 10 support
URL: https://github.com/apache/cloudstack/pull/3601#issuecomment-564522839
 
 
   Packaging result: ✖centos6 ✔centos7 ✔debian. JID-456


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 #3601: JDK11, Debian 10 support

2019-12-11 Thread GitBox
blueorangutan commented on issue #3601: JDK11, Debian 10 support
URL: https://github.com/apache/cloudstack/pull/3601#issuecomment-564514303
 
 
   @rhtyd a Jenkins job has been kicked to build packages. I'll keep you posted 
as I make progress.


This is an automated message from the Apache Git Service.
To respond to the message, please log on 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] rhtyd commented on issue #3601: JDK11, Debian 10 support

2019-12-11 Thread GitBox
rhtyd commented on issue #3601: JDK11, Debian 10 support
URL: https://github.com/apache/cloudstack/pull/3601#issuecomment-564514106
 
 
   @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] ustcweizhou opened a new pull request #3760: New feature: Resource count (CPU/RAM) take only running vms into calculation

2019-12-11 Thread GitBox
ustcweizhou opened a new pull request #3760: New feature: Resource count 
(CPU/RAM) take only running vms into calculation
URL: https://github.com/apache/cloudstack/pull/3760
 
 
   ## Description
   
   
   
   
   
   
   
   
   
   Stopped VMs do not use CPU/RAM actually.
   A new global configuration resource.count.running.vms.only is added to 
determine whether resource (cpu/memory) of only running vms (including 
Starting/Stopping) will be taken into calculation of resource consumption.
   
   
   ## Types of changes
   
   - [ ] Breaking change (fix or feature that would cause existing 
functionality to change)
   - [X] New feature (non-breaking change which adds functionality)
   - [ ] Bug fix (non-breaking change which fixes an issue)
   - [ ] 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?
   
   
   
   
   all testing in test/integration/component/test_resource_count_running_vms.py 
passed, including
   deploy/start/stop/reboot a vm
   update a vm with displayvm
   destroy/expunge vm
   
   tested with resource.count.running.vms.only is true and false both.
   
   Two issues found in the testing:  #3758 #3759 
   
   


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] ustcweizhou opened a new pull request #3759: server: fix resource count error when upgrade a vm

2019-12-11 Thread GitBox
ustcweizhou opened a new pull request #3759: server: fix resource count error 
when upgrade a vm
URL: https://github.com/apache/cloudstack/pull/3759
 
 
   
   ## Description
   
   
   
   
   
   
   
   
   
   Steps to reproduce the issue
   (1) create an account (test)
   (2) create a vm with the account (test)
   (3) login with admin, and upgrade the vm to another offering
   (4) the resource count (cpu,memory) of admin increases, not the account 
(test).
   
   ## Types of changes
   
   - [ ] Breaking change (fix or feature that would cause existing 
functionality to change)
   - [ ] New feature (non-breaking change which adds functionality)
   - [X] Bug fix (non-breaking change which fixes an issue)
   - [ ] 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?
   
   
   
   
   
   
   


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] ustcweizhou opened a new pull request #3758: server: Fix NPE while update displayvm on vm with dynamic service offering

2019-12-11 Thread GitBox
ustcweizhou opened a new pull request #3758: server: Fix NPE while update 
displayvm on vm with dynamic service offering
URL: https://github.com/apache/cloudstack/pull/3758
 
 
   ## Description
   
   Steps to reproduce the issue
   (1) create a custom service offering
   (2) create a vm with the offering
   (3) update vm with displayvm=false, returns an error
   
   (local) > update virtualmachine id=f33fd06a-7643-40d1-833f-272845d9ba09 
displayvm=false
   Error 530: 
{"updatevirtualmachineresponse":{"uuidList":[],"errorcode":530,"cserrorcode":}}
   
   
   
   
   
   
   
   
   
   
   
   ## Types of changes
   
   - [ ] Breaking change (fix or feature that would cause existing 
functionality to change)
   - [ ] New feature (non-breaking change which adds functionality)
   - [X] Bug fix (non-breaking change which fixes an issue)
   - [ ] 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?
   
   
   
   
   
   
   


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] borisstoyanov commented on issue #3715: break session only on illegal origin

2019-12-11 Thread GitBox
borisstoyanov commented on issue #3715: break session only on illegal origin
URL: https://github.com/apache/cloudstack/pull/3715#issuecomment-564449308
 
 
   @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 #3715: break session only on illegal origin

2019-12-11 Thread GitBox
blueorangutan commented on issue #3715: break session only on illegal origin
URL: https://github.com/apache/cloudstack/pull/3715#issuecomment-564449487
 
 
   @borisstoyanov a Trillian-Jenkins test job (centos7 mgmt + kvm-centos7) has 
been kicked to run smoke tests


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