Re: How to use ansible for cloudstack initialization

2021-06-29 Thread Andrija Panic
uster' url="NFS://{{ bc_mgmtip }}{{ bc_pripath }}" | tee -i -a ${DEPLOYLOG}; WriteOutput "Adding Secondary Storage Pool" cloudmonkey add imagestore name='{{ bc_secpool }}' provider='NFS' zoneid=${ZoneID} url="NFS://{{ bc_mgmtip }}{{ bc_secpath }}

Re: How to use ansible for cloudstack initialization

2021-06-29 Thread li jerry
Thank you very much Rohit, Rafael and Rudraksh I will read these documents carefully -邮件原件- 发件人: Rohit Yadav 发送时间: 2021年6月29日 14:10 收件人: [email protected] 主题: Re: How to use ansible for cloudstack initialization Hi, Here are some docs you can refer to: https

Re: How to use ansible for cloudstack initialization

2021-06-28 Thread Rohit Yadav
helps. Regards, Rohit Yadav From: Rafael del Valle Sent: Monday, June 28, 2021 12:55:11 PM To: [email protected] Cc: [email protected] Subject: Re: How to use ansible for cloudstack initialization Hi Rudraksh, Interesting. it may also be

Re: How to use ansible for cloudstack initialization

2021-06-28 Thread Rudraksh MK
Hi Rafael, Yes it could. Bit dependent on what the lookup/discovery platform is, and having some sort of structured schema to it, along with endpoints for querying that data. But yes, it could be done. Best! Rudraksh Mukta Kulshreshtha Vice-President - DevOps & R&D IndiQus Technologies O +91

Re: How to use ansible for cloudstack initialization

2021-06-28 Thread Rafael del Valle
Hi Rudraksh, Interesting. it may also be possible to turn your python scripting to read the files that customers provide into an alternative lookup plugin if CSV doesn't fit well. Regards, Rafael On Mon, 2021-06-28 07:50 AM, Rudraksh MK wrote: > Hi Rene! > > My apologies, I ought to have bee

Re: How to use ansible for cloudstack initialization

2021-06-28 Thread Rafael del Valle
Hi Jerry, I am happy to help. Have a look at https://privaz.io in the gitlab project there is an example that covers that phase of the ACS cloud provisioning. Regards, Rafael On Sun, 2021-06-27 03:40 PM, Rene Moser wrote: > Hi Jerry > > I am one of the authors of the cloudstack ansible int

Re: How to use ansible for cloudstack initialization

2021-06-27 Thread Rudraksh MK
Hi Rene! My apologies, I ought to have been a little clearer. Your playbooks are just perfect, when it comes to configuring an ACS deployment with zones and clusters and pods and so on. In our use case though, what typically happens is that a service provider usually provides spreadsheets with

Re: How to use ansible for cloudstack initialization

2021-06-27 Thread Rene Moser
Hi Jerry I am one of the authors of the cloudstack ansible integration, you can find the docs about every ansible module here https://docs.ansible.com/ansible/latest/collections/ngine_io/cloudstack/index.html We have intregration tests playbooks, which also creates zones, pods, cluster, etc.

Re: How to use ansible for cloudstack initialization

2021-06-26 Thread Rudraksh MK
Hi Jerry! I’m not sure if this solution would work for you, but we find that it’s better to use Ansible for just setting up and deploying the management server and the compute nodes; when it comes to setting up zones, clusters, pods and so on, we typically use Python scripts and the cs library.