[GitHub] [cloudstack] weizhouapache opened a new pull request, #7923: kvm: fix error when enable SSL for kvm agent

2023-08-30 Thread via GitHub


weizhouapache opened a new pull request, #7923:
URL: https://github.com/apache/cloudstack/pull/7923

   ### Description
   
   This PR fixes the error:  'Failed to find passphrase for keystore: 
cloud.jks' 
   
   This was implemented in PR #6200 and #6371 , but broken in PR #6348
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   ### 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)
   
   ### Feature/Enhancement Scale or Bug Severity
   
    Feature/Enhancement Scale
   
   - [ ] Major
   - [ ] Minor
   
    Bug Severity
   
   - [ ] BLOCKER
   - [ ] Critical
   - [ ] Major
   - [ ] Minor
   - [ ] Trivial
   
   
   ### 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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] DaanHoogland commented on a diff in pull request #7746: make control.cidr and control.gateway dynamic

2023-08-30 Thread via GitHub


DaanHoogland commented on code in PR #7746:
URL: https://github.com/apache/cloudstack/pull/7746#discussion_r1309883867


##
engine/components-api/src/main/java/com/cloud/configuration/ConfigurationManager.java:
##
@@ -54,10 +55,40 @@
  */
 public interface ConfigurationManager {
 
-public static final String MESSAGE_CREATE_POD_IP_RANGE_EVENT = 
"Message.CreatePodIpRange.Event";
-public static final String MESSAGE_DELETE_POD_IP_RANGE_EVENT = 
"Message.DeletePodIpRange.Event";
-public static final String MESSAGE_CREATE_VLAN_IP_RANGE_EVENT = 
"Message.CreateVlanIpRange.Event";
-public static final String MESSAGE_DELETE_VLAN_IP_RANGE_EVENT = 
"Message.DeleteVlanIpRange.Event";
+String MESSAGE_CREATE_POD_IP_RANGE_EVENT = 
"Message.CreatePodIpRange.Event";
+String MESSAGE_DELETE_POD_IP_RANGE_EVENT = 
"Message.DeletePodIpRange.Event";
+String MESSAGE_CREATE_VLAN_IP_RANGE_EVENT = 
"Message.CreateVlanIpRange.Event";
+String MESSAGE_DELETE_VLAN_IP_RANGE_EVENT = 
"Message.DeleteVlanIpRange.Event";
+
+ConfigKey SystemVMUseLocalStorage = new ConfigKey<>(
+Boolean.class,
+"system.vm.use.local.storage",
+"Advanced",
+"false",
+"Indicates whether to use local storage pools or shared storage 
pools for system VMs.",
+false,
+ConfigKey.Scope.Zone,
+null);
+
+ConfigKey ControlCidr = new ConfigKey<>(
+String.class,
+"control.cidr",
+"Advanced",
+"169.254.0.0/16",

Review Comment:
   This will only work for new environments. I don't think this will work when 
upgrading environment. These hardcoded values of an already otherwise deplayed 
config item will break systems and needs a bit more TLC .



-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] weizhouapache commented on issue #7838: The VPC Redundant router "Virtual routers" can not work as expected

2023-08-30 Thread via GitHub


weizhouapache commented on issue #7838:
URL: https://github.com/apache/cloudstack/issues/7838#issuecomment-1698907742

   > > > CloudStack uses VXLAN in advanced networking mode, is it necessary to 
configure the MTU values ?
   > > 
   > > 
   > > @xuanyuanaosheng yes, please refer to 
https://docs.cloudstack.apache.org/en/latest/plugins/vxlan.html#important-note-on-mtu-size
   > 
   > @weizhouapache Thanks for you reply. Is the MTU must config on the 
switches and the physical server?
   > 
   ideally yes.
   but if you just want to test it, you can change the mtu of interfaces in VMs 
 (e.g. VRs) to 1450 or even 1400.


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] wido commented on a diff in pull request #7746: make control.cidr and control.gateway dynamic

2023-08-30 Thread via GitHub


wido commented on code in PR #7746:
URL: https://github.com/apache/cloudstack/pull/7746#discussion_r1310112588


##
engine/components-api/src/main/java/com/cloud/configuration/ConfigurationManager.java:
##
@@ -54,10 +55,40 @@
  */
 public interface ConfigurationManager {
 
-public static final String MESSAGE_CREATE_POD_IP_RANGE_EVENT = 
"Message.CreatePodIpRange.Event";
-public static final String MESSAGE_DELETE_POD_IP_RANGE_EVENT = 
"Message.DeletePodIpRange.Event";
-public static final String MESSAGE_CREATE_VLAN_IP_RANGE_EVENT = 
"Message.CreateVlanIpRange.Event";
-public static final String MESSAGE_DELETE_VLAN_IP_RANGE_EVENT = 
"Message.DeleteVlanIpRange.Event";
+String MESSAGE_CREATE_POD_IP_RANGE_EVENT = 
"Message.CreatePodIpRange.Event";
+String MESSAGE_DELETE_POD_IP_RANGE_EVENT = 
"Message.DeletePodIpRange.Event";
+String MESSAGE_CREATE_VLAN_IP_RANGE_EVENT = 
"Message.CreateVlanIpRange.Event";
+String MESSAGE_DELETE_VLAN_IP_RANGE_EVENT = 
"Message.DeleteVlanIpRange.Event";
+
+ConfigKey SystemVMUseLocalStorage = new ConfigKey<>(
+Boolean.class,
+"system.vm.use.local.storage",
+"Advanced",
+"false",
+"Indicates whether to use local storage pools or shared storage 
pools for system VMs.",
+false,
+ConfigKey.Scope.Zone,
+null);
+
+ConfigKey ControlCidr = new ConfigKey<>(
+String.class,
+"control.cidr",
+"Advanced",
+"169.254.0.0/16",

Review Comment:
   Yes. For upgrades we shouldn't touch anything. Unless somebody is going to 
use BGP Unnumbered in their existing environment. Otherwise just using the /20 
for new deployments is fine.



-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] GutoVeronezi commented on pull request #7923: kvm: fix error when enable SSL for kvm agent

2023-08-30 Thread via GitHub


GutoVeronezi commented on PR #7923:
URL: https://github.com/apache/cloudstack/pull/7923#issuecomment-1699025863

   @weizhouapache could describe the steps to reproducee the error?


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] codecov[bot] commented on pull request #7923: kvm: fix error when enable SSL for kvm agent

2023-08-30 Thread via GitHub


codecov[bot] commented on PR #7923:
URL: https://github.com/apache/cloudstack/pull/7923#issuecomment-1699099855

   ## 
[Codecov](https://app.codecov.io/gh/apache/cloudstack/pull/7923?src=pr=h1_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
 Report
   > Merging 
[#7923](https://app.codecov.io/gh/apache/cloudstack/pull/7923?src=pr=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
 (5f312b2) into 
[4.18](https://app.codecov.io/gh/apache/cloudstack/commit/439d70fd2b907a4ed12ed9b67b3be78969b01a8b?el=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
 (439d70f) will **decrease** coverage by `0.01%`.
   > The diff coverage is `0.00%`.
   
   ```diff
   @@ Coverage Diff  @@
   ##   4.18#7923  +/-   ##
   
   - Coverage 13.06%   13.05%   -0.01% 
   + Complexity 9093 9092   -1 
   
 Files  2720 2720  
 Lines257431   257431  
 Branches  4014140141  
   
   - Hits  3362233620   -2 
   - Misses   219582   219585   +3 
   + Partials   4227 4226   -1 
   ```
   
   
   | [Files 
Changed](https://app.codecov.io/gh/apache/cloudstack/pull/7923?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[...ervisor/kvm/resource/LibvirtComputingResource.java](https://app.codecov.io/gh/apache/cloudstack/pull/7923?src=pr=tree_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache#diff-cGx1Z2lucy9oeXBlcnZpc29ycy9rdm0vc3JjL21haW4vamF2YS9jb20vY2xvdWQvaHlwZXJ2aXNvci9rdm0vcmVzb3VyY2UvTGlidmlydENvbXB1dGluZ1Jlc291cmNlLmphdmE=)
 | `18.45% <0.00%> (ø)` | |
   
   ... and [1 file with indirect coverage 
changes](https://app.codecov.io/gh/apache/cloudstack/pull/7923/indirect-changes?src=pr=tree-more_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] weizhouapache commented on pull request #7912: utils: build both SHADED and original jars

2023-08-30 Thread via GitHub


weizhouapache commented on PR #7912:
URL: https://github.com/apache/cloudstack/pull/7912#issuecomment-1698822199

   @blueorangutan test matrix


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7923: kvm: fix error when enable SSL for kvm agent

2023-08-30 Thread via GitHub


blueorangutan commented on PR #7923:
URL: https://github.com/apache/cloudstack/pull/7923#issuecomment-1699015824

   @weizhouapache a [SF] Jenkins job has been kicked to build packages. It will 
be bundled with  KVM, XenServer and VMware SystemVM templates. 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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] weizhouapache merged pull request #7416: remove supportedOwner from Resource.ResourceType

2023-08-30 Thread via GitHub


weizhouapache merged PR #7416:
URL: https://github.com/apache/cloudstack/pull/7416


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] weizhouapache commented on pull request #7923: kvm: fix error when enable SSL for kvm agent

2023-08-30 Thread via GitHub


weizhouapache commented on PR #7923:
URL: https://github.com/apache/cloudstack/pull/7923#issuecomment-1699013562

   @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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] xuanyuanaosheng commented on issue #7838: The VPC Redundant router "Virtual routers" can not work as expected

2023-08-30 Thread via GitHub


xuanyuanaosheng commented on issue #7838:
URL: https://github.com/apache/cloudstack/issues/7838#issuecomment-1698736601

   @weizhouapache I have using wireshark:
   
   
![image](https://github.com/apache/cloudstack/assets/4197714/634efb59-f468-4ab9-96fe-4c70c8f43830)
   
   CloudStack uses VXLAN in advanced networking mode, is it necessary to 
configure the MTU values ?


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] weizhouapache commented on pull request #7416: remove supportedOwner from Resource.ResourceType

2023-08-30 Thread via GitHub


weizhouapache commented on PR #7416:
URL: https://github.com/apache/cloudstack/pull/7416#issuecomment-1698757769

   > @weizhouapache (cc @GaOrtiga ) I think that this code can be removed. 
Nobody is using it and we have a version control system so we can always put it 
back.
   
   ok, fair @DaanHoogland 


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7752: ObjectStore Framework with MinIO and Simulator plugins

2023-08-30 Thread via GitHub


blueorangutan commented on PR #7752:
URL: https://github.com/apache/cloudstack/pull/7752#issuecomment-1698810841

   @kishankavala a [SF] Jenkins job has been kicked to build packages. It will 
be bundled with  KVM, XenServer and VMware SystemVM templates. 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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] kishankavala commented on pull request #7752: ObjectStore Framework with MinIO and Simulator plugins

2023-08-30 Thread via GitHub


kishankavala commented on PR #7752:
URL: https://github.com/apache/cloudstack/pull/7752#issuecomment-1698809393

   @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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] DaanHoogland commented on pull request #7416: remove supportedOwner from Resource.ResourceType

