Tagged: puppet
Puppet Module Development with Vagrant
By way of background, I recently switched employers, and in that change, made the switch from Puppet to Chef at work. In doing so, I’ve become a big fan of a Vagrant-driven development workflow. However, on my own time, I still hack around with Puppet – and find myself wanting to use a similar development process when writing modules as opposed to cookbooks.
As far as my searching could could turn up, most of the documentation out on the web pertaining to using Puppet and Vagrant together is about using the Vagrant Puppet provisioner to set up an application development environment, not for using Vagrant to actively test Puppet modules during their development. This was momentarily frustrating to me, but the configuration I came up with to do this is pretty simple. My solution? Use a slightly non-standard module directory layout, add an additional “vagrant.pp” file, and include this in your Vagrantfile:
config.vm.provision :puppet do |puppet| puppet.manifests_path = 'vagrant' puppet.manifest_file = 'vagrant.pp' puppet.module_path = '../' end
The Puppet module directory layout looks like this:
module/ ├── Gemfile ├── Gemfile.lock ├── Modulefile ├── README ├── Vagrantfile ├── manifests │ └── init.pp ├── spec │ └── spec_helper.rb ├── tests │ └── init.pp └── vagrant └── vagrant.pp
In particular, in addition to the Vagrantfile, note the “vagrant” directory and the “vagrant.pp” file contained within it; said “vagrant.pp” file is short and sweet:
# Include this module include <module>
(Where “<module>” is replaced with the actual module name.)
Finally, note that your development directory name must match the class name – otherwise the Puppet provisioner will be unable to find the included class. So, if you namespace your Puppet modules on GitHub with a leading “puppet-” or something similar, you’ll need to rename your development directory.
This layout does conflict with the Puppet module layout specification (by adding additional files/directories), although I haven’t yet noticed any ill effects. I expect – and hope – that test-kitchen for Puppet will render this blog post obsolete in the near future.
Edit 9/28/2013, 10/1/2013: If you are running a somewhat dated Vagrant box, you may find that “package” resources fail, ultimately with an error similar to the following:
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
If updating your box isn’t an immediate option, you can work around this on Ubuntu by adding the following to your Vagrantfile before the Puppet provisioner block:
config.vm.provision :shell, :inline => '/usr/bin/apt-get update'
To avoid running this every time, you can wrap it in a test for an environment variable:
unless ENV['NO_VAGRANT_APTGET'] config.vm.provision :shell, :inline => '/usr/bin/apt-get update' end
and then run “vagrant provision” as follows:
NO_VAGRANT_APTGET=1 vagrant provision
S3fs, or, 256TB of Storage on the Cheap
There’s something pretty satisfying about seeing 256TB of storage available on a machine and knowing that you’re only paying pennies for what you’re using:
> df -h /cloud/hrc/src/ Filesystem Size Used Avail Use% Mounted on s3fs-1.35 256T 0 256T 0% /cloud/hrc/src
Dropping Tarballs with Puppet
I frequently find myself using Puppet to expand tarballs in various locations, sometimes fiddling with a directory name here or there. In fact, I do it so often, that I created a “define” for it earlier this week. This could be a little more polished, but in the spirit of sharing first drafts, here goes:
# Small define to expand a tarball at a location; assumes File[$title] # definition of tarball and installation of pax: define baselayout::drop_tarball($dest, $dir_name, $dir_sub='') { # $dest: cwd in which expansion is done # $dir_name: name of top level directory created in $dest # $dir_sub: regexp to -s for pax - not supported for .zip archives if ($dir_sub) { $regexp = "-s $dir_sub" } else { $regexp = '' } # CentOS' pax doesn't support "-j" flag; therefore, run pax after # bzcat in a pipeline. Twiddle path to bzcat as distro-appropriate: case $operatingsystem { CentOS: { $bzcat = "/usr/bin/bzcat" } Ubuntu: { $bzcat = "/bin/bzcat" } } # Choose expansion method based on file suffix: if (($title =~ /.tar.gz$/) or ($title =~ /.tgz$/)) { $expand = "/usr/bin/pax -rz $regexp < $title" } elsif (($title =~ /.tar.bz2$/) or ($title =~ /.tbz$/)) { $expand = "$bzcat $title | /usr/bin/pax -r $regexp" } elsif ( $title =~ /.zip$/ ) { $expand = "/usr/bin/unzip $title" } exec { "drop_tarball $title": command => $expand, cwd => $dest, creates => "${dest}/${dir_name}", require => File[$title], } }
The definition is written for Ubuntu and CentOS, assumes pax is installed on the system, and that a file resource for the tarball is defined before the definition is called. Pax is used instead of tar to facilitate renaming the top-level directory of the tarball. Zipped directories are also support, but without rename functionality.
I’ll update a gist as I develop the definition.
Comments welcome.
New GitHub Repositories: Puppet Modules for Google Chrome and f5vpn-login
I’ve published two small repositories on GitHub:
- puppet-chrome: A Puppet module to install Google Chrome; and
- puppet-f5vpn: A Puppet module to install f5vpn, the command line F5 FirePass VPN Client.
Both are licensed under the GPL.
Adding Swap to an EC2 Micro Instance
EC2 micro instances come with no swap by default – at least every micro instance that I’ve ever launched does, I’m not sure if it’s theoretically possible to launch an instance with swap. The lack of swap is probably a side-effect of the limited memory combined with EBS-only storage and concomitant risk of high EBS charges if you swap heavily.
However, if you’re willing to accept the risk of unexpected high EBS I/O costs, it’s straightforward to add swap:
# /bin/dd if=/dev/zero of=/var/swap.1 bs=1M count=1024 # /sbin/mkswap /var/swap.1 # /sbin/swapon /var/swap.1
Or, if you prefer Puppet:
class swapfile { exec { "create swap file": command => "/bin/dd if=/dev/zero of=/var/swap.1 bs=1M count=1024", creates => "/var/swap.1", } exec { "attach swap file": command => "/sbin/mkswap /var/swap.1 && /sbin/swapon /var/swap.1", require => Exec["create swap file"], unless => "/sbin/swapon -s | grep /var/swap.1", } }