Sha256: 9c90f298a88bb36e4481cec140c73bbf59a78682f450ab36d8dd8b1ae9da37fb

Contents?: true

Size: 1.66 KB

Versions: 5

Compression:

Stored size: 1.66 KB

Contents

Common Patterns
===============

This guide provides common patterns seen in the r10k community. These patterns
are, of course, simply a guide. Understand why you are or are not using a
specific pattern before implementing it.

Repository Setup
----------------

Use a [Control Repo](https://docs.puppet.com/pe/latest/cmgmt_control_repo.html)
to store your `Puppetfile`.

Hiera data should be in the Control repo OR as a separate source in
`r10k.yaml`.

Each puppet module should be contained in its own independent forge module or
repository.

Editing modules
---------------

All environment content is checked out into `$environmentpath/modules` on the
node r10k is run on, either your puppet master or each masterless node. Edits
made directly to these files will be lost on the next deploy. It is best
practice not to edit code on the production system in the production paths.

You may clone upstream repositories in a regular user's directory, on the master
or on another machine. Create a new feature branch locally, make all required
edits, and push the new branch upstream when ready for testing. R10k will
deploy changes from the upstream repositories, eliminating the need for manual
updates of the `$environmentpath` contents.

Automated deploys
-----------------

To reduce manual intervention, use a post-receive hook on your control and
module repos to initiate an r10k deploy. You can develop your own or use a
publicly available hook. These include:

* [Reaktor](https://github.com/pzim/reaktor)
* [zack/r10k's Webhooks](https://forge.puppetlabs.com/zack/r10k#webhook-support)
(Puppet Enterprise only)
* [Simple Puppet Provisioner](https://github.com/mbaynton/SimplePuppetProvisioner)

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
r10k-5.0.0 doc/common-patterns.mkd
r10k-4.1.0 doc/common-patterns.mkd
r10k-4.0.2 doc/common-patterns.mkd
r10k-4.0.1 doc/common-patterns.mkd
r10k-4.0.0 doc/common-patterns.mkd