june 2014 pdx pug: writing and publishing puppet modules

39
Writing and Publishing Puppet Modules Colleen Murphy, Portland State University

Upload: puppet-labs

Post on 10-May-2015

900 views

Category:

Documents


3 download

TRANSCRIPT

Page 1: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Writing and Publishing Puppet Modules

Colleen Murphy, Portland State University

Page 2: June 2014 PDX PUG: Writing and Publishing Puppet Modules

HelloThis is a beginner’s approach.

Page 3: June 2014 PDX PUG: Writing and Publishing Puppet Modules

HelloPSU’s College of Engineering’s IT department, aka The Computer Action Team (TheCAT),uses puppet to manage a diverse infrastructure.

github.com/pdxcat

Page 4: June 2014 PDX PUG: Writing and Publishing Puppet Modules

What is a puppet module?● An encapsulation of configuration for a

service● A structure containing an organized set of

puppet code and data● Analogous to a package, gem, python library● The place where your code goes

Page 5: June 2014 PDX PUG: Writing and Publishing Puppet Modules

What should a module do?● Set up a service, such as:

○ ssh○ mysql○ apache○ sudo

● Extend puppet functionality. Examples:○ puppetlabs/stdlib○ puppetlabs/concat

Page 6: June 2014 PDX PUG: Writing and Publishing Puppet Modules

The strategySet up the service… without puppet.

Then iterate.

Page 7: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Layout of a moduleyourmodule/

➔ manifests/ # where your puppet code goes➔ files/ # flat configuration files➔ templates/ # dynamic configuration files➔ lib/ # plugins: types and providers, functions,

| facts, etc➔ tests/ # smoke tests/example usage➔ spec/ # automated tests

Page 8: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Layout of a moduleyourmodule/

➔ manifests/ # where your puppet code goes➔ files/ # flat configuration files➔ templates/ # dynamic configuration files➔ lib/ # plugins: types and providers, functions,

| facts, etc➔ tests/ # smoke tests/example usage➔ spec/ # automated tests

Page 9: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Layout of a moduleyourmodule/

➔ manifests/ # where your puppet code goes➔ files/ # flat configuration files➔ templates/ # dynamic configuration files➔ lib/ # plugins: types and providers, functions,

| facts, etc➔ tests/ # smoke tests/example usage➔ spec/ # automated tests

Page 10: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Starting out$ puppet module generate cmurphy-ssh && mv cmurphy-ssh sshGenerating module at /etc/puppet/modules/cmurphy-sshcmurphy-sshcmurphy-ssh/manifestscmurphy-ssh/manifests/init.ppcmurphy-ssh/speccmurphy-ssh/spec/spec_helper.rbcmurphy-ssh/testscmurphy-ssh/tests/init.ppcmurphy-ssh/READMEcmurphy-ssh/Modulefile

$ mkdir ssh/{files,templates}

Page 11: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Writing your first module# manifests/init.pp

class ssh {

package { 'openssh-server': ensure => installed, } file { '/etc/ssh/sshd_config': source =>

"puppet:///modules/ssh/sshd_config", require => Package['openssh-server'], } service { 'ssh': ensure => running, enable => true, subscribe =>

File['/etc/ssh/sshd_config'], }

}

# tests/init.ppinclude ssh

# or

# /etc/puppet/manifests/site.ppnode default { include ssh}

Page 12: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Drop in a configuration file# files/sshd_config

# Managed by Puppet

# What ports, IPs and protocols we listen for

Port 22

Protocol 2

# Logging

SyslogFacility AUTH

LogLevel INFO

# Authentication:

LoginGraceTime 120

PermitRootLogin no

StrictModes yes

# ...

Page 13: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Needs more portability!

No one should have to change your code or your files in order to use your module.

Page 14: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Template your module# templates/sshd_config.erb

# Managed by Puppet

# What ports, IPs and protocols we listen for

Port <%= @port %>

Protocol 2

# Logging

SyslogFacility <%= @syslog_facility %>

LogLevel <%= @log_level %>

# Authentication:

LoginGraceTime 120

PermitRootLogin <%= @permit_root_login %>

StrictModes yes

# ...

Page 15: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Template your module# manifests/init.pp

class ssh (

$port = 22,

$syslog_facility = 'AUTH',

$log_level = 'INFO',

$permit_root_login = 'no',

) {

# ... file { '/etc/ssh/sshd_config': content =>

template('ssh/sshd_config.erb'), require => Package['openssh-server'], }

# ...

# Applying the classclass { 'ssh': permit_root_login => 'without-password',}

Page 16: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Templating strategies# manifests/init.pp

class ssh (

$ports = [ 22 ],

$options = {}

) {

# ... file { '/etc/ssh/sshd_config': content =>

template('ssh/sshd_config.erb'), require => Package['openssh-server'], }

# ...

# Applying the classclass { 'ssh': ports => [ 22, 2222 ], options => { 'PermitRootLogin' => 'no', }}

Page 17: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Templating strategies# templates/sshd_config.erb

# Managed by Puppet

<% @ports.each do |port| %>

Port <%= port %>

<% end %>

<% @options.each do |k,v| %>

<%= k %> <%= v %>

<% end %>