2023-08-30 Thread via GitHub


DaanHoogland commented on PR #7416:
URL: https://github.com/apache/cloudstack/pull/7416#issuecomment-1698723031

   @weizhouapache (cc @GaOrtiga ) I think that this code can be removed. Nobody 
is using it and we have a version control system so we can always put it back.


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] xuanyuanaosheng commented on issue #7838: The VPC Redundant router "Virtual routers" can not work as expected

2023-08-30 Thread via GitHub


xuanyuanaosheng commented on issue #7838:
URL: https://github.com/apache/cloudstack/issues/7838#issuecomment-1698842615

   > > CloudStack uses VXLAN in advanced networking mode, is it necessary to 
configure the MTU values ?
   > 
   > @xuanyuanaosheng yes, please refer to 
https://docs.cloudstack.apache.org/en/latest/plugins/vxlan.html#important-note-on-mtu-size
   
   The MTU must config on the switches and the physical server? 


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] nvazquez commented on pull request #7712: [WIP] Extend import/export unmanaged instances to KVM

2023-08-30 Thread via GitHub


nvazquez commented on PR #7712:
URL: https://github.com/apache/cloudstack/pull/7712#issuecomment-1699054629

   @itsayushpandey I'm trying to import an unmanaged instance and I'm getting 
this error either through the UI or API, can you take a look? 
   
   https://github.com/apache/cloudstack/assets/5295080/d62d8d94-d855-4eab-aff2-fe54dbef1595;>
   
   
   (localcloud)  > import unmanagedinstance hostname=i-2-4-VM 
displayname=importedVM templateid=1f7ba8de-4660-11ee-9315-1e0055000182 
serviceofferingid=da88a0aa-b(localcloud)  > import unmanagedinstance 
name=i-2-4-VM displayname=importedVM 
templateid=1f7ba8de-4660-11ee-9315-1e0055000182 
serviceofferingid=da88a0aa-bf82-40ae-ab32-a6e4c88b5ce8 
clusterid=a932b7f8-22b3-48ca-8890-192070c4f312 
   {
 "account": "admin",
 "accountid": "48eec3eb-4660-11ee-9315-1e0055000182",
 "cmd": 
"org.apache.cloudstack.api.command.admin.vm.ImportUnmanagedInstanceCmd",
 "completed": "2023-08-30T12:12:39+",
 "created": "2023-08-30T12:12:39+",
 "domainid": "1f74d7bc-4660-11ee-9315-1e0055000182",
 "domainpath": "ROOT",
 "jobid": "dabfa8bc-6a42-44f9-be0b-3e1a8715fc9d",
 "jobprocstatus": 0,
 "jobresult": {
   "errorcode": 530,
   "errortext": "Failed to import VM: i-2-4-VM. Service offering 
(da88a0aa-bf82-40ae-ab32-a6e4c88b5ce8) 500MHz CPU speed does not match VM CPU 
speed 250MHz and VM is not in powered off state (Power state: PowerOn)"
 },
 "jobresultcode": 530,
 "jobresulttype": "object",
 "jobstatus": 2,
 "userid": "48f16909-4660-11ee-9315-1e0055000182"
   }
    Error: async API failed for job dabfa8bc-6a42-44f9-be0b-3e1a8715fc9d
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] weizhouapache commented on a diff in pull request #7746: make control.cidr and control.gateway dynamic

2023-08-30 Thread via GitHub


weizhouapache commented on code in PR #7746:
URL: https://github.com/apache/cloudstack/pull/7746#discussion_r1309923306


##
engine/components-api/src/main/java/com/cloud/configuration/ConfigurationManager.java:
##
@@ -54,10 +55,40 @@
  */
 public interface ConfigurationManager {
 
-public static final String MESSAGE_CREATE_POD_IP_RANGE_EVENT = 
"Message.CreatePodIpRange.Event";
-public static final String MESSAGE_DELETE_POD_IP_RANGE_EVENT = 
"Message.DeletePodIpRange.Event";
-public static final String MESSAGE_CREATE_VLAN_IP_RANGE_EVENT = 
"Message.CreateVlanIpRange.Event";
-public static final String MESSAGE_DELETE_VLAN_IP_RANGE_EVENT = 
"Message.DeleteVlanIpRange.Event";
+String MESSAGE_CREATE_POD_IP_RANGE_EVENT = 
"Message.CreatePodIpRange.Event";
+String MESSAGE_DELETE_POD_IP_RANGE_EVENT = 
"Message.DeletePodIpRange.Event";
+String MESSAGE_CREATE_VLAN_IP_RANGE_EVENT = 
"Message.CreateVlanIpRange.Event";
+String MESSAGE_DELETE_VLAN_IP_RANGE_EVENT = 
"Message.DeleteVlanIpRange.Event";
+
+ConfigKey SystemVMUseLocalStorage = new ConfigKey<>(
+Boolean.class,
+"system.vm.use.local.storage",
+"Advanced",
+"false",
+"Indicates whether to use local storage pools or shared storage 
pools for system VMs.",
+false,
+ConfigKey.Scope.Zone,
+null);
+
+ConfigKey ControlCidr = new ConfigKey<>(
+String.class,
+"control.cidr",
+"Advanced",
+"169.254.0.0/16",

Review Comment:
   @DaanHoogland 
   as I understand, Wido wants /20 to be the default in new environments.
   It would be good to update the config description to emphasize that the new 
value only applies on new pods.



-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7923: kvm: fix error when enable SSL for kvm agent

2023-08-30 Thread via GitHub


blueorangutan commented on PR #7923:
URL: https://github.com/apache/cloudstack/pull/7923#issuecomment-1699097689

   Packaging result [SF]: :heavy_check_mark: el7 :heavy_check_mark: el8 
:heavy_check_mark: el9 :heavy_check_mark: debian :heavy_check_mark: suse15. 
SL-JID 6941


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] weizhouapache commented on issue #7838: The VPC Redundant router "Virtual routers" can not work as expected

2023-08-30 Thread via GitHub


weizhouapache commented on issue #7838:
URL: https://github.com/apache/cloudstack/issues/7838#issuecomment-1698834975

   
   > CloudStack uses VXLAN in advanced networking mode, is it necessary to 
configure the MTU values ?
   
   @xuanyuanaosheng yes, 
   please refer to 
https://docs.cloudstack.apache.org/en/latest/plugins/vxlan.html#important-note-on-mtu-size


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7752: ObjectStore Framework with MinIO and Simulator plugins

2023-08-30 Thread via GitHub


blueorangutan commented on PR #7752:
URL: https://github.com/apache/cloudstack/pull/7752#issuecomment-169075

   Packaging result [SF]: :heavy_check_mark: el7 :heavy_check_mark: el8 
:heavy_check_mark: el9 :heavy_check_mark: debian :heavy_check_mark: suse15. 
SL-JID 6940


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7344: [HEALTH] 4.19/main Health Check, please don't merge this!

2023-08-30 Thread via GitHub


blueorangutan commented on PR #7344:
URL: https://github.com/apache/cloudstack/pull/7344#issuecomment-1698911049

   [LL]Trillian test result (tid-6725)
   Environment: vmware-67u3 (x2), Advanced Networking with Mgmt server r8
   Total time taken: 93710 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr7344-t6725-vmware-67u3.zip
   Smoke tests completed. 106 look OK, 7 have errors, 0 did not run
   Only failed and skipped tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   ContextSuite context=TestVmAutoScaling>:setup | `Error` | 0.00 | 
test_vm_autoscaling.py
   test_01_unmanage_vm_cycle | `Error` | 61.18 | 
test_vm_lifecycle_unmanage_import.py
   test_05_vmschedule_test_e2e | `Error` | 181.52 | test_vm_schedule.py
   test_01_create_volume | `Failure` | 100.05 | test_volumes.py
   test_01_create_redundant_VPC_2tiers_4VMs_4IPs_4PF_ACL | `Error` | 3654.34 | 
test_vpc_redundant.py
   test_02_redundant_VPC_default_routes | `Error` | 1810.46 | 
test_vpc_redundant.py
   test_03_create_redundant_VPC_1tier_2VMs_2IPs_2PF_ACL_reboot_routers | 
`Error` | 1861.40 | test_vpc_redundant.py
   test_04_rvpc_network_garbage_collector_nics | `Error` | 1864.30 | 
test_vpc_redundant.py
   test_05_rvpc_multi_tiers | `Error` | 3655.26 | test_vpc_redundant.py
   test_02_VPC_default_routes | `Error` | 3609.57 | test_vpc_router_nics.py
   test_01_redundant_vpc_site2site_vpn | `Failure` | 3652.59 | test_vpc_vpn.py
   test_01_vpc_site2site_vpn_multiple_options | `Failure` | 3653.40 | 
test_vpc_vpn.py
   test_01_vpc_site2site_vpn_multiple_options | `Error` | 3653.49 | 
test_vpc_vpn.py
   test_01_vpc_remote_access_vpn | `Failure` | 1806.20 | test_vpc_vpn.py
   test_01_vpc_site2site_vpn | `Failure` | 1809.86 | test_vpc_vpn.py
   test_01_vpc_site2site_vpn | `Error` | 1809.90 | test_vpc_vpn.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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] weizhouapache commented on pull request #7131: Normalize loggers and upgrade log4j 1.2 to log4j 2.19

2023-09-05 Thread via GitHub


weizhouapache commented on PR #7131:
URL: https://github.com/apache/cloudstack/pull/7131#issuecomment-1706543862

   
   > > @GutoVeronezi considering this is a huge change, please hold on there 
were lots of changes since last testing by @vladimirpetrov
   > 
   > @weizhouapache if you take a look at the commit tree, you will see that 
the recent changes are mostly regarding conflict solving; we can ask the 
community to do another round of manual tests in the next days, though.
   
   @GutoVeronezi  Thanks.
   There were very few changes with this PR itself.
   However, there were lots of changes with main branch (bug fixes and new 
features, etc).
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7873: api,server,ui: snapshot copy, multi-zone replica

2023-09-05 Thread via GitHub


blueorangutan commented on PR #7873:
URL: https://github.com/apache/cloudstack/pull/7873#issuecomment-1706564941

   Packaging result [SF]: :heavy_check_mark: el7 :heavy_check_mark: el8 
:heavy_check_mark: el9 :heavy_check_mark: debian :heavy_check_mark: suse15. 
SL-JID 6980


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] GutoVeronezi commented on pull request #7131: Normalize loggers and upgrade log4j 1.2 to log4j 2.19

2023-09-05 Thread via GitHub


GutoVeronezi commented on PR #7131:
URL: https://github.com/apache/cloudstack/pull/7131#issuecomment-1706534680

   > > As the CI tests passed, manual tests were done and we already have the 
