Hi, Can I use python script to deploy vagrant project into local dc. How can i achieve that ?
On Thursday, August 11, 2016 at 12:42:18 PM UTC+5:30, Alvaro Miranda Aguilera wrote: > > I think the best is get the person sharing this task with you to write > down the goals and the success criteria. > > Otherwise you will end doing a lot of loops and he may never be happy. > > This is what I understand. > > You are being ask to create a process that the result will be a Vagrant > box. > > Because they told you to use "vagrant save" that tells me the they *may* > be referring to vagrant package to create a new vagrant box. > > So, assuming what I understand is correct the workflow they are telling > you is. > > - Create a Vagrant project that have all the dependencies, etc your > company use > - Run that every night > - create a vagrant box every night > - put that box into the company web server > > > when you are there, I will suggest move the task into packer that is a > more fit tool to create vagrant boxes, but to get you started, start doing > what they are suggesting. > > but get them to show you more, and guide you. > > If you want to learn vagrant, happy to help you started: > > - Install virtualbox > - Install latest vagrant from downloads in vagrantup.com > > then do: > > mkdir precise64 > cd precise64 > vagrant init -m hashicorp/precise64 > vagrant up > > done, your fist vagrant is created > > Then read: > https://www.vagrantup.com/docs/getting-started/ > > https://www.vagrantup.com/docs/why-vagrant/ > > And play here: > https://www.vagrantup.com/docs/provisioning/ > > Good luck! > > Feel free to came back any time you have questions :D > > Alvaro. > > On Thu, Aug 11, 2016 at 8:58 AM, Mohit <[email protected] <javascript:>> > wrote: > >> Hi, >> Basically I was asked to do - getting basically a nightly vagrant box >> that has all "custom services" prepackaged. So this would involve using >> "custom script" to build and deploy "custom service" to a local dc and >> then doing a vagrant save. >> >> Not sure what does this mean. >> >> On Thursday, August 11, 2016 at 11:58:41 AM UTC+5:30, Alvaro Miranda >> Aguilera wrote: >>> >>> Hello, >>> >>> where you are reading that? >>> >>> Thanks >>> Alvaro. >>> >>> On Thu, Aug 11, 2016 at 8:24 AM, Amit Laspal <[email protected]> wrote: >>> >>>> I am very new to vagrant. Just started working on it. >>>> I wanted to know what does this mean - "nightly vagrant box that has >>>> all custom services prepackaged". >>>> I have some custom java service which I need to deploy in my box. >>>> Basically is this vagrant provisioning ? Does it mean creating a >>>> setup.sh file containing all custom service and used in vagrant file? >>>> >>>> Thanks, >>>> >>>> -- >>>> This mailing list is governed under the HashiCorp Community Guidelines >>>> - https://www.hashicorp.com/community-guidelines.html. Behavior in >>>> violation of those guidelines may result in your removal from this mailing >>>> list. >>>> >>>> GitHub Issues: https://github.com/mitchellh/vagrant/issues >>>> IRC: #vagrant on Freenode >>>> --- >>>> You received this message because you are subscribed to the Google >>>> Groups "Vagrant" group. >>>> To unsubscribe from this group and stop receiving emails from it, send >>>> an email to [email protected]. >>>> To view this discussion on the web visit >>>> https://groups.google.com/d/msgid/vagrant-up/17e55175-9339-4c63-b1d2-5072be0a4db0%40googlegroups.com >>>> >>>> <https://groups.google.com/d/msgid/vagrant-up/17e55175-9339-4c63-b1d2-5072be0a4db0%40googlegroups.com?utm_medium=email&utm_source=footer> >>>> . >>>> For more options, visit https://groups.google.com/d/optout. >>>> >>> >>> >>> >>> -- >>> Alvaro >>> (+31)103400555 >>> >> -- >> This mailing list is governed under the HashiCorp Community Guidelines - >> https://www.hashicorp.com/community-guidelines.html. Behavior in >> violation of those guidelines may result in your removal from this mailing >> list. >> >> GitHub Issues: https://github.com/mitchellh/vagrant/issues >> IRC: #vagrant on Freenode >> --- >> You received this message because you are subscribed to the Google Groups >> "Vagrant" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected] <javascript:>. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/vagrant-up/9308af7c-3c76-4e13-aabd-b0246ed55465%40googlegroups.com >> >> <https://groups.google.com/d/msgid/vagrant-up/9308af7c-3c76-4e13-aabd-b0246ed55465%40googlegroups.com?utm_medium=email&utm_source=footer> >> . >> For more options, visit https://groups.google.com/d/optout. >> > > > > -- > Alvaro > (+31)103400555 > -- This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list. GitHub Issues: https://github.com/mitchellh/vagrant/issues IRC: #vagrant on Freenode --- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/bcd92e49-fe03-475b-ae8c-c32675be829a%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
