Being an efficiency and productivity freak, I always try to streamline and automate repetitive tasks. As such, my antennas went up immediately when I started hearing about Provisioning frameworks; I began to incorporate them more and more in my development workflow. A perfect opportunity to take advantage of this came up while ramping up as Developer Advocate here at Atlassian.
Have you heard of Vagrant yet? It is awesome. Why? It automates much of the boilerplate work we developers have to endure while setting up our platforms and toolkits. So what does Vagrant do? In their words, it allows you to create and configure lightweight, reproducible, and portable development environments.
So what better testbed for this tool than the shiny new Stash 2.2 release?
Objective: provide me and fellow developers a (almost) one-click install for Stash.
Alright, Alright I say almost because you need just a few dependencies if you want to use a configuration/provisioning framework, specifically a recent version of VirtualBox, Vagrant and of course git.
First try out this magic for yourself and then I’ll walk you through some interesting details of the setup:
Install VirtualBox and Vagrant and make sure you have git available.
- Open your favorite terminal and add a base virtual machine or provide your own:
1
| vagrant box add base http://files.vagrantup.com/precise32.box |
- Clone the stash-vagrant-install project by typing at your command line:
1 2 3
| git clone https://bitbucket.org/durdn/stash-vagrant-install.git
cd stash-vagrant-install |
- Start up and provision automatically all dependencies in the vm:
??? There is no step 5. *** You’re DONE! ***
Note: be sure to let the process finish as it might take a while to download all the required packages.
After it finishes you will be able to access your brand new Stash installation with a browser at http://localhost:7990/setup. http://localhost:7990/setup
If you need to access the vm you can ssh into the box, you will find the stash installation in the /vagrant folder:
1 2 3
| vagrant ssh
cd /vagrant |
And if you need to start Stash manually you can just type:
1
| STASH_HOME=/vagrant/stash-home /vagrant/atlassian-stash-2.2.0/bin/start-stash.sh |
Under the hood
Now let me explain how all this works in some detail. Under the hood I used an absolutely basic Vagrant setup and a single Puppet manifest. Here is the Vagrantfile:
1 2 3 4 5 6 7 8
| Vagrant::Config.run do |config| config.vm.box = "base" config.vm.forward_port 7990, 7990 config.vm.provision :puppet, :module_path => "modules" do |puppet| puppet.manifests_path = "manifests" puppet.manifest_file = "default.pp" end end |
As you can see it only specifies the port forwarding for where Stash will run (port 7990) and Puppet as provisioning system. Nothing more.
Java Installation Blues
The only major requirement (and the complication) of this setup comes from the task of installing Java 7 and automatically accept the Oracle license terms. Java is not included in Ubuntu repositories for various licensing reasons therefore we have to cater for it.
First we need to instruct Puppet about apt; we do this by requiring the library:
This allows us to interact with Ubuntu packages in a more advanced fashion. Then we need to add a repository to the apt sources, one that includes the Java installer:
1
| apt::ppa { "ppa:webupd8team/java": } |
From there, update the apt infrastructure in two steps, first without the extra ppa repository and then with it:
1 2 3 4 5 6 7 8 9
| exec { 'apt-get update': command =❯ '/usr/bin/apt-get update', before =❯ Apt::Ppa["ppa:webupd8team/java"], }
exec { 'apt-get update 2': command =❯ '/usr/bin/apt-get update', require =❯ [ Apt::Ppa["ppa:webupd8team/java"], Package["git-core"] ], } |
After this we automatically accept the Java license:
1 2 3 4 5 6 7 8 9
| exec { "accept_license": command =❯ "echo debconf shared/accepted-oracle-license-v1-1 select true | sudo debconf-set-selections && echo debconf shared/accepted-oracle-license-v1-1 seen true | sudo debconf-set-selections", cwd =❯ "/home/vagrant", user =❯ "vagrant", path =❯ "/usr/bin/:/bin/", before =❯ Package["oracle-java7-installer"], logoutput =❯ true, } |
Downloading and Running Stash
The rest is about downloading the Stash installation file:
1 2 3 4 5 6 7 8 9 10
| exec { "download_stash": command =❯ "curl -L http://www.atlassian.com/software/stash/downloads/binary/atlassian-stash-2.2.0.tar.gz | tar zx", cwd =❯ "/vagrant", user =❯ "vagrant", path =❯ "/usr/bin/:/bin/", require =❯ Exec["accept_license"], logoutput =❯ true, creates =❯ "/vagrant/atlassian-stash-2.2.0", } |
Creating its home folder:
1 2 3 4 5 6 7 8 9 10
| exec { "create_stash_home": command =❯ "mkdir -p /vagrant/stash-home", cwd =❯ "/vagrant", user =❯ "vagrant", path =❯ "/usr/bin/:/bin/", require =❯ Exec["download_stash"], logoutput =❯ true, creates =❯ "/vagrant/stash-home", } |
And kicking it off in the background:
1 2 3 4 5 6 7 8 9 10 11 12 13
| exec { "start_stash_in_background": environment =❯ "STASH_HOME=/vagrant/stash-home", command =❯ "/vagrant/atlassian-stash-2.2.0/bin/start-stash.sh &", cwd =❯ "/vagrant", user =❯ "vagrant", path =❯ "/usr/bin/:/bin/", require =❯ [ Package["oracle-java7-installer"], Exec["accept_license"], Exec["download_stash"], Exec["create_stash_home"] ], logoutput =❯ true, } |
Now we have a system that has all the required packages ready for Stash to run and that actually kicks it off in the background for you. Pretty awesome!
If you are interested in learning more check out the Puppet manifest to see all the magic in context.
Conclusions
In conclusion: Vagrant and Puppet rock and can help any coder or system administrator to assemble development boxes easily. This is great when evaluating solutions or when providing complete setups with all the required dependencies. Oh and don’t forget to try Stash 2.2 out!