[GitHub] [cloudstack-cloudmonkey] synergiator commented on issue #110: How to download cmk in scripts?
synergiator commented on issue #110: URL: https://github.com/apache/cloudstack-cloudmonkey/issues/110#issuecomment-1009706195 @rohityadavcloud thx for the workaround @weizhouapache what I do: ``` wget https://github.com/apache/cloudstack-cloudmonkey/releases/tag/6.2.0 ls -alh 6.2.0 -rw-rw-r-- 1 user user 155K Jan 11 09:24 6.2.0 tail 6.2.0 ``` -- 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
[GitHub] [cloudstack-cloudmonkey] synergiator closed issue #110: How to download cmk in scripts?
synergiator closed issue #110: URL: https://github.com/apache/cloudstack-cloudmonkey/issues/110 -- 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
[GitHub] [cloudstack-cloudmonkey] synergiator commented on issue #110: How to download cmk in scripts?
synergiator commented on issue #110: URL: https://github.com/apache/cloudstack-cloudmonkey/issues/110#issuecomment-1009708262 ok I see :-) this one works: https://github.com/apache/cloudstack-cloudmonkey/releases/download/6.2.0/cmk.linux.x86-64 Sorry! -- 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
CloudStack Community Initiatives in January
Hello, dear CloudStack friends, and Happy New Year to all of you! I hope you all have enjoyed the start of the new year! In this email I am sending you a summary of the active initiatives in our community in January: - CloudStack User Survey - https://cloudstack.apache.org/survey.html We are running a user survey, for which we need help from all of you. Based on the survey, we will prepare a community report for the CloudStack usage, use cases, capabilities, etc. Your feedback here is highly important, so be sure you take a moment to fill in the survey. It will take you 5 to 7 minutes maximum. - Cloud/IaaS Market Predictions 2022 Our community will publish an article with our vision and community predictions for the state of the Cloud/IaaS Market in 2022. Can I ask you to send me your predictions for the Cloud/IaaS market in 2022 if possible by end of this week? A few hints bellow: - what technologies will be emerging - what will change - how companies/cloud providers can be more competitive - what will change in the market demand - new solutions/services, which will be launched, etc. I need just a few lines, not more and your vision on the market. Тhe prediction will be quoted with your name and company name on all channels. - Interviews with ACS Committers One of the ongoing initiatives we have are interviews with active committers. We already published the first two. You can see them bellow. We are open to proposals for whom can we interview next :) Nominate your colleagues and friends, who deserve appreciation! https://blogs.apache.org/cloudstack/entry/meet-the-community-pearl-dsilva https://blogs.apache.org/cloudstack/entry/meet-the-community-daniel-salvador Wishing all of you a great week! Kind regards,
[GitHub] [cloudstack-documentation] GabrielBrascher opened a new pull request #257: [Merge only if #5832 is merged] Fix endpointe typo
GabrielBrascher opened a new pull request #257: URL: https://github.com/apache/cloudstack-documentation/pull/257 Updates documentation references of global settings parameter `endpointe.url` to `endpoint.url`. :warning: This PR depends on https://github.com/apache/cloudstack/pull/5832 being merged. -- 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: CloudStack Community Initiatives in January
hey Ivet, I tested the survey and it looks great, hope we get good input from it. Some small points of improvement: I can choose only one hypervisor type, while we use a bunch. Same for the version of cloudstack, people may use several installations in parallel and update them at different intervals. On Tue, Jan 11, 2022 at 10:12 AM Ivet Petrova wrote: > Hello, dear CloudStack friends, and Happy New Year to all of you! > > I hope you all have enjoyed the start of the new year! In this email I am > sending you a summary of the active initiatives in our community in January: > > - CloudStack User Survey - https://cloudstack.apache.org/survey.html > We are running a user survey, for which we need help from all of you. > Based on the survey, we will prepare a community report for the CloudStack > usage, use cases, capabilities, etc. Your feedback here is highly > important, so be sure you take a moment to fill in the survey. It will take > you 5 to 7 minutes maximum. > > - Cloud/IaaS Market Predictions 2022 > Our community will publish an article with our vision and community > predictions for the state of the Cloud/IaaS Market in 2022. > Can I ask you to send me your predictions for the Cloud/IaaS market in > 2022 if possible by end of this week? A few hints bellow: > - what technologies will be emerging > - what will change > - how companies/cloud providers can be more competitive > - what will change in the market demand > - new solutions/services, which will be launched, etc. > > I need just a few lines, not more and your vision on the market. Тhe > prediction will be quoted with your name and company name on all channels. > > - Interviews with ACS Committers > One of the ongoing initiatives we have are interviews with active > committers. We already published the first two. You can see them bellow. We > are open to proposals for whom can we interview next :) Nominate your > colleagues and friends, who deserve appreciation! > > https://blogs.apache.org/cloudstack/entry/meet-the-community-pearl-dsilva > > https://blogs.apache.org/cloudstack/entry/meet-the-community-daniel-salvador > > Wishing all of you a great week! > > Kind regards, > > > > > -- Daan
[GitHub] [cloudstack-terraform-provider] harikrishna-patnala opened a new pull request #30: Fix ip address deletion during "terraform destory" command
harikrishna-patnala opened a new pull request #30: URL: https://github.com/apache/cloudstack-terraform-provider/pull/30 When we try to destroy network/ip resource or complete setup destroy through terraform, the operation fails with following error cloudstack_instance.web: Destruction complete after 11s ╷ │ Error: Error disassociating IP address b4b3aca3-57b6-4469-9a8a-19b896898845: Undefined error: {"errorcode":530,"errortext":"ip address is used for source nat purposes and can not be disassociated."} │ Problem statement: As part of the IP resource destroy, provider tries to dissociate, which is not required when the source nat is enabled. Solution: To skip disassociation if source nat is enabled on the IP. As part of this sourcenat property has to be added to the terraform 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
ACS 4.16 Multiples management servers
Hello Folks, I joined a third ACS Server to my pool, configured it setted the "host" value All seems to be fully functionnal However in the third mgmt server i have this entry in logs every 10-15 seconds : 2022-01-11 18:33:37,991 DEBUG [c.c.a.m.AgentManagerImpl] (AgentManager-Handler-8:null) (logid:) SeqA 7-12389: Processing Seq 7-12389: { Cmd , MgmtId: -1, via: 7, Ver: v1, Flags: 11, [{"com.cloud.agent.api.ConsoleProxyLoadReportCommand":{"_proxyVmId":"3","_loadInfo":"{ "connections": [ { "id": 5, "clientInfo": "", "host": "10.20.0.121", "port": -1, "tag": "04da28e7-818a-4a4d-ae4b-3edc7695a848", "createTime": 1641921092321, "lastUsedTime": 1641922411160 } ] }","wait":"0","bypassHostMaintenance":"false"}}] } Have you an idea why ? Regards, Benoit
Re: ACS 4.16 Multiples management servers
Hi, It is because Console proxy VM (aka CPVM) reports console load to management server every 5 or 10 seconds. It is normal behaviour, do not worry about it. -Wei On Tue, 11 Jan 2022 at 18:37, benoit lair wrote: > Hello Folks, > > I joined a third ACS Server to my pool, configured it setted the "host" > value > All seems to be fully functionnal > However in the third mgmt server i have this entry in logs every 10-15 > seconds : > > 2022-01-11 18:33:37,991 DEBUG [c.c.a.m.AgentManagerImpl] > (AgentManager-Handler-8:null) (logid:) SeqA 7-12389: Processing Seq > 7-12389: { Cmd , MgmtId: -1, via: 7, Ver: v1, Flags: 11, > > [{"com.cloud.agent.api.ConsoleProxyLoadReportCommand":{"_proxyVmId":"3","_loadInfo":"{ > "connections": [ > { > "id": 5, > "clientInfo": "", > "host": "10.20.0.121", > "port": -1, > "tag": "04da28e7-818a-4a4d-ae4b-3edc7695a848", > "createTime": 1641921092321, > "lastUsedTime": 1641922411160 > } > ] > }","wait":"0","bypassHostMaintenance":"false"}}] } > > > Have you an idea why ? > > Regards, Benoit >
Re: ACS 4.16 Multiples management servers
Hi Curiously, i do not have this message on the two first management servers (active-active cluster with crm and pacemaker), i was thinking about a problem with my new third standalone management server Le mar. 11 janv. 2022 à 19:11, Wei ZHOU a écrit : > Hi, > > It is because Console proxy VM (aka CPVM) reports console load to > management server every 5 or 10 seconds. > It is normal behaviour, do not worry about it. > > -Wei > > On Tue, 11 Jan 2022 at 18:37, benoit lair wrote: > > > Hello Folks, > > > > I joined a third ACS Server to my pool, configured it setted the "host" > > value > > All seems to be fully functionnal > > However in the third mgmt server i have this entry in logs every 10-15 > > seconds : > > > > 2022-01-11 18:33:37,991 DEBUG [c.c.a.m.AgentManagerImpl] > > (AgentManager-Handler-8:null) (logid:) SeqA 7-12389: Processing Seq > > 7-12389: { Cmd , MgmtId: -1, via: 7, Ver: v1, Flags: 11, > > > > > [{"com.cloud.agent.api.ConsoleProxyLoadReportCommand":{"_proxyVmId":"3","_loadInfo":"{ > > "connections": [ > > { > > "id": 5, > > "clientInfo": "", > > "host": "10.20.0.121", > > "port": -1, > > "tag": "04da28e7-818a-4a4d-ae4b-3edc7695a848", > > "createTime": 1641921092321, > > "lastUsedTime": 1641922411160 > > } > > ] > > }","wait":"0","bypassHostMaintenance":"false"}}] } > > > > > > Have you an idea why ? > > > > Regards, Benoit > > >
[GitHub] [cloudstack-terraform-provider] harikrishna-patnala commented on issue #29: Registry 404 error - failed to │ retrieve authentication checksums for provider
harikrishna-patnala commented on issue #29: URL: https://github.com/apache/cloudstack-terraform-provider/issues/29#issuecomment-1010630478 As far as I remember I've not seen this error before. @synergiator I've tried the same steps by deleting .terraform folder and terraform init, worked fine. May I know if you trying with local changes or development environment, if yes, can you please follow these steps again from the beginning https://github.com/apache/cloudstack-terraform-provider#developing-the-provider. This is to make sure we have not missed any step along these. 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org