Page 18: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Templating strategiesWorking with tricky configuration files● Take advantage of Include conf/* directives

file { '/etc/collectd.conf': ensure => present, content => 'Include "conf.d/*.conf"\n',}# …define collectd::plugins::exec { file { "${name}.load": path => "${conf_dir}/${name}.conf", content => template('collectd/exec.conf.erb'), }}

Page 19: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Beyond templates● puppetlabs/concat

concat { '/etc/motd': }

concat::fragment { 'welcome':

target => '/etc/motd',

content => 'Welcome to Redhat',

order => '01',

}

concat::fragment { 'legal':

# … }

Page 20: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Beyond templates● puppetlabs/inifile

ini_setting { 'puppetdbserver':

ensure => present,

section => 'main',

path => "${puppet_confdir}/puppetdb.conf",

setting => 'server', value => $server,}

ini_setting { 'puppetdbport':

# …}

Page 21: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Beyond Templates● augeas

● domcleal/augeasproviders

augeas { 'sshd_config_permit_root_login': context => '/files/etc/ssh/sshd_config', changes => "set PermitRootLogin $permit_root_login", require => File['/etc/ssh/sshd_config'],}

sshd_config { "PermitRootLogin":

ensure => present,

value => $permit_root_login,

}

Page 22: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Smart Parameter Defaults# manifests/params.pp

class ssh::params {

case $::osfamily {

'Debian': {

$ssh_svc = 'ssh'

}

'Redhat': {

$ssh_svc = 'sshd'

}

default: {

fail("${::osfamily} is not supported.")

}

}

}

# manifests/init.ppclass ssh (

# ...) { include ssh::params

service { $ssh::params::ssh_svc: ensure => running, enable => true, }

# ...

Page 23: June 2014 PDX PUG: Writing and Publishing Puppet Modules

The Forge

Page 24: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Publishing your moduleModulefilename 'cmurphy-ssh'version '0.0.1'source 'https://github.com/cmurphy/puppet-module-ssh.git'author 'Colleen Murphy'license 'Apache License, Version 2.0'summary 'Puppet module for ssh'description 'Demonstration of parameterized ssh module'project_page 'https://github.com/cmurphy/puppet-module-ssh'

## Add dependencies, if any:# dependency 'username/name', '>= 1.2.0'

Page 25: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Publishing your moduleREADME● docs.puppetlabs.com/puppet/3/reference/READMEtemplate.markdown

license● choosealicense.com

Page 26: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Publishing your moduleChangelog## 2013-12-05 Release 0.10.0### Summary:

This release adds FreeBSD osfamily support and various other improvements to some mods.

### Features:

- Add suPHP_UserGroup directive to directory context- Add support for ScriptAliasMatch directives...

## 2013-09-06 Release 0.9.0### Summary:

...

Page 27: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Publishing your moduleUse semantic versioning! semver.org

Major.Minor.Patch

Page 28: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Publishing your module$ cd ssh/

$ puppet module build .

$ ls pkg/

cmurphy-ssh-0.0.1 cmurphy-ssh-0.0.1.tar.gz

Page 29: June 2014 PDX PUG: Writing and Publishing Puppet Modules

TestingWhy we test:● Testing gives us (some) assurance that our

code won’t break production systems● Contributors can run tests without having

the same infrastructure as you

Page 30: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Testing your module● Smoke testing

# puppet apply --noop tests/init.pp

Page 31: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Testing your module● Unit testing: rspec-puppet

○ rspec-puppet.com

$ bundle exec rake spec

Page 32: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Testing your module# spec/classes/init_spec.rb

require 'spec_helper'

describe 'collectd' do

let :facts do

{:osfamily => 'RedHat'}

end

it { should contain_package('collectd').with(

:ensure => 'installed'

)}

it { should contain_service('collectd').with(

:ensure => 'running'

)}

# ...

Page 33: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Testing your module● Acceptance testing: beaker-rspec

○ github.com/puppetlabs/beaker○ youtu.be/jEJmUQOlaDg

$ bundle exec rspec spec/acceptance

Page 34: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Testing your module# spec/acceptance/class_spec.rb

require 'spec_helper_acceptance'

case fact('osfamily')

# ...describe 'ssh class' do context 'default parameters' do it 'should work with no errors' do pp = "class { 'ssh': }"

# Run it twice and test for idempotency apply_manifest(pp, :catch_failures => true) apply_manifest(pp, :catch_failures => true)

end

describe service(servicename) do it { should be_running } end

# ...

Page 35: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Testing your module● Linting

$ bundle exec rake lint

Page 36: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Maintaining your moduleUpdate your code● fix bugs● add features● manage pull requests

Page 37: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Installing modulesSearch for modules on forge.puppetlabs.com or puppet module search

Then install with puppet module install

Page 38: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Where now?Learn more at docs.puppetlabs.com/guides/module_guides/bgtm.html

Get help atAsk: ask.puppetlabs.comIRC: #puppet on freenodeMailing list: groups.google.com/group/puppet-users

Page 39: June 2014 PDX PUG: Writing and Publishing Puppet Modules

Thanks!Find me:

Colleen Murphyfreenode: crinklegithub: cmurphy

twitter: @pdx_krinkle