September 2008 Archives


Veröffentlicht von Edmund Haselwanter am Freitag, August 15, 2008

Wie man das Highline Menü in Capistrano verwendet

veröffentlicht von Edmund Haselwanter am Sep 21, 2008
Tags: capistrano

Sometimes invoking a task in Capistrano requires to input data. A very comfortable approach is to use highline since it is build for this purpose.

weiterlesen…

Puppet und externe Node Definitionen mit icpuppet und iClassify

veröffentlicht von Edmund Haselwanter am Sep 14, 2008
Tags: environment-2.0, iclassify, puppet

Puppet is great for “implementing” server infrastructure. Puppet has a concept of nodes and classes.


node 'webserver.testing.com' { 
        include apache 
} 

class apache { 

$packagelist = ["httpd", "webalizer", "mod_ssl"] 

package { $packagelist: 
       ensure => "installed" 
}
...
}

weiterlesen…

Wie man eine Amazon EC2 Instanz mit Puppet, iClassify und Capistrano bootstraped

veröffentlicht von Edmund Haselwanter am Sep 06, 2008
Tags: aws, capistrano, cloud, ec2, iclassify, puppet

Searching through github ( http://github.com/search?q=puppet) I came across a very similar approach on howto bootstrap EC2 images with capistrano puppet and iclassify. ec2-cap is build on top of the Rightscale Amazon EC2 gem (http://rightaws.rubyforge.org/)

http://github.com/adamhjk/ec2-cap/tree/master

The main idea behind this is to

weiterlesen…