!! NOTE !! This repository is deprecated! We're still maintaining Puppetserver, PuppetDB, and r10k images, but the build information has moved to the individual project repos at:
- https://github.com/puppetlabs/puppetserver/tree/5.3.x/docker
- https://github.com/puppetlabs/puppetdb/tree/5.2.x/docker
- https://github.com/puppetlabs/r10k/tree/2.6.x/docker
A series of Dockerfiles, and the associated build toolchain, for building Docker images containing Puppet and related software.
This approach to packaging Puppet software is experimental. The resulting images are not a supported way of running Puppet or Puppet Enterprise and are likely to change quickly based on feedback from users. Please do try them out and let us know what you think.
You can copy the individual Dockerfiles in this repo and use them locally for your own purposes. They were created following current Docker best practices, and can be good starting points for custom images.
If you do find yourself customizing these images, please open issues describing why and whether your use is something that could be handled in these images.
You can find published versions of these images on Docker Hub:
- puppet/puppet-agent-ubuntu
- puppet/puppetserver-standalone
- puppet/facter
- puppet/puppetserver
- puppet/puppet-agent-alpine
- puppet/puppetdb-postgres
- puppet/puppetboard -- deprecated
- puppet/puppetdb
- puppet/puppet-agent-centos
- puppet/puppet-agent-debian
- puppet/puppet-inventory -- deprecated
- puppet/r10k
You can use the images for standing up various Puppet applications on Docker. For a complete set of examples see the Puppet in Docker examples repository.
As an example, first we'll create a Docker network. For the purposes of this demonstration, we're using the network and service discovery features added in Docker 1.11.
docker network create puppet
Then we can run a copy of Puppet Server. In the below code, standalone
means that this image does not automatically connect to PuppetDB. That's fine for this simple demo, but in other cases you might prefer the puppet/puppetserver
image.
docker run --net puppet --name puppet --hostname puppet puppet/puppetserver-standalone
This boots the container and, becuase we're running in the foreground, it prints lots of output to the console. After this is running, we can run a Puppet agent in another container.
docker run --net puppet puppet/puppet-agent-ubuntu
This connects to the Puppet Server, applies the resulting catalog, prints a summary, and then exits. That's not very useful apart from development purposes, but this is just a basic demonstration. See the above examples repository for fuller examples, or consider:
The above example runs with the onetime
flag, which means that Puppet exits after the first run. The container can be run with any arbitrary Puppet commands, such as:
docker run --net puppet puppet/puppet-agent-ubuntu agent --verbose --no-daemonize --summarize
This container won't exit, and instead applies Puppet every 30 minutes based on the latest content from the Puppet Server.
You can also use other Puppet commands, such as resource
. For instance, the following command lists all of the packages installed on the image.
docker run puppet/puppet-agent-ubuntu resource package --param provider
To find out about the packages installed on the host, rather than in the container, mount in various folder from the host like so.
docker run --privileged -v /tmp:/tmp --net host -v /etc:/etc -v /var:/var -v /usr:/usr -v lib64:/lib64 puppet/puppet-agent-ubuntu resource package
The same approach works with the Facter image as well.
docker run --privileged -v /tmp:/tmp --net host -v /etc:/etc -v /var:/var -v /usr:/usr -v lib64:/lib64 puppet/facter os
The resulting images expose a label-based API for gathering information about the image or for use in further automation. For example:
$ docker inspect -f "{{json .Config.Labels }}" puppet/puppet-agent-ubuntu | jq
{
"org.label-schema.dockerfile": "/Dockerfile",
"org.label-schema.maintainer": "Puppet Release Team <[email protected]>",
"org.label-schema.build-date": "2018-05-09T20:06:11Z",
"org.label-schema.license": "Apache-2.0",
"org.label-schema.name": "Puppet Agent (Ubuntu)",
"org.label-schema.schema-version": "1.0",
"org.label-schema.url": "https://github.com/puppetlabs/puppet-in-docker",
"org.label-schema.vcs-ref": "b75674e1fbf52f7821f7900ab22a19f1a10cafdb",
"org.label-schema.vcs-url": "https://github.com/puppetlabs/puppet-in-docker",
"org.label-schema.vendor": "Puppet",
"org.label-schema.version": "5.5.1"
}
Please suggest other standard fields for inclusion in the API. Over time, a formal specification may be created, along with further tooling, but this is an experimental feature.
The repository contains a range of tools for managing the set of Dockerfiles and the resulting images. For instance, you can list the images available.
Note that using the toolchain requires a Ruby environment and Bundler. You'll also need a local Docker installation.
$ bundle install
...
$ bundle exec rake list
NAME | VERSION | FROM | SHA | BUILD | MAINTAINER
------------------------|---------|--------------------------------------|------------------------------------------|----------------------|-------------------------------------
facter | 1.5.0 | puppet/puppet-agent-ubuntu:1.5.0 | 97475979ffe252d33a9df67524b5aa313022cb05 | 2016-05-20T10:01:19Z | Gareth Rushgrove "[email protected]"
puppet-agent-alpine | 4.4.2 | alpine:3.3 | 97475979ffe252d33a9df67524b5aa313022cb05 | 2016-05-20T10:01:19Z | Gareth Rushgrove "[email protected]"
puppet-agent-ubuntu | 1.5.0 | ubuntu:16.04 | 97475979ffe252d33a9df67524b5aa313022cb05 | 2016-05-20T10:01:19Z | Gareth Rushgrove "[email protected]"
puppetboard | 0.1.3 | alpine:3.3 | 97475979ffe252d33a9df67524b5aa313022cb05 | 2016-05-20T10:01:19Z | Gareth Rushgrove "[email protected]"
puppetdb | 4.1.0 | ubuntu:16.04 | 97475979ffe252d33a9df67524b5aa313022cb05 | 2016-05-20T10:01:19Z | Gareth Rushgrove "[email protected]"
puppetdb-postgres | 0.1.0 | postgres:9.5.2 | 97475979ffe252d33a9df67524b5aa313022cb05 | 2016-05-20T10:01:19Z | Gareth Rushgrove "[email protected]"
puppetserver | 2.3.2 | puppet/puppetserver-standalone:2.4.0 | 161bca4fed59997fd19581df38678caeefe813bc | 2016-05-16T08:05:27Z | Gareth Rushgrove "[email protected]"
puppetserver-standalone | 2.4.0 | ubuntu:16.04 | 97475979ffe252d33a9df67524b5aa313022cb05 | 2016-05-20T10:01:19Z | Gareth Rushgrove "[email protected]"
The following command builds the puppet-agent-alpine
image. You can find the relevant Dockerfile in the directory of the same name.
$ bundle exec rake puppet-agent-alpine:build
This is a simple interface to run docker build
and creates both a latest and a versioned Docker image in your local repository.
The repository provides two types of tests:
- Validation of the Dockerfile using Hadolint
- Acceptance tests of the image using ServerSpec
These can be run individually or together. To run them together, use the following command.
$ bundle exec rake puppet-agent-alpine:test
The included toolchain allows you to run lint checks, bump version information, run acceptance tests, build, and then publish the resulting Docker images. You can access the toolchain with rake
.
$ bundle exec rake -T
rake all # Run all for all images in repository in parallel
rake build # Run build for all images in repository in parallel
rake lint # Run lint for all images in repository in parallel
rake publish # Run publish for all images in repository in parallel
rake puppet-agent-alpine:build # Build docker image
rake puppet-agent-alpine:lint # Run Hadolint against the Dockerfile
rake puppet-agent-alpine:publish # Publish docker image
rake puppet-agent-alpine:rev # Update Dockerfile label content for new version
rake puppet-agent-alpine:spec # Run RSpec code examples
rake puppet-agent-ubuntu:build # Build docker image
rake puppet-agent-ubuntu:lint # Run Hadolint against the Dockerfile
rake puppet-agent-ubuntu:publish # Publish docker image
rake puppet-agent-ubuntu:rev # Update Dockerfile label content for new version
rake puppet-agent-ubuntu:spec # Run RSpec code examples
...
rake test # Run test for all images in repository in parallel
rake rev # Run rev for all images in repository in parallel
rake rubocop # Run RuboCop
rake rubocop:auto_correct # Auto-correct RuboCop offenses
rake spec # Run spec for all images in repository in parallel
rake test # Run test for all images in repository in parallel
To add additional images to the repository, create a folder in the root of the repository and include in that folder a standard Dockerfile. The above commands should auto-discover the new image. We recommend that you also include a spec folder containing tests verifying the image's behavior. See examples in the other folders for help getting started. Please suggest new images via pull request.
This repository is maintained by the Puppet Release Engineering team [email protected].
Individual images may have separate maintainers as mentioned in the relevant Dockerfiles.
File issues and feature requests in the Community Package Repository (CPR) project with the 'Container' component.