Re: [PR] vTPM: add vm settings [cloudstack-documentation]
weizhouapache commented on PR #490: URL: https://github.com/apache/cloudstack-documentation/pull/490#issuecomment-2729015509 > Historically, we have not created .minor release branches, but shipped minor release's docs from the major release branch. I don't see why 4.20.1.0 could be a tag on the 4.20 doc repo branch and be used to ship the docs for 4.20.1.0 release. maybe we need to create a 4.20 branch for 4.20.x releases, similar to what we are doing with apache/cloudstack repo. some doc PRs have been merged into main branch, as the features are merged into apache/cloudstack main branch. for example #461 (Doc PR for https://github.com/apache/cloudstack/pull/10017) #476 (Doc PR for https://github.com/apache/cloudstack/pull/10300) these changes should not be released in 4.20.1.0 but there are also some doc PRs in main branch which are small fixes, which can be released in 4.20.1.0 may need to review the commits one by one . cc @rohityadavcloud @Pearl1594 -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: New Member Introduction
Welcome Rositsa! Regards, Suresh On Mon, Mar 17, 2025 at 3:03 PM Rositsa Kyuchukova < rositsa.kyuchuk...@shapeblue.com> wrote: > Hello CloudStack Community, > I'm Rositsa and I have recently joined ShapeBlue as a Senior QA Engineer. > I bring over 10 years of experience in both manual and automated testing, > primarily in the Cybersecurity domain. My background includes working with > complex distributed systems and infrastructure security testing. > I'm excited to dive deep into CloudStack, learning its architecture and > workflows. Looking forward to collaborating with the community and > contributing to the continued growth of this valuable project! > > Best Regards, > Rositsa > > > > >
Re: [PR] `id_rsa.pub` location when adding host using SSH Auth [cloudstack-documentation]
weizhouapache commented on code in PR #478: URL: https://github.com/apache/cloudstack-documentation/pull/478#discussion_r1998585373 ## source/installguide/configuration.rst: ## @@ -493,7 +493,7 @@ Basic Zone Configuration Before adding the host in CloudStack do the following, - - Copy the SSH public key from /var/cloudstack/management/.ssh/id_rsa.pub on the management server + - Copy the SSH public key from /var/lib/cloudstack/management/.ssh/id_rsa.pub on the management server Review Comment: the `cloud` user is created by cloudstack. I tested on two management servers. the `cloud` users have different home directories on ubuntu and rocky. This is why I suggested. - ubuntu 24.04 ``` # ls -l ~cloud/.ssh/id_rsa.pub -rw-r--r-- 1 cloud cloud 594 Mar 14 16:19 /var/lib/cloudstack/management/.ssh/id_rsa.pub ``` - rocky8 ``` # ls -l ~cloud/.ssh/id_rsa.pub -rw-r--r--. 1 cloud cloud 202 Mar 14 10:14 /var/cloudstack/management/.ssh/id_rsa.pub ``` -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] Add sphinx config path [cloudstack-documentation]
JoaoJandre commented on PR #489: URL: https://github.com/apache/cloudstack-documentation/pull/489#issuecomment-2730426055 @DaanHoogland @Pearl1594 @weizhouapache @rohityadavcloud @GutoVeronezi I believe this is a somewhat urgent issue, since anyone trying to install version 4.20 will currently be faced with a `Not Found` when trying to download the templates. And to rebuild the documentation, we need this config. -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[PR] Fix autocomplete of migrateSystemVm [cloudstack-cloudmonkey]
vits-hugs opened a new pull request, #159: URL: https://github.com/apache/cloudstack-cloudmonkey/pull/159 ### Description Right now, the autocomplete of the `storageid` parameter on the `migrateSystemVm` API is returning system VMs IDs instead of the expected storage IDs, as shown below. This bug also sets the CloudMonkey autocomplete cache for others APIs, such as `migrateVirtualMachine`. ``` Apache CloudStack 🐵 CloudMonkey 6.4.0 Report issues: https://github.com/apache/cloudstack-cloudmonkey/issues (localcloud) 🐱 > migrate systemvm storageid= 0124fcb6-ca16-421e-b332-d1438f63ac5a (v-12-VM) 159e8d32-5f74-41b1-ba17-8b0e734143f0 (s-14-VM) (localcloud) 🐱 > migrate virtualmachine storageid= 0124fcb6-ca16-421e-b332-d1438f63ac5a (v-12-VM) 159e8d32-5f74-41b1-ba17-8b0e734143f0 (s-14-VM) ``` This PR corrects this, by adding a verification, so the `autocompleteAPI` struct only changes it's `Name` member to `listSystemVms` when it's defined to `listVirtualMachines`, thus not calling the `listSystemVms` API to autocomplete the `storageid` parameter. ### 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) - [ ] build/CI - [ ] test (unit or integration test code) Feature/Enhancement Scale - [ ] Major - [x] Minor ### How Has This Been Tested? On CloudMonkey the autocomplete of all parameters in `migrateSystemVm` was called, and verified to be the correct answer, as shown below. ``` Apache CloudStack 🐵 CloudMonkey 6.4.0 Report issues: https://github.com/apache/cloudstack-cloudmonkey/issues (localcloud) 🐱 > migrate systemvm storageid= 10d65800-bbda-347a-bbb0-250e6d7d1586 (nfs-1) 817d7155-a725-4cf7-b2bb-bc14b238eb4a (iscsi-1) (localcloud) 🐱 > migrate systemvm virtualmachineid= 0124fcb6-ca16-421e-b332-d1438f63ac5a (v-12-VM) 159e8d32-5f74-41b1-ba17-8b0e734143f0 (s-14-VM) ``` -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: New Member Introduction
Welcome Rositsa! Best Regards, Manoj From: Vishesh Jindal Sent: 17 March 2025 5:50 PM To: us...@cloudstack.apache.org Cc: dev Subject: Re: New Member Introduction Welcome Rositsa! Regards Vishesh On Mon, Mar 17, 2025 at 5:48 PM Nicolas Vazquez < nicolas.vazq...@shapeblue.com> wrote: > Welcome Rositsa! > > Regards, > Nicolas Vazquez > > > > > > From: Suresh Kumar Anaparti > Date: Monday, 17 March 2025 at 07:33 > To: us...@cloudstack.apache.org , dev < > dev@cloudstack.apache.org> > Subject: Re: New Member Introduction > Welcome Rositsa! > > Regards, > Suresh > > On Mon, Mar 17, 2025 at 3:03 PM Rositsa Kyuchukova < > rositsa.kyuchuk...@shapeblue.com> wrote: > > > Hello CloudStack Community, > > I'm Rositsa and I have recently joined ShapeBlue as a Senior QA Engineer. > > I bring over 10 years of experience in both manual and automated testing, > > primarily in the Cybersecurity domain. My background includes working > with > > complex distributed systems and infrastructure security testing. > > I'm excited to dive deep into CloudStack, learning its architecture and > > workflows. Looking forward to collaborating with the community and > > contributing to the continued growth of this valuable project! > > > > Best Regards, > > Rositsa > > > > > > > > > > >
Re: [I] Unable to auto-scale Kubernetes cluster [cloudstack-kubernetes-provider]
Jayd603 commented on issue #52: URL: https://github.com/apache/cloudstack-kubernetes-provider/issues/52#issuecomment-2731042175 I just had this happen on 4.19.1 and not sure why. "Failed to get node group for" all nodes. Anyone know how to correct this manually when it happens? I tried disabling auto scaling and re-enabling but that didn't work. -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: New Member Introduction
Welcome Rositsa! Regards, Nicolas Vazquez From: Suresh Kumar Anaparti Date: Monday, 17 March 2025 at 07:33 To: us...@cloudstack.apache.org , dev Subject: Re: New Member Introduction Welcome Rositsa! Regards, Suresh On Mon, Mar 17, 2025 at 3:03 PM Rositsa Kyuchukova < rositsa.kyuchuk...@shapeblue.com> wrote: > Hello CloudStack Community, > I'm Rositsa and I have recently joined ShapeBlue as a Senior QA Engineer. > I bring over 10 years of experience in both manual and automated testing, > primarily in the Cybersecurity domain. My background includes working with > complex distributed systems and infrastructure security testing. > I'm excited to dive deep into CloudStack, learning its architecture and > workflows. Looking forward to collaborating with the community and > contributing to the continued growth of this valuable project! > > Best Regards, > Rositsa > > > > >
Re: [PR] vTPM: add vm settings [cloudstack-documentation]
weizhouapache commented on PR #490: URL: https://github.com/apache/cloudstack-documentation/pull/490#issuecomment-2729057831 @blueorangutan docbuild -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] vTPM: add vm settings [cloudstack-documentation]
blueorangutan commented on PR #490: URL: https://github.com/apache/cloudstack-documentation/pull/490#issuecomment-2729045697 @weizhouapache a Jenkins job has been kicked to build the document. 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] vTPM: add vm settings [cloudstack-documentation]
blueorangutan commented on PR #490: URL: https://github.com/apache/cloudstack-documentation/pull/490#issuecomment-2729048370 QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/490. (QA-JID 314) -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] vTPM: add vm settings [cloudstack-documentation]
blueorangutan commented on PR #490: URL: https://github.com/apache/cloudstack-documentation/pull/490#issuecomment-2729060762 @weizhouapache a Jenkins job has been kicked to build the document. 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] vTPM: add vm settings [cloudstack-documentation]
weizhouapache commented on PR #490: URL: https://github.com/apache/cloudstack-documentation/pull/490#issuecomment-2729043792 @blueorangutan docbuild -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] vTPM: add vm settings [cloudstack-documentation]
blueorangutan commented on PR #490: URL: https://github.com/apache/cloudstack-documentation/pull/490#issuecomment-2728511725 @weizhouapache a Jenkins job has been kicked to build the document. 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] `id_rsa.pub` location when adding host using SSH Auth [cloudstack-documentation]
daniftodi commented on code in PR #478: URL: https://github.com/apache/cloudstack-documentation/pull/478#discussion_r1998541265 ## source/installguide/configuration.rst: ## @@ -493,7 +493,7 @@ Basic Zone Configuration Before adding the host in CloudStack do the following, - - Copy the SSH public key from /var/cloudstack/management/.ssh/id_rsa.pub on the management server + - Copy the SSH public key from /var/lib/cloudstack/management/.ssh/id_rsa.pub on the management server Review Comment: This is not a valid, `~cloud/.ssh/id_rsa.pub` - doesn't exist. Who should create it? -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] `id_rsa.pub` location when adding host using SSH Auth [cloudstack-documentation]
weizhouapache commented on code in PR #478: URL: https://github.com/apache/cloudstack-documentation/pull/478#discussion_r1998131147 ## source/installguide/configuration.rst: ## @@ -493,7 +493,7 @@ Basic Zone Configuration Before adding the host in CloudStack do the following, - - Copy the SSH public key from /var/cloudstack/management/.ssh/id_rsa.pub on the management server + - Copy the SSH public key from /var/lib/cloudstack/management/.ssh/id_rsa.pub on the management server Review Comment: ```suggestion - Copy the SSH public key from ~cloud/.ssh/id_rsa.pub on the management 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] vTPM: add vm settings [cloudstack-documentation]
weizhouapache commented on PR #490: URL: https://github.com/apache/cloudstack-documentation/pull/490#issuecomment-2728648385 > LGTM - but should this be on 4.20 branch @weizhouapache ? thanks @rohityadavcloud 4.20.0.0-base was created by @Pearl1594. I assume it is the branch for 4.20.1.0 release, right ? @Pearl1594 -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: New Member Introduction
Welcome Rositsa! Regards Vishesh On Mon, Mar 17, 2025 at 5:48 PM Nicolas Vazquez < nicolas.vazq...@shapeblue.com> wrote: > Welcome Rositsa! > > Regards, > Nicolas Vazquez > > > > > > From: Suresh Kumar Anaparti > Date: Monday, 17 March 2025 at 07:33 > To: us...@cloudstack.apache.org , dev < > dev@cloudstack.apache.org> > Subject: Re: New Member Introduction > Welcome Rositsa! > > Regards, > Suresh > > On Mon, Mar 17, 2025 at 3:03 PM Rositsa Kyuchukova < > rositsa.kyuchuk...@shapeblue.com> wrote: > > > Hello CloudStack Community, > > I'm Rositsa and I have recently joined ShapeBlue as a Senior QA Engineer. > > I bring over 10 years of experience in both manual and automated testing, > > primarily in the Cybersecurity domain. My background includes working > with > > complex distributed systems and infrastructure security testing. > > I'm excited to dive deep into CloudStack, learning its architecture and > > workflows. Looking forward to collaborating with the community and > > contributing to the continued growth of this valuable project! > > > > Best Regards, > > Rositsa > > > > > > > > > > >
Re: [PR] vTPM: add vm settings [cloudstack-documentation]
blueorangutan commented on PR #490: URL: https://github.com/apache/cloudstack-documentation/pull/490#issuecomment-2728513904 QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/490. (QA-JID 313) -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] vTPM: add vm settings [cloudstack-documentation]
blueorangutan commented on PR #490: URL: https://github.com/apache/cloudstack-documentation/pull/490#issuecomment-2728498385 @weizhouapache a Jenkins job has been kicked to build the document. 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] vTPM: add vm settings [cloudstack-documentation]
rohityadavcloud commented on PR #490: URL: https://github.com/apache/cloudstack-documentation/pull/490#issuecomment-2728584757 LGTM - but should this be on 4.20 branch @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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] vTPM: add vm settings [cloudstack-documentation]
weizhouapache commented on PR #490: URL: https://github.com/apache/cloudstack-documentation/pull/490#issuecomment-2729199974 @blueorangutan docbuild -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] vTPM: add vm settings [cloudstack-documentation]
blueorangutan commented on PR #490: URL: https://github.com/apache/cloudstack-documentation/pull/490#issuecomment-2729202237 @weizhouapache a Jenkins job has been kicked to build the document. 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] vTPM: add vm settings [cloudstack-documentation]
blueorangutan commented on PR #490: URL: https://github.com/apache/cloudstack-documentation/pull/490#issuecomment-2729205462 QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/490. (QA-JID 316) -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[PR] vTPM: add vm settings [cloudstack-documentation]
weizhouapache opened a new pull request, #490: URL: https://github.com/apache/cloudstack-documentation/pull/490 this is the doc PR for https://github.com/apache/cloudstack/pull/10543 -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] vTPM: add vm settings [cloudstack-documentation]
weizhouapache commented on PR #490: URL: https://github.com/apache/cloudstack-documentation/pull/490#issuecomment-2728496970 @blueorangutan docbuild -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] vTPM: add vm settings [cloudstack-documentation]
blueorangutan commented on PR #490: URL: https://github.com/apache/cloudstack-documentation/pull/490#issuecomment-2728500364 QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/490. (QA-JID 312) -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] vTPM: add vm settings [cloudstack-documentation]
weizhouapache commented on PR #490: URL: https://github.com/apache/cloudstack-documentation/pull/490#issuecomment-2728509886 @blueorangutan docbuild -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] vTPM: add vm settings [cloudstack-documentation]
rohityadavcloud commented on PR #490: URL: https://github.com/apache/cloudstack-documentation/pull/490#issuecomment-2728735974 Historically, we have not created .minor release branches, but shipped minor release's docs from the major release branch. I don't see why 4.20.1.0 could be a tag on the 4.20 doc repo branch and be used to ship the docs for 4.20.1.0 release. -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] vTPM: add vm settings [cloudstack-documentation]
blueorangutan commented on PR #490: URL: https://github.com/apache/cloudstack-documentation/pull/490#issuecomment-2729063412 QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/490. (QA-JID 315) -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] Add sphinx config path [cloudstack-documentation]
weizhouapache merged PR #489: URL: https://github.com/apache/cloudstack-documentation/pull/489 -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org