necessary approvals, I propose merging this PR by the end of the day. Before 
that, I will notify dev and user mailing list about the merging, the conflicts 
some PRs may suffer, and instructions on how to solve them.
   > > cc: @DaanHoogland @JoaoJandre @rohityadavcloud @weizhouapache
   > 
   > @GutoVeronezi considering this is a huge change, please hold on there were 
lots of changes since last testing by @vladimirpetrov
   
   @weizhouapache if you take a look at the commit tree, you will see that the 
recent changes are mostly regarding conflict solving; we can ask the community 
to do another round of manual tests in the next days, though. 
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] soreana commented on pull request #6812: Normalize encryption on global configurations values

2023-09-05 Thread via GitHub


soreana commented on PR #6812:
URL: https://github.com/apache/cloudstack/pull/6812#issuecomment-1706826939

   @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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] GutoVeronezi commented on pull request #7131: Normalize loggers and upgrade log4j 1.2 to log4j 2.19

2023-09-05 Thread via GitHub


GutoVeronezi commented on PR #7131:
URL: https://github.com/apache/cloudstack/pull/7131#issuecomment-1706482997

   As the CI tests passed, manual tests were done and we already have the 
necessary approvals, I propose merging this PR by the end of the day. Before 
that, I will notify dev and user mailing list about the merging, the conflicts 
some PRs may suffer, and instructions on how to solve them.
   
   cc: @DaanHoogland @JoaoJandre @rohityadavcloud @weizhouapache 


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] weizhouapache commented on pull request #7131: Normalize loggers and upgrade log4j 1.2 to log4j 2.19

2023-09-05 Thread via GitHub


weizhouapache commented on PR #7131:
URL: https://github.com/apache/cloudstack/pull/7131#issuecomment-1706506727

   > As the CI tests passed, manual tests were done and we already have the 
necessary approvals, I propose merging this PR by the end of the day. Before 
that, I will notify dev and user mailing list about the merging, the conflicts 
some PRs may suffer, and instructions on how to solve them.
   > 
   > cc: @DaanHoogland @JoaoJandre @rohityadavcloud @weizhouapache
   
   @GutoVeronezi 
   considering this is a huge change, please hold on
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7873: api,server,ui: snapshot copy, multi-zone replica

2023-09-05 Thread via GitHub


blueorangutan commented on PR #7873:
URL: https://github.com/apache/cloudstack/pull/7873#issuecomment-1706487974

   @shwstppr a [SF] Jenkins job has been kicked to build packages. It will be 
bundled with  KVM, XenServer and VMware SystemVM templates. 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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] rohityadavcloud opened a new issue, #7942: Local Storage migration fails due to storage pool not found on destination KVM host

2023-09-05 Thread via GitHub


rohityadavcloud opened a new issue, #7942:
URL: https://github.com/apache/cloudstack/issues/7942

   On a 4.18.1.0 RC2 adv zone KVM env using local only storage and local 
storage for systemvms, migration fails from kvm1 to kvm2 due to the following 
seen in the target kvm host
   
   ```
   2023-09-05 21:12:06,645 INFO  [kvm.storage.LibvirtStorageAdaptor] 
(agentRequest-Handler-2:null) (logid:f38dafe4) Attempting to create volume 
23ef733c-c26e-405a-829e-6e0010b3cbeb (Filesystem) in pool 
3a11d1ea-eff4-4f5b-9b7c-e0ff89a8c9dd with size (2.20 GB) 2361393152
   2023-09-05 21:12:06,691 INFO  [kvm.resource.LibvirtConnection] 
(agentRequest-Handler-3:null) (logid:f38dafe4) No existing libvirtd connection 
found. Opening a new one
   2023-09-05 21:12:06,692 WARN  [kvm.resource.LibvirtConnection] 
(agentRequest-Handler-3:null) (logid:f38dafe4) Can not find a connection for 
Instance i-2-453-VM. Assuming the default connection.
   2023-09-05 21:12:08,499 INFO  [kvm.storage.LibvirtStorageAdaptor] 
(agentRequest-Handler-4:null) (logid:f38dafe4) Trying to fetch storage pool 
8aa9768c-cbcf-4e8e-8875-f94a7f9445b6 from libvirt
   2023-09-05 21:12:08,500 WARN  [cloud.agent.Agent] 
(agentRequest-Handler-4:null) (logid:f38dafe4) Caught:
   com.cloud.utils.exception.CloudRuntimeException: Could not fetch storage 
pool 8aa9768c-cbcf-4e8e-8875-f94a7f9445b6 from libvirt due to 
org.libvirt.LibvirtException: Storage pool not found: no storage pool with 
matching uuid '8aa9768c-cbcf-4e8e-8875-f94a7f9445b6'
at 
com.cloud.hypervisor.kvm.storage.KVMStoragePoolManager.getStoragePool(KVMStoragePoolManager.java:278)
at 
com.cloud.hypervisor.kvm.storage.KVMStoragePoolManager.getStoragePool(KVMStoragePoolManager.java:264)
   ```
   
   The above can sometimes cause the VM to crash as it fails right at the last 
step on the dest. kvm host end, and CloudStack may further report that domain 
is not running.
   
   However, systemvm migration with storage work. I'm not sure if this is an 
env issue or a bug.
   
   # ISSUE TYPE
   
* Bug Report
* Improvement Request
* Enhancement Request
* Feature Idea
* Documentation Report
* Other
   
   # COMPONENT NAME
   
   ~~~
   
   ~~~
   
   # CLOUDSTACK VERSION
   
   
   ~~~
   
   ~~~
   
   # CONFIGURATION
   
   
   
   # OS / ENVIRONMENT
   
   
   
   # SUMMARY
   
   
   
   # STEPS TO REPRODUCE
   
   
   
   ~~~
   
   ~~~
   
   
   
   # EXPECTED RESULTS
   
   
   ~~~
   
   ~~~
   
   # ACTUAL 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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] nvazquez commented on pull request #7712: [WIP] Extend import/export unmanaged instances to KVM

2023-09-02 Thread via GitHub


nvazquez commented on PR #7712:
URL: https://github.com/apache/cloudstack/pull/7712#issuecomment-1703857655

   @itsayushpandey I have been testing the PR and overall is working fine, well 
done!
   
   I have found the following cases to fix, from the most to the least critical:
   
   - Wrong network selection: To reproduce it you can create 2 networks: one 
Isolated network and one L2 network. Create a VM on the L2 network and then 
unmanage it. Then try managing it back selecting the L2 network -> the imported 
VM gets deployed on the Isolated network.
   - Fixed service offerings still doesn't work: The check fails since the 
logic says the CPU speed doesn't match the CPU speed of the offering 
(https://github.com/apache/cloudstack/blob/main/server/src/main/java/org/apache/cloudstack/vm/UnmanagedVMsManagerImpl.java#L428).
 It is weird as I have made sure I select the same offering from which I try to 
import. However CloudStack still thinks they are different: 
   Failed to import VM: i-2-23-VM. Service offering 
(da88a0aa-bf82-40ae-ab32-a6e4c88b5ce8) 500MHz CPU speed does not match VM CPU 
speed 250MHz and VM is not in powered off state (Power state: PowerOn)
   
   - Minor UI improvements:
  - After the import VM dialog is closed, the button is still loading and 
you need to refresh the UI to get it functional again. I think this is a simple 
fix, once the API is finished you can set the variable loading = false in the 
.vue file
  - The Import/Export title still says the feature is only supported on 
Vmware, we can add KVM now to that text


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7712: [WIP] Extend import/export unmanaged instances to KVM

2023-09-03 Thread via GitHub


blueorangutan commented on PR #7712:
URL: https://github.com/apache/cloudstack/pull/7712#issuecomment-1704310653

   @nvazquez a [SF] 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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] cc20110101 commented on issue #7935: systemvm not work

2023-09-03 Thread via GitHub


cc20110101 commented on issue #7935:
URL: https://github.com/apache/cloudstack/issues/7935#issuecomment-1704066466

   Because the root directory is not enough space, the establishment /home is 
modified; Sytemvm is also abnormal without modification
   
   [root@management2 agent]# df -h
   Filesystem Size  Used Avail Use% Mounted on
   devtmpfs32G 0   32G   0% /dev
   tmpfs   32G 0   32G   0% /dev/shm
   tmpfs   32G   19M   32G   1% /run
   tmpfs   32G 0   32G   0% /sys/fs/cgroup
   /dev/mapper/centos_management2-root 50G  5.9G   45G  12% /
   /dev/sda2 1014M  286M  729M  29% /boot
   /dev/mapper/centos_management2-home3.6T  629M  3.6T   1% /home
   192.168.221.107:/home/nfsdata/primary  3.6T   29G  3.6T   1% 
/mnt/23e1c3ea-1865-3f13-9d96-0f8417de522d
   tmpfs  6.3G 0  6.3G   0% /run/user/0
   [root@management2 agent]# 
   [root@management2 agent]# 
   [root@management2 agent]# grep var *
   environment.properties:paths.pid=/var/run
   [root@management2 agent]# grep home *
   
agent.properties:direct.download.temporary.download.location=/home/cloudstack-agent/libvirt/images
   agent.properties:qemu.sockets.path=/home/cloudstack-agent/libvirt/qemu
   agent.properties:local.storage.path=/home/cloudstack-agent/libvirt/images/
   log4j-cloud.xml:
   log4j-cloud.xml:
   [root@management2 agent]# grep var /etc/cloudstack/agent/agent.properties
   [root@management2 agent]# grep home  /etc/cloudstack/agent/agent.properties
   
direct.download.temporary.download.location=/home/cloudstack-agent/libvirt/images
   qemu.sockets.path=/home/cloudstack-agent/libvirt/qemu
   local.storage.path=/home/cloudstack-agent/libvirt/images/
   [root@management2 agent]# 
   
   > ```
   > Sep 03 01:12:04 management1.inspur.com java[2720]: 
2023-09-02T17:12:04.518742Z qemu-kvm: -chardev 
socket,id=charchannel0,path=/home/cloudstack-agent/libvirt/qemu/s-58-VM.org.qemu.guest_agent.0,server,nowait:
 chardev: opening backend "socket" failed
   > ```
   > 
   > Normally the path is `/var/lib/libvirt/qemu`
   
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] rohityadavcloud commented on issue #7934: Linstor root disk does not use size per offering or resize

2023-09-03 Thread via GitHub


rohityadavcloud commented on issue #7934:
URL: https://github.com/apache/cloudstack/issues/7934#issuecomment-1704365221

   Thanks @sbrueseke @rp- , @rp- is right in case of LVM-thin, the allocated 
volume size seen in `linstor vd l` showed like 2.2GB (template size) instead of 
the root disk allocated size (100GB) in my case. Like I've mentioned briefly, 
I've workaround specifically by using `set-size` in `linstor vd` I could change 
the volume size to 100GB and do a VM stop/start. Resize didn't work for me 
though, I can try to test again.
   
   @rp- on the last point, I wanted to learn how the linstor plugin caches the 
template. In my experimentation, I found the issue to be a case where a Linstor 
(resource) volume fails to be deleted (stuck in Destory state but not expunged 
in CloudStack's DB), CloudStack can mark it as removed in its database but the 
volume may not be deleted on the linstor side.


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] nvazquez commented on pull request #7712: [WIP] Extend import/export unmanaged instances to KVM

2023-09-03 Thread via GitHub


nvazquez commented on PR #7712:
URL: https://github.com/apache/cloudstack/pull/7712#issuecomment-1704310175

   @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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] cc20110101 commented on issue #7935: systemvm not work

2023-09-03 Thread via GitHub


cc20110101 commented on issue #7935:
URL: https://github.com/apache/cloudstack/issues/7935#issuecomment-1704071834

   > ```
   > Sep 03 01:12:04 management1.inspur.com java[2720]: 
2023-09-02T17:12:04.518742Z qemu-kvm: -chardev 
socket,id=charchannel0,path=/home/cloudstack-agent/libvirt/qemu/s-58-VM.org.qemu.guest_agent.0,server,nowait:
 chardev: opening backend "socket" failed
   > ```
   > 
   > Normally the path is `/var/lib/libvirt/qemu`
   
   Thank you very much, you are right. Execute mv /var/lib/libvirt/* 
/home/cloudstack-agent/libvirt/ and it is normal


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] cc20110101 closed issue #7935: systemvm not work

2023-09-03 Thread via GitHub


cc20110101 closed issue #7935: systemvm not work
URL: https://github.com/apache/cloudstack/issues/7935


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7712: [WIP] Extend import/export unmanaged instances to KVM

2023-09-02 Thread via GitHub


blueorangutan commented on PR #7712:
URL: https://github.com/apache/cloudstack/pull/7712#issuecomment-1703987400

   Packaging result [SF]: :heavy_multiplication_x: el7 :heavy_multiplication_x: 
el8 :heavy_multiplication_x: el9 :heavy_multiplication_x: debian 
:heavy_multiplication_x: suse15. SL-JID 6965


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7712: [WIP] Extend import/export unmanaged instances to KVM

2023-09-02 Thread via GitHub


blueorangutan commented on PR #7712:
URL: https://github.com/apache/cloudstack/pull/7712#issuecomment-1704004993

   @itsayushpandey a [SF] Jenkins job has been kicked to build packages. It 
will be bundled with  KVM, XenServer and VMware SystemVM templates. 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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] itsayushpandey commented on pull request #7712: [WIP] Extend import/export unmanaged instances to KVM

2023-09-02 Thread via GitHub


itsayushpandey commented on PR #7712:
URL: https://github.com/apache/cloudstack/pull/7712#issuecomment-1704004869

   @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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7712: [WIP] Extend import/export unmanaged instances to KVM

2023-09-02 Thread via GitHub


blueorangutan commented on PR #7712:
URL: https://github.com/apache/cloudstack/pull/7712#issuecomment-1704011846

   Packaging result [SF]: :heavy_check_mark: el7 :heavy_check_mark: el8 
:heavy_check_mark: el9 :heavy_check_mark: debian :heavy_check_mark: suse15. 
SL-JID 6968


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] itsayushpandey commented on pull request #7712: [WIP] Extend import/export unmanaged instances to KVM

2023-09-02 Thread via GitHub


itsayushpandey commented on PR #7712:
URL: https://github.com/apache/cloudstack/pull/7712#issuecomment-1703981009

   Thanks so much for finding these issues @nvazquez , I have been 
investigating and have fixed locally. The UI Changes weren't trivial and I 
think they might be partially broken even in case of VMWare.


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7712: [WIP] Extend import/export unmanaged instances to KVM

2023-09-02 Thread via GitHub


blueorangutan commented on PR #7712:
URL: https://github.com/apache/cloudstack/pull/7712#issuecomment-1703981099

   @itsayushpandey a [SF] Jenkins job has been kicked to build packages. It 
will be bundled with  KVM, XenServer and VMware SystemVM templates. 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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] itsayushpandey commented on pull request #7712: [WIP] Extend import/export unmanaged instances to KVM

2023-09-02 Thread via GitHub


itsayushpandey commented on PR #7712:
URL: https://github.com/apache/cloudstack/pull/7712#issuecomment-1703981028

   @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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] weizhouapache commented on issue #7935: systemvm not work

2023-09-03 Thread via GitHub


weizhouapache commented on issue #7935:
URL: https://github.com/apache/cloudstack/issues/7935#issuecomment-1704032228

   ```
   Sep 03 01:12:04 management1.inspur.com java[2720]: 
2023-09-02T17:12:04.518742Z qemu-kvm: -chardev 
socket,id=charchannel0,path=/home/cloudstack-agent/libvirt/qemu/s-58-VM.org.qemu.guest_agent.0,server,nowait:
 chardev: opening backend "socket" failed
   ```
   
   Normally the path is `/var/lib/libvirt/qemu`
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] cc20110101 opened a new issue, #7935: systemvm not work

2023-09-02 Thread via GitHub


cc20110101 opened a new issue, #7935:
URL: https://github.com/apache/cloudstack/issues/7935

   
   
   # ISSUE TYPE
   
* Bug Report
* Improvement Request
* Enhancement Request
* Feature Idea
* Documentation Report
* Other
   
   
   
   
   # COMPONENT NAME
   
   ~~~
   [
   
[CloudStack高级网络.pdf](https://github.com/apache/cloudstack/files/12504424/CloudStack.pdf)
   ](url)
   ~~~
   
   # CLOUDSTACK VERSION
   
   4.18.0
   ~~~
   
   ~~~
   
   # CONFIGURATION
   
   
   
   # OS / ENVIRONMENT
   
   CentOS Linux release 7.9.2009 (Core)
   SA5112M4  818498931  64G  cpu2*8core 
   
   
   # SUMMARY
   
   use  Advanced networking, but system vm not work
   
   cloudstack-management log:
   Sep 03 01:12:00 management1.inspur.com java[2720]: INFO  
[c.c.c.ConsoleProxyManagerImpl] (consoleproxy-1:ctx-2e62d742) (logid:cc558161) 
No stopped console proxy is available, need to allocate a new console proxy
   Sep 03 01:12:00 management1.inspur.com java[2720]: INFO  
[o.a.c.s.PremiumSecondaryStorageManagerImpl] (secstorage-1:ctx-0b5a87ad) 
(logid:0fdd0f27) No running secondary storage vms found in datacenter id=1, 
starting one
   Sep 03 01:12:00 management1.inspur.com java[2720]: INFO  
[o.a.c.s.SecondaryStorageManagerImpl] (secstorage-1:ctx-0b5a87ad) 
(logid:0fdd0f27) No stopped secondary storage VM is available, need to allocate 
a new secondary storage VM.
   Sep 03 01:12:00 management1.inspur.com java[2720]: INFO  
[c.c.v.VirtualMachineManagerImpl] (consoleproxy-1:ctx-2e62d742) 
(logid:cc558161) allocating virtual machine from 
template:38b04570-6690-485b-8a82-be847a54c205 with hostname:v-57-VM and 3 
networks
   Sep 03 01:12:00 management1.inspur.com java[2720]: INFO  
[o.a.c.e.o.VolumeOrchestrator] (consoleproxy-1:ctx-2e62d742 ctx-731e32f7) 
(logid:cc558161) Adding disk object [ROOT-57] to VM [VM instance 
{"id":57,"instanceName":"v-57-VM","type":"ConsoleProxy","uuid":"4c981454-40b9-4d76-948d-891f6e09f766"}]
   Sep 03 01:12:00 management1.inspur.com java[2720]: INFO  
[o.a.c.a.DynamicRoleBasedAPIAccessChecker] (qtp504858437-32:ctx-2171a0d8 
ctx-9aa4c7b7) (logid:0ed34c17) Account [Account 
[{"accountName":"admin","id":2,"uuid":"6be33dee-49aa-11ee-81b7-6c92bfa2cc24"}]] 
is Root Admin or Domain Admin, all APIs are allowed.
   Sep 03 01:12:00 management1.inspur.com java[2720]: WARN  
[o.a.c.a.ProjectRoleBasedApiAccessChecker] (qtp504858437-32:ctx-2171a0d8 
ctx-9aa4c7b7) (logid:0ed34c17) Project is null, 
ProjectRoleBasedApiAccessChecker only applies to projects, returning API 
[listSystemVms] for user [User 
{"username":"admin","uuid":"6be42c0e-49aa-11ee-81b7-6c92bfa2cc24"}.] as allowed.
   Sep 03 01:12:00 management1.inspur.com java[2720]: INFO  
[o.a.c.f.j.i.AsyncJobMonitor] (Work-Job-Executor-49:ctx-8efcf390 
job-139/job-188) (logid:87b4eee9) Add job-188 into job monitoring
   Sep 03 01:12:00 management1.inspur.com java[2720]: INFO  
[c.c.v.VirtualMachineManagerImpl] (secstorage-1:ctx-0b5a87ad) (logid:0fdd0f27) 
allocating virtual machine from template:38b04570-6690-485b-8a82-be847a54c205 
with hostname:s-58-VM and 3 networks
   Sep 03 01:12:00 management1.inspur.com java[2720]: INFO  
[c.c.a.m.a.i.FirstFitAllocator] (Work-Job-Executor-49:ctx-8efcf390 
job-139/job-188 ctx-6c890d3d FirstFitRoutingAllocator) (logid:37be6c0b)  Guest 
VM is requested with Custom[UEFI] Boot Type false
   Sep 03 01:12:00 management1.inspur.com java[2720]: INFO  
[c.c.d.DeploymentPlanningManagerImpl] (Work-Job-Executor-49:ctx-8efcf390 
job-139/job-188 ctx-6c890d3d) (logid:37be6c0b) Re-ordering hosts [Host 
{"id":1,"name":"management2.inspur.com","type":"Routing","uuid":"dcc0f417-7260-4d48-ad7c-7372bd144fa3"}]
 by priorities {}
   Sep 03 01:12:00 management1.inspur.com java[2720]: INFO  
[c.c.d.DeploymentPlanningManagerImpl] (Work-Job-Executor-49:ctx-8efcf390 
job-139/job-188 ctx-6c890d3d) (logid:37be6c0b) Hosts after re-ordering are: 
[Host 
{"id":1,"name":"management2.inspur.com","type":"Routing","uuid":"dcc0f417-7260-4d48-ad7c-7372bd144fa3"}]
   Sep 03 01:12:00 management1.inspur.com java[2720]: INFO  
[c.c.s.StorageManagerImpl] (Work-Job-Executor-49:ctx-8efcf390 job-139/job-188 
ctx-6c890d3d) (logid:37be6c0b) Storage pool Primary1 (1) does not supply IOPS 
capacity, assuming enough capacity
   Sep 03 01:12:00 management1.inspur.com java[2720]: INFO  
[o.a.c.e.o.VolumeOrchestrator] (secstorage-1:ctx-0b5a87ad ctx-7bd1abbf) 
(logid:0fdd0f27) Adding disk object [ROOT-58] to VM [VM instance 
{"id":58,"instanceName":"s-58-VM","type":"SecondaryStorageVm","uuid":"45bf5234-6359-4b9f-8116-d377f01b9d98"}]
   Sep 03 01:12:02 management1.inspur.com java[2720]: INFO  
[o.a.c.f.j.i.AsyncJobMonitor] (Work-Job-Executor-50:ctx-b90a4c84 job-2/job-189) 
(logid:4c0d9f18) Add job-189 into job monitoring
   Sep 03 01:12:02 management1.inspur.com java[2720]: INFO  
[c.c.a.m.a.i.FirstFitAllocator] (Work-Job-Executor-50:ctx-b90a4c84 
job-2/job-189 ctx-30f5e928 FirstFitRoutingAllocator) 

[GitHub] [cloudstack] weizhouapache commented on issue #7942: Local Storage migration fails due to storage pool not found on destination KVM host

2023-09-05 Thread via GitHub


weizhouapache commented on issue #7942:
URL: https://github.com/apache/cloudstack/issues/7942#issuecomment-1707166488

   @rohityadavcloud 
   Thanks for the information 


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] weizhouapache commented on issue #7942: Local Storage migration fails due to storage pool not found on destination KVM host

2023-09-05 Thread via GitHub


weizhouapache commented on issue #7942:
URL: https://github.com/apache/cloudstack/issues/7942#issuecomment-1706978128

   I got an error when migrate the default template
   
![image](https://github.com/apache/cloudstack/assets/57355700/33106711-fac6-4503-a0f9-74c33fd63553)
   
   and management-server log shows
   ```
   ...
   2023-09-05 16:47:24,215 DEBUG [c.c.a.t.Request] 
(AgentManager-Handler-18:null) (logid:) Seq 2-4185251428710744296: Processing:  
{ Ans: , MgmtId: 167780532, via: 2, Ver: v1, Flags: 110, 
[{"com.cloud.agent.api.MigrateAnswer":{"result":"false","details":"Exception 
during migrate: org.libvirt.LibvirtException: operation failed: migration of 
disk vda failed: Input/output 
error","wait":"0","bypassHostMaintenance":"false"}}] }
   ...
   2023-09-05 16:47:24,220 DEBUG [c.c.a.t.Request] 
(Work-Job-Executor-4:ctx-9389653d job-33/job-34 ctx-f9253e30) (logid:baac3e91) 
Seq 1-1506454075355431213: Sending  { Cmd , MgmtId: 167780532, via: 
1(ref-trl-5592-k-Mr8-wei-zhou-kvm1), Ver: v1, Flags: 100111, 
[{"com.cloud.agent.api.PrepareForMigrationCommand":{"vm":{"id":"3","name":"i-2-3-VM"...
   ...
   
   2023-09-05 16:47:24,815 DEBUG [c.c.a.t.Request] 
(AgentManager-Handler-20:null) (logid:) Seq 1-1506454075355431213: Processing:  
{ Ans: , MgmtId: 167780532, via: 1, Ver: v1, Flags: 110, 
[{"com.cloud.agent.api.Answer":{"result":"false","details":"com.cloud.utils.exception.CloudRuntimeException:
 Could not fetch storage pool 1a30047b-99dd-4b7b-b2e5-4e862c1117a5 from libvirt 
due to org.libvirt.LibvirtException: Storage pool not found: no storage pool 
with matching uuid '1a30047b-99dd-4b7b-b2e5-4e862c1117a5'
   at 
com.cloud.hypervisor.kvm.storage.KVMStoragePoolManager.getStoragePool(KVMStoragePoolManager.java:278)
   at 
com.cloud.hypervisor.kvm.storage.KVMStoragePoolManager.getStoragePool(KVMStoragePoolManager.java:264)
   at 
com.cloud.hypervisor.kvm.storage.KVMStoragePoolManager.disconnectPhysicalDisksViaVmSpec(KVMStoragePoolManager.java:239)
   at 
com.cloud.hypervisor.kvm.resource.wrapper.LibvirtPrepareForMigrationCommandWrapper.handleRollback(LibvirtPrepareForMigrationCommandWrapper.java:150)
   at 
com.cloud.hypervisor.kvm.resource.wrapper.LibvirtPrepareForMigrationCommandWrapper.execute(LibvirtPrepareForMigrationCommandWrapper.java:62)
   at 
com.cloud.hypervisor.kvm.resource.wrapper.LibvirtPrepareForMigrationCommandWrapper.execute(LibvirtPrepareForMigrationCommandWrapper.java:52)
   at 
com.cloud.hypervisor.kvm.resource.wrapper.LibvirtRequestWrapper.execute(LibvirtRequestWrapper.java:78)
   at 
com.cloud.hypervisor.kvm.resource.LibvirtComputingResource.executeRequest(LibvirtComputingResource.java:1848)
   at com.cloud.agent.Agent.processRequest(Agent.java:662)
   at com.cloud.agent.Agent$AgentRequestHandler.doTask(Agent.java:1082)
   at com.cloud.utils.nio.Task.call(Task.java:83)
   at com.cloud.utils.nio.Task.call(Task.java:29)
   at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
   at 
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
 
   at 
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
 
   at java.base/java.lang.Thread.run(Thread.java:829)
   ","wait":"0","bypassHostMaintenance":"false"}}] }
   ```


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] kiwiflyer commented on issue #7838: The VPC Redundant router "Virtual routers" can not work as expected

2023-09-05 Thread via GitHub


kiwiflyer commented on issue #7838:
URL: https://github.com/apache/cloudstack/issues/7838#issuecomment-1707194745

   @xuanyuanaosheng Can you assign the vlan directly to your physical ethernet 
interface, or to a bond?
   
   Remove the bridge you have configured and give that a go.
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] codecov[bot] commented on pull request #7943: build(deps): bump org.apache.kafka:kafka-clients from 2.7.0 to 2.7.2

2023-09-05 Thread via GitHub


codecov[bot] commented on PR #7943:
URL: https://github.com/apache/cloudstack/pull/7943#issuecomment-1707409855

   ## 
[Codecov](https://app.codecov.io/gh/apache/cloudstack/pull/7943?src=pr=h1_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
 Report
   > Merging 
[#7943](https://app.codecov.io/gh/apache/cloudstack/pull/7943?src=pr=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
 (d48e1c9) into 
[main](https://app.codecov.io/gh/apache/cloudstack/commit/2e6100d85bb408bd1ccfa062cd10ca20b2db3383?el=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
 (2e6100d) will **not change** coverage.
   > The diff coverage is `n/a`.
   
   ```diff
   @@Coverage Diff@@
   ##   main#7943   +/-   ##
   =
 Coverage 14.40%   14.40%   
 Complexity1011110111   
   =
 Files  2748 2748   
 Lines259390   259390   
 Branches  4038140381   
   =
 Hits  3736537365   
 Misses   217190   217190   
 Partials   4835 4835   
   ```
   
   
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] weizhouapache commented on issue #7942: Local Storage migration fails due to storage pool not found on destination KVM host

2023-09-05 Thread via GitHub


weizhouapache commented on issue #7942:
URL: https://github.com/apache/cloudstack/issues/7942#issuecomment-1706950122

   @rohityadavcloud 
   Thanks for raising the issue.
   I will try to reproduce the issue


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] rohityadavcloud commented on issue #7942: Local Storage migration fails due to storage pool not found on destination KVM host

2023-09-05 Thread via GitHub


rohityadavcloud commented on issue #7942:
URL: https://github.com/apache/cloudstack/issues/7942#issuecomment-1707145030

   Could be related - https://github.com/apache/cloudstack/issues/5759 cc 
@weizhouapache 


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] rohityadavcloud commented on issue #7942: Local Storage migration fails due to storage pool not found on destination KVM host

2023-09-05 Thread via GitHub


rohityadavcloud commented on issue #7942:
URL: https://github.com/apache/cloudstack/issues/7942#issuecomment-1707187338

   Update - for my specific template, it had some io_uring related settings 
removing those the vm migration seems to be working for newly deployed VMs. It 
could still be combination of other issues, not a blocker for me now. Thanks 
@weizhouapache 


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] weizhouapache commented on issue #7942: Local Storage migration fails due to storage pool not found on destination KVM host

2023-09-05 Thread via GitHub


weizhouapache commented on issue #7942:
URL: https://github.com/apache/cloudstack/issues/7942#issuecomment-1707289135

   > Update - for my specific template, it had some io_uring related settings 
removing those the vm migration seems to be working for newly deployed VMs. It 
could still be combination of other issues, not a blocker for me now. Thanks 
@weizhouapache
   
   Thanks @rohityadavcloud for you findings.
   I will investigate it tomorrow
   It would be good if we can at least find a workaround 


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] dependabot[bot] opened a new pull request, #7943: build(deps): bump org.apache.kafka:kafka-clients from 2.7.0 to 2.7.2

2023-09-05 Thread via GitHub


dependabot[bot] opened a new pull request, #7943:
URL: https://github.com/apache/cloudstack/pull/7943

   Bumps org.apache.kafka:kafka-clients from 2.7.0 to 2.7.2.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.kafka:kafka-clients=maven=2.7.0=2.7.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   You can disable automated security fix PRs for this repo from the [Security 
Alerts page](https://github.com/apache/cloudstack/network/alerts).
   
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] nvazquez commented on issue #7842: viewer was disconnected

2023-09-05 Thread via GitHub


nvazquez commented on issue #7842:
URL: https://github.com/apache/cloudstack/issues/7842#issuecomment-1707375965

   Hi @HtainL, this is actually not an issue, since 4.18.0 CloudStack is able 
to secure/encrypt the VNC access and uses the CA certificates used for securing 
the hosts to also secure the VNC traffic. The VNC client you are using seems to 
be only using the password but is not asking for the certificates, you may try 
another VNC client. Here is some related documentation: 
https://cwiki.apache.org/confluence/display/CLOUDSTACK/Secure+KVM+VNC+connection+using+the+CA+framework,
 https://www.shapeblue.com/secure-kvm-vnc-connections/


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7873: api,server,ui: snapshot copy, multi-zone replica

2023-09-03 Thread via GitHub


blueorangutan commented on PR #7873:
URL: https://github.com/apache/cloudstack/pull/7873#issuecomment-1704595769

   @shwstppr a [SF] Jenkins job has been kicked to build packages. It will be 
bundled with  KVM, XenServer and VMware SystemVM templates. 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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] Noelantogerorge opened a new issue, #7936: User role unable to expunge a VM

2023-09-04 Thread via GitHub


Noelantogerorge opened a new issue, #7936:
URL: https://github.com/apache/cloudstack/issues/7936

   
   
   # ISSUE TYPE
   
* Bug Report
   
   
   # COMPONENT NAME
   
   UI
   
   # CLOUDSTACK VERSION
   
   
   4.18
   
   # CONFIGURATION
   
   
   Advance networking
   
   # OS / ENVIRONMENT
   
   All on Ubuntu 22.04
   
   # SUMMARY
   
   
   A user with role USER is unable to expunge VM created by same user. 
   
   # STEPS TO REPRODUCE
   
   Created an account user and add role as USER. Then create a new VM under 
that user
   after creation go for delete option and VM will get destroyed but VM root 
volume will be shown on Storage -> Volume.
   Only admin user can expunge that volume.
   
   # EXPECTED RESULTS
   
   
   User should have full permission to create and delete Volume and VM's. If a 
user creates a VM and delete that its corresponding root volume should expunge..
   
   # ACTUAL RESULTS
   
   
   Root volume remains and admin user has to login to and delete that vm. As VM 
is only going for destroyed state


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7712: [WIP] Extend import/export unmanaged instances to KVM

2023-09-03 Thread via GitHub


blueorangutan commented on PR #7712:
URL: https://github.com/apache/cloudstack/pull/7712#issuecomment-1704482265

   [SF] Trillian test result (tid-7622)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 40921 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr7712-t7622-kvm-centos7.zip
   Smoke tests completed. 113 look OK, 0 have errors, 0 did not run
   Only failed and skipped 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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] hmadra commented on issue #7934: Linstor root disk does not use size per offering or resize

2023-09-03 Thread via GitHub


hmadra commented on issue #7934:
URL: https://github.com/apache/cloudstack/issues/7934#issuecomment-1704468352

   This issue is valid.
   When looking at the CS Gui, the Volume is assigned the new Size.
   However, in linstor satellite note , when looking at lvs , the LSize is same 
as the template.
   
   When logging into the VM, disk size is the same as the template, which in 
reality should be the overwritten root disk size.
   For example , 
   Lets say the template is 8GB .
   When deploying the VM , we overwrite the Root disk size to 40 GB.
   CS gui confirms that it is assigning 40G to the Root disk.
   
![image](https://github.com/apache/cloudstack/assets/78887364/424104af-6a90-4955-9453-c62f41408941)
   
   in Linstor, LV size is still 8GB (Thats ok)
   
![image](https://github.com/apache/cloudstack/assets/78887364/09c95a5c-feb7-4f78-afc8-17057793ee00)
   
   However, when the VM is deployed, and we check the disk size using fdisk , 
the disk is 8GB and not 40GB.
   
![image](https://github.com/apache/cloudstack/assets/78887364/202c88de-0d37-4d20-a810-60a580b58021)
   
   I can safely stop the VM, resize the disk and start the VM with new size. 
However, this should not be needed, as it works fine with other storage plugins.
   
   
   
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7873: api,server,ui: snapshot copy, multi-zone replica

2023-09-03 Thread via GitHub


blueorangutan commented on PR #7873:
URL: https://github.com/apache/cloudstack/pull/7873#issuecomment-1704631804

   Packaging result [SF]: :heavy_check_mark: el7 :heavy_check_mark: el8 
:heavy_check_mark: el9 :heavy_check_mark: debian :heavy_check_mark: suse15. 
SL-JID 6972


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] nvazquez commented on pull request #7881: New Feature: Migrate VMware VMs to KVM

2023-09-03 Thread via GitHub


nvazquez commented on PR #7881:
URL: https://github.com/apache/cloudstack/pull/7881#issuecomment-1704559496

   @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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7881: New Feature: Migrate VMware VMs to KVM

2023-09-03 Thread via GitHub


blueorangutan commented on PR #7881:
URL: https://github.com/apache/cloudstack/pull/7881#issuecomment-1704593622

   Packaging result [SF]: :heavy_check_mark: el7 :heavy_check_mark: el8 
:heavy_check_mark: el9 :heavy_check_mark: debian :heavy_check_mark: suse15. 
SL-JID 6970


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7881: New Feature: Migrate VMware VMs to KVM

2023-09-03 Thread via GitHub


blueorangutan commented on PR #7881:
URL: https://github.com/apache/cloudstack/pull/7881#issuecomment-1704560653

   @nvazquez a [SF] Jenkins job has been kicked to build packages. It will be 
bundled with  KVM, XenServer and VMware SystemVM templates. 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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] nvazquez commented on pull request #7881: New Feature: Migrate VMware VMs to KVM

2023-09-05 Thread via GitHub


nvazquez commented on PR #7881:
URL: https://github.com/apache/cloudstack/pull/7881#issuecomment-1707599834

   Thanks @weizhouapache, fixed now
   @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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] rohityadavcloud commented on pull request #7878: Publish event for VM.STOP when out of band stop is detected

2023-09-05 Thread via GitHub


rohityadavcloud commented on PR #7878:
URL: https://github.com/apache/cloudstack/pull/7878#issuecomment-1707693120

   @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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] weizhouapache commented on pull request #7944: utils: rename SHADED.jar to SHADED-2.jar to fix the build error on Mac

2023-09-06 Thread via GitHub


weizhouapache commented on PR #7944:
URL: https://github.com/apache/cloudstack/pull/7944#issuecomment-1707801931

   @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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7944: utils: rename SHADED.jar to SHADED-2.jar to fix the build error on Mac

2023-09-06 Thread via GitHub


blueorangutan commented on PR #7944:
URL: https://github.com/apache/cloudstack/pull/7944#issuecomment-1707802374

   @weizhouapache a [SF] Jenkins job has been kicked to build packages. It will 
be bundled with  KVM, XenServer and VMware SystemVM templates. 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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] weizhouapache opened a new pull request, #7944: utils: rename SHADED.jar to SHADED-2.jar to fix the build error on Mac

2023-09-06 Thread via GitHub


weizhouapache opened a new pull request, #7944:
URL: https://github.com/apache/cloudstack/pull/7944

   ### Description
   
   This PR fixes the build error on MacOS
   
   ```
   [ERROR] Failed to execute goal 
org.apache.maven.plugins:maven-shade-plugin:3.0.0:shade (rebuild-war) on 
project cloud-utils: Error creating shaded jar: Could not replace original 
artifact with shaded artifact!: 
/Users/nicolas/cloudstack/utils/target/cloud-utils-4.19.0.0-SNAPSHOT-shaded.jar 
(No such file or directory) -> [Help 1]
   [ERROR]
   [ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
   [ERROR] Re-run Maven using the -X switch to enable full debug logging.
   [ERROR]
   [ERROR] For more information about the errors and possible solutions, please 
read the following articles:
   [ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
   [ERROR]
   [ERROR] After correcting the problems, you can resume the build with the 
command
   [ERROR]   mvn  -rf :cloud-utils
   ```
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   ### 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)
   - [ ] Enhancement (improves an existing feature and functionality)
   - [ ] Cleanup (Code refactoring and cleanup, that may add test cases)
   
   ### Feature/Enhancement Scale or Bug Severity
   
    Feature/Enhancement Scale
   
   - [ ] Major
   - [ ] Minor
   
    Bug Severity
   
   - [ ] BLOCKER
   - [ ] Critical
   - [ ] Major
   - [ ] Minor
   - [ ] Trivial
   
   
   ### 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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7873: api,server,ui: snapshot copy, multi-zone replica

2023-09-05 Thread via GitHub


blueorangutan commented on PR #7873:
URL: https://github.com/apache/cloudstack/pull/7873#issuecomment-1707637448

   [SF] Trillian test result (tid-7631)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 45602 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr7873-t7631-kvm-centos7.zip
   Smoke tests completed. 111 look OK, 2 have errors, 0 did not run
   Only failed and skipped tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   test_08_upgrade_kubernetes_ha_cluster | `Failure` | 748.63 | 
test_kubernetes_clusters.py
   test_05_vmschedule_test_e2e | `Failure` | 255.95 | test_vm_schedule.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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7878: Publish event for VM.STOP when out of band stop is detected

2023-09-05 Thread via GitHub


blueorangutan commented on PR #7878:
URL: https://github.com/apache/cloudstack/pull/7878#issuecomment-1707694089

   @rohityadavcloud a [SF] 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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] weizhouapache commented on issue #7942: Local Storage migration fails due to storage pool not found on destination KVM host

2023-09-06 Thread via GitHub


weizhouapache commented on issue #7942:
URL: https://github.com/apache/cloudstack/issues/7942#issuecomment-1707780692

   we have found the root cause
   ```
   diff --git 
a/plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/resource/LibvirtConnection.java
 b/plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/
   +resource/LibvirtConnection.java
   index c70a72f399c..0f8031e3aaa 100644
   --- 
a/plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/resource/LibvirtConnection.java
   +++ 
b/plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/resource/LibvirtConnection.java
   @@ -21,6 +21,7 @@ import java.util.Map;
   
import org.apache.log4j.Logger;
import org.libvirt.Connect;
   +import org.libvirt.Library;
import org.libvirt.LibvirtException;
   
import com.cloud.hypervisor.Hypervisor;
   @@ -44,6 +45,7 @@ public class LibvirtConnection {
if (conn == null) {
s_logger.info("No existing libvirtd connection found. Opening a 
new one");
conn = new Connect(hypervisorURI, false);
   +Library.initEventLoop();
s_logger.debug("Successfully connected to libvirt at: " + 
hypervisorURI);
s_connections.put(hypervisorURI, conn);
} else {
   ```
   
   @harikrishna-patnala is working on the fix.
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7881: New Feature: Migrate VMware VMs to KVM

2023-09-05 Thread via GitHub


blueorangutan commented on PR #7881:
URL: https://github.com/apache/cloudstack/pull/7881#issuecomment-1707600219

   @nvazquez a [SF] Jenkins job has been kicked to build packages. It will be 
bundled with  KVM, XenServer and VMware SystemVM templates. 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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7881: New Feature: Migrate VMware VMs to KVM

2023-09-05 Thread via GitHub


blueorangutan commented on PR #7881:
URL: https://github.com/apache/cloudstack/pull/7881#issuecomment-1707637115

   Packaging result [SF]: :heavy_check_mark: el7 :heavy_check_mark: el8 
:heavy_check_mark: el9 :heavy_check_mark: debian :heavy_check_mark: suse15. 
SL-JID 6982


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7873: api,server,ui: snapshot copy, multi-zone replica

2023-09-05 Thread via GitHub


blueorangutan commented on PR #7873:
URL: https://github.com/apache/cloudstack/pull/7873#issuecomment-1707667210

   [SF] Trillian test result (tid-7629)
   Environment: xenserver-71 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 48216 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr7873-t7629-xenserver-71.zip
   Smoke tests completed. 113 look OK, 0 have errors, 0 did not run
   Only failed and skipped 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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] soreana commented on pull request #7868: Removed state for removed accounts

2023-09-04 Thread via GitHub


soreana commented on PR #7868:
URL: https://github.com/apache/cloudstack/pull/7868#issuecomment-1704823210

   @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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7868: Removed state for removed accounts

2023-09-04 Thread via GitHub


blueorangutan commented on PR #7868:
URL: https://github.com/apache/cloudstack/pull/7868#issuecomment-1704901768

   Packaging result [SF]: :heavy_check_mark: el7 :heavy_check_mark: el8 
:heavy_check_mark: el9 :heavy_check_mark: debian :heavy_check_mark: suse15. 
SL-JID 6973


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] soreana commented on pull request #7868: Removed state for removed accounts

2023-09-04 Thread via GitHub


soreana commented on PR #7868:
URL: https://github.com/apache/cloudstack/pull/7868#issuecomment-1705211242

   @DaanHoogland @rohityadavcloud @weizhouapache I did some research to 
understand the definitions of `removed` and `destroyed` in CloudStack 
terminology.
   
   Once an object is Destroyed in CloudStack, it remains visible to the root 
admin, who has the exclusive ability to either restore or remove it. Even when 
an object is destroyed, it can still be restored. But once an object is 
removed, it cannot be restored and will be lost permanently.
   
   As of now, it is not possible to restore the account that was removed. 
Therefore, using the term `Remove` state would be more appropriate than 
`Destroyed`.


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] levindecaro commented on issue #7930: Cloudstack VXLAN Usage Problem

2023-09-04 Thread via GitHub


levindecaro commented on issue #7930:
URL: https://github.com/apache/cloudstack/issues/7930#issuecomment-1705276043

   the guest vxlan network should bind to a vlan NIC eg: eth1.2000 or 
bond0.2000, not a bridge, and the vlan interface should assigned a private IP 
to do multicast with peer host.


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] rohityadavcloud opened a new pull request, #7947: ui: don't skip if dataview has multiple items in response

2023-09-06 Thread via GitHub


rohityadavcloud opened a new pull request, #7947:
URL: https://github.com/apache/cloudstack/pull/7947

   This would fix the case of multiple items return in API response for a 
resource such as a template or ISO in case of multi-zone env.
   
   ### 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)
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] rohityadavcloud commented on pull request #7947: ui: don't skip if dataview has multiple items in response

2023-09-06 Thread via GitHub


rohityadavcloud commented on PR #7947:
URL: https://github.com/apache/cloudstack/pull/7947#issuecomment-1708167668

   @blueorangutan ui


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] rohityadavcloud commented on pull request #7947: ui: don't skip if dataview has multiple items in response

2023-09-06 Thread via GitHub


rohityadavcloud commented on PR #7947:
URL: https://github.com/apache/cloudstack/pull/7947#issuecomment-1708200873

   I've tested for https://github.com/apache/cloudstack/pull/7846 and can't 
reproduce the issue with this fix, I think this PR should address @rajujith 's 
issue and not cause further regression. Thank @rajujith @weizhouapache for 
reporting.
   /cc @weizhouapache @nvazquez 


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] rohityadavcloud commented on pull request #7947: ui: don't skip if dataview has multiple items in response

2023-09-06 Thread via GitHub


rohityadavcloud commented on PR #7947:
URL: https://github.com/apache/cloudstack/pull/7947#issuecomment-1708203765

   @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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] nvazquez commented on pull request #7939: UI: Fix user role login due to missing API access on custom hypervisor name

2023-09-06 Thread via GitHub


nvazquez commented on PR #7939:
URL: https://github.com/apache/cloudstack/pull/7939#issuecomment-1708349393

   @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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7881: New Feature: Migrate VMware VMs to KVM

2023-09-06 Thread via GitHub


blueorangutan commented on PR #7881:
URL: https://github.com/apache/cloudstack/pull/7881#issuecomment-1708352774

   @nvazquez a [SF] Trillian-Jenkins matrix job (centos7 mgmt + xenserver71, 
rocky8 mgmt + vmware67u3, centos7 mgmt + kvmcentos7) has been kicked to run 
smoke tests


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7939: UI: Fix user role login due to missing API access on custom hypervisor name

2023-09-06 Thread via GitHub


blueorangutan commented on PR #7939:
URL: https://github.com/apache/cloudstack/pull/7939#issuecomment-1708352890

   @nvazquez a [SF] Jenkins job has been kicked to build packages. It will be 
bundled with  KVM, XenServer and VMware SystemVM templates. 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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7939: UI: Fix user role login due to missing API access on custom hypervisor name

2023-09-06 Thread via GitHub


blueorangutan commented on PR #7939:
URL: https://github.com/apache/cloudstack/pull/7939#issuecomment-1708448748

   Packaging result [SF]: :heavy_check_mark: el7 :heavy_check_mark: el8 
:heavy_check_mark: el9 :heavy_check_mark: debian :heavy_check_mark: suse15. 
SL-JID 6990


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7947: ui: don't skip if dataview has multiple items in response

2023-09-06 Thread via GitHub


blueorangutan commented on PR #7947:
URL: https://github.com/apache/cloudstack/pull/7947#issuecomment-1708168245

   @rohityadavcloud a Jenkins job has been kicked to build UI QA env. 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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7947: ui: don't skip if dataview has multiple items in response

2023-09-06 Thread via GitHub


blueorangutan commented on PR #7947:
URL: https://github.com/apache/cloudstack/pull/7947#issuecomment-1708184196

   UI build: :heavy_check_mark:
   Live QA URL: https://qa.cloudstack.cloud/simulator/pr/7947 (QA-JID-172)


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7947: ui: don't skip if dataview has multiple items in response

2023-09-06 Thread via GitHub


blueorangutan commented on PR #7947:
URL: https://github.com/apache/cloudstack/pull/7947#issuecomment-1708304295

   Packaging result [SF]: :heavy_check_mark: el7 :heavy_check_mark: el8 
:heavy_check_mark: el9 :heavy_check_mark: debian :heavy_check_mark: suse15. 
SL-JID 6989


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] nvazquez commented on a diff in pull request #7881: New Feature: Migrate VMware VMs to KVM

2023-09-06 Thread via GitHub


nvazquez commented on code in PR #7881:
URL: https://github.com/apache/cloudstack/pull/7881#discussion_r1317277544


##
ui/src/views/compute/wizard/NetworkConfiguration.vue:
##
@@ -129,6 +129,7 @@ export default {
 this.dataItems = []
   },
   created () {
+console.log(this.preFillContent)

Review Comment:
   Done, thanks



-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] kiwiflyer commented on issue #7838: The VPC Redundant router "Virtual routers" can not work as expected

2023-09-06 Thread via GitHub


kiwiflyer commented on issue #7838:
URL: https://github.com/apache/cloudstack/issues/7838#issuecomment-1708442278

   Do you have PIM enabled on your switches? If so, disable it and check for 
any other multicast configuration.


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #7873: api,server,ui: snapshot copy, multi-zone replica

2023-09-06 Thread via GitHub


blueorangutan commented on PR #7873:
URL: https://github.com/apache/cloudstack/pull/7873#issuecomment-1707864362

   [SF] Trillian test result (tid-7630)
   Environment: vmware-67u3 (x2), Advanced Networking with Mgmt server r8
   Total time taken: 58638 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr7873-t7630-vmware-67u3.zip
   Smoke tests completed. 111 look OK, 2 have errors, 0 did not run
   Only failed and skipped tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   test_01_non_strict_host_anti_affinity | `Error` | 201.90 | 
test_nonstrict_affinity_group.py
   test_02_non_strict_host_affinity | `Error` | 19.05 | 
test_nonstrict_affinity_group.py
   test_01_invalid_upgrade_kubernetes_cluster | `Failure` | 3617.12 | 
test_kubernetes_clusters.py
   test_02_upgrade_kubernetes_cluster | `Failure` | 3608.70 | 
test_kubernetes_clusters.py
   test_03_deploy_and_scale_kubernetes_cluster | `Failure` | 0.06 | 
test_kubernetes_clusters.py
   test_04_autoscale_kubernetes_cluster | `Failure` | 0.05 | 
test_kubernetes_clusters.py
   test_05_basic_lifecycle_kubernetes_cluster | `Failure` | 0.04 | 
test_kubernetes_clusters.py
   test_06_delete_kubernetes_cluster | `Failure` | 0.04 | 
test_kubernetes_clusters.py
   test_07_deploy_kubernetes_ha_cluster | `Failure` | 0.05 | 
test_kubernetes_clusters.py
   test_08_upgrade_kubernetes_ha_cluster | `Failure` | 0.05 | 
test_kubernetes_clusters.py
   test_09_delete_kubernetes_ha_cluster | `Failure` | 0.05 | 
test_kubernetes_clusters.py
   test_10_vpc_tier_kubernetes_cluster | `Failure` | 66.72 | 
test_kubernetes_clusters.py
   test_11_test_unmanaged_cluster_lifecycle | `Error` | 1.26 | 
test_kubernetes_clusters.py
   ContextSuite context=TestKubernetesCluster>:teardown | `Error` | 82.88 | 
test_kubernetes_clusters.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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] codecov[bot] commented on pull request #7944: utils: rename cloud-utils-*-SHADED.jar to cloud-utils-*-bundled.jar to fix the build error on Mac

2023-09-06 Thread via GitHub


codecov[bot] commented on PR #7944:
URL: https://github.com/apache/cloudstack/pull/7944#issuecomment-1707886993

   ## 
[Codecov](https://app.codecov.io/gh/apache/cloudstack/pull/7944?src=pr=h1_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
 Report
   > Merging 
[#7944](https://app.codecov.io/gh/apache/cloudstack/pull/7944?src=pr=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
 (b78fbc3) into 
[main](https://app.codecov.io/gh/apache/cloudstack/commit/2e6100d85bb408bd1ccfa062cd10ca20b2db3383?el=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
 (2e6100d) will **decrease** coverage by `0.01%`.
   > The diff coverage is `n/a`.
   
   ```diff
   @@ Coverage Diff  @@
   ##   main#7944  +/-   ##
   
   - Coverage 14.40%   14.40%   -0.01% 
   + Complexity1011110109   -2 
   
 Files  2748 2748  
 Lines259390   259390  
 Branches  4038140381  
   
   - Hits  3736537353  -12 
   - Misses   217190   217207  +17 
   + Partials   4835 4830   -5 
   ```
   
   
   [see 3 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/cloudstack/pull/7944/indirect-changes?src=pr=tree-more_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] xuanyuanaosheng commented on issue #7838: The VPC Redundant router "Virtual routers" can not work as expected

2023-09-06 Thread via GitHub


xuanyuanaosheng commented on issue #7838:
URL: https://github.com/apache/cloudstack/issues/7838#issuecomment-1707925070

   @kiwiflyer 
   
   Thanks for your reply.  
   
   I have followed your guidance and modified the network configuration to:
   ```
   # cat ifcfg-eno1
   TYPE=Ethernet
   BOOTPROTO=none
   NAME=eno1
   UUID=a1420bd0-2cbe-45b4-b92e-7ba22aa148ef
   DEVICE=eno1
   ONBOOT=yes
   
   
   # cat ifcfg-eno1.2128 
   NAME=eno1.2128
   DEVICE=eno1.2128
   ONBOOT=yes
   HOTPLUG=no
   BOOTPROTO=none
   VLAN=yes
   BRIDGE=cloudbr0
   
   # cat ifcfg-cloudbr0 
   NAME=cloudbr0
   DEVICE=cloudbr0
   TYPE=BRIDGE
   BOOTPROTO=none
   ONBOOT=yes
   IPADDR=10.26.128.22
   GATEWAY=10.26.128.254
   NETMASK=255.255.255.0
   HOTPLUG=no
   DELAY=5
   STP=no
   
   
-
   # cat ifcfg-eno2
   TYPE=Ethernet
   BOOTPROTO=none
   NAME=eno2
   UUID=d8d48df8-95f5-43af-afc5-433fc81f322e
   DEVICE=eno2
   ONBOOT=yes
   
   # cat ifcfg-eno2.2230 
   NAME=eno2.2230
   DEVICE=eno2.2230
   ONBOOT=yes
   HOTPLUG=no
   VLAN=yes
   BOOTPROTO=static
   IPADDR=10.71.231.42
   NETMASK=255.255.255.0
   ```
   
   Now the hosts network config:
   ```
| cloudbr0:  10.26.128.22 ( VLAN 2128)
   kvm001 --
| eno2.2230:  10.71.231.42 ( VLAN 2230)
   

| cloudbr0:  10.26.128.23 ( VLAN 2128)
   kvm002 --
| eno2.2230:  10.71.231.43 ( VLAN 2230)  


| cloudbr0:  10.26.128.25 ( VLAN 2128)
   kvm003 --
| eno2.2230:  10.71.231.41 ( VLAN 2230) 
  
 
   ```
   
   Now the guest vxlan network is binded to a vlan NIC: `eno2.2230` and the 
vlan interface should assigned a private IP  (10.71.231.42, 10.71.231.41, 
10.71.231.43) to do multicast with peer host. and they can ping each other 
using  ` eno2.2230`.
   
   The zone set is
   
![image](https://github.com/apache/cloudstack/assets/4197714/c690069e-2743-4491-99f0-c3b605422693)
   
   The host can ping each other using `eno2.2230`:
   ```
   [root@kvm001 ~]# ping -I eno2.2230 10.71.231.41
   PING 10.71.231.41 (10.71.231.41) from 10.71.231.42 eno2.2230: 56(84) bytes 
of data.
   64 bytes from 10.71.231.41: icmp_seq=1 ttl=64 time=0.161 ms
   64 bytes from 10.71.231.41: icmp_seq=2 ttl=64 time=0.177 ms
   64 bytes from 10.71.231.41: icmp_seq=3 ttl=64 time=0.178 ms
   ^C
   --- 10.71.231.41 ping statistics ---
   3 packets transmitted, 3 received, 0% packet loss, time 2027ms
   rtt min/avg/max/mdev = 0.161/0.172/0.178/0.007 ms
   [root@kvm001 ~]# ping -I eno2.2230 10.71.231.43
   PING 10.71.231.43 (10.71.231.43) from 10.71.231.42 eno2.2230: 56(84) bytes 
of data.
   64 bytes from 10.71.231.43: icmp_seq=1 ttl=64 time=0.239 ms
   64 bytes from 10.71.231.43: icmp_seq=2 ttl=64 time=0.221 ms
   ^C
   --- 10.71.231.43 ping statistics ---
   2 packets transmitted, 2 received, 0% packet loss, time 1025ms
   rtt min/avg/max/mdev = 0.221/0.230/0.239/0.009 ms
   ```
Now the host iptables on kvm001
   ```
   # cat /etc/sysconfig/iptables
   # Generated by iptables-save v1.8.4 on Mon Sep  4 12:19:22 2023
   *filter
   :INPUT ACCEPT [296573:119551]
   :FORWARD ACCEPT [0:0]
   :OUTPUT ACCEPT [300735:351478871]
   :LIBVIRT_INP - [0:0]
   :LIBVIRT_OUT - [0:0]
   :LIBVIRT_FWO - [0:0]
   :LIBVIRT_FWI - [0:0]
   :LIBVIRT_FWX - [0:0]
   -A INPUT -p udp -m udp --dport 8472 -j ACCEPT
   -A INPUT -p udp -m udp --dport 4789 -j ACCEPT
   -A INPUT -p tcp -m tcp --dport 49152:49216 -j ACCEPT
   -A INPUT -p tcp -m tcp --dport 5900:6100 -j ACCEPT
   -A INPUT -j LIBVIRT_INP
   -A INPUT -p tcp -m tcp --dport 16514 -j ACCEPT
   -A INPUT -p tcp -m tcp --dport 16509 -j ACCEPT
   -A INPUT -p tcp -m tcp --dport 22 -j ACCEPT
   -A INPUT -p tcp -m tcp --dport 1798 -j ACCEPT
   -A INPUT -s 224.0.0.0/4 -j ACCEPT
   -A FORWARD -j LIBVIRT_FWX
   -A FORWARD -j LIBVIRT_FWI
   -A FORWARD -j LIBVIRT_FWO
   -A FORWARD -s 224.0.0.0/4 -d 224.0.0.0/4 -j ACCEPT
   -A OUTPUT -j LIBVIRT_OUT
   -A OUTPUT -d 224.0.0.0/4 -j ACCEPT
   COMMIT
   # Completed on Mon Sep  4 12:19:22 2023
   # Generated by iptables-save v1.8.4 on Mon Sep  4 12:19:22 2023
   *security
   :INPUT ACCEPT [368423:2248850292]
   :FORWARD ACCEPT [0:0]
   :OUTPUT ACCEPT [300741:351481031]
   COMMIT
   # Completed on Mon Sep  4 12:19:22 2023
   # Generated by iptables-save v1.8.4 on Mon Sep  4 12:19:22 2023
   *raw
   :PREROUTING ACCEPT [371554:2249164792]
   :OUTPUT ACCEPT [300741:351481031]
   COMMIT
   # Completed on Mon Sep  4 12:19:22 2023
   # Generated by iptables-save v1.8.4 on Mon Sep  4 12:19:22 2023
   *mangle
   :PREROUTING ACCEPT [371554:2249164792]
   :INPUT ACCEPT [368423:2248850292]
   :FORWARD ACCEPT [0:0]
   :OUTPUT 

[GitHub] [cloudstack] weizhouapache commented on issue #7926: IPv6 subnet assignment fails for guest network

2023-09-06 Thread via GitHub


weizhouapache commented on issue #7926:
URL: https://github.com/apache/cloudstack/issues/7926#issuecomment-1707925607

   > @weizhouapache I put this one in the 4.18.1 milestone as its pull request 
also targeted for that milestone.
   
   thanks @soreana 


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] sonarcloud[bot] commented on pull request #7945: kvm: fix live vm migration between local storage pools

2023-09-06 Thread via GitHub


sonarcloud[bot] commented on PR #7945:
URL: https://github.com/apache/cloudstack/pull/7945#issuecomment-1707961221

   Kudos, SonarCloud Quality Gate passed!  [![Quality Gate 
passed](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/QualityGateBadge/passed-16px.png
 'Quality Gate 
passed')](https://sonarcloud.io/dashboard?id=apache_cloudstack=7945)
   
   
[![Bug](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/bug-16px.png
 
'Bug')](https://sonarcloud.io/project/issues?id=apache_cloudstack=7945=false=BUG)
 
[![A](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/RatingBadge/A-16px.png
 
'A')](https://sonarcloud.io/project/issues?id=apache_cloudstack=7945=false=BUG)
 [0 
Bugs](https://sonarcloud.io/project/issues?id=apache_cloudstack=7945=false=BUG)
  
   
[![Vulnerability](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/vulnerability-16px.png
 
'Vulnerability')](https://sonarcloud.io/project/issues?id=apache_cloudstack=7945=false=VULNERABILITY)
 
[![A](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/RatingBadge/A-16px.png
 
'A')](https://sonarcloud.io/project/issues?id=apache_cloudstack=7945=false=VULNERABILITY)
 [0 
Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_cloudstack=7945=false=VULNERABILITY)
  
   [![Security 
Hotspot](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/security_hotspot-16px.png
 'Security 
Hotspot')](https://sonarcloud.io/project/security_hotspots?id=apache_cloudstack=7945=false=SECURITY_HOTSPOT)
 
[![A](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/RatingBadge/A-16px.png
 
'A')](https://sonarcloud.io/project/security_hotspots?id=apache_cloudstack=7945=false=SECURITY_HOTSPOT)
 [0 Security 
Hotspots](https://sonarcloud.io/project/security_hotspots?id=apache_cloudstack=7945=false=SECURITY_HOTSPOT)
  
   [![Code 
Smell](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/code_smell-16px.png
 'Code 
Smell')](https://sonarcloud.io/project/issues?id=apache_cloudstack=7945=false=CODE_SMELL)
 
[![A](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/RatingBadge/A-16px.png
 
'A')](https://sonarcloud.io/project/issues?id=apache_cloudstack=7945=false=CODE_SMELL)
 [0 Code 
Smells](https://sonarcloud.io/project/issues?id=apache_cloudstack=7945=false=CODE_SMELL)
   
   [![No Coverage 
information](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/CoverageChart/NoCoverageInfo-16px.png
 'No Coverage 
information')](https://sonarcloud.io/component_measures?id=apache_cloudstack=7945=coverage=list)
 No Coverage information  
   [![No Duplication 
information](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/Duplications/NoDuplicationInfo-16px.png
 'No Duplication 
information')](https://sonarcloud.io/component_measures?id=apache_cloudstack=7945=duplicated_lines_density=list)
 No Duplication information
   
   
![warning](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/message_warning-16px.png
 'warning') The version of Java (11.0.20) you have used to run this analysis is 
deprecated and we will stop accepting it soon. Please update to at least Java 
17.
   Read more [here](https://docs.sonarcloud.io/appendices/scanner-environment/)
   
   
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] levindecaro commented on issue #7930: Cloudstack VXLAN Usage Problem

2023-09-06 Thread via GitHub


levindecaro commented on issue #7930:
URL: https://github.com/apache/cloudstack/issues/7930#issuecomment-1708113213

   @xuanyuanaosheng , do you see any multicast packet on 10.71.231.43 eno2.2230 
while 10.71.231.42.34893 > 239.0.10.246.8472 doing multicasting. If not, 
probably your switch is not forwarding multicast.


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] nvazquez commented on pull request #7947: ui: don't skip if dataview has multiple items in response

2023-09-06 Thread via GitHub


nvazquez commented on PR #7947:
URL: https://github.com/apache/cloudstack/pull/7947#issuecomment-1708178886

   @rohityadavcloud could this fix cause regressions on PR 
https://github.com/apache/cloudstack/pull/7846 which introduced the check?


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] rohityadavcloud commented on pull request #7947: ui: don't skip if dataview has multiple items in response

2023-09-06 Thread via GitHub


rohityadavcloud commented on PR #7947:
URL: https://github.com/apache/cloudstack/pull/7947#issuecomment-1708180656

   @nvazquez yes we need to regression test, but I think this code wasn't that 
useful in the first place; was put in as an additional check. We should check 
for #7846


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



  1   2   3   4   5   6   7   8   9   10   >