Organize webserver configurations with roles and profiles
The roles and profiles method is a reliable way to build reusable, configurable, and refactorable system configurations.
Roles and profiles help you pick out relevant pieces of code from modules and bundle them together to create your own custom set of code for managing things. Profiles are the actual bundles of code. Roles gather profiles together so that you can assign them to nodes. This allows you to efficiently organize your Puppet code.
To learn about roles and profiles by example, follow these instructions to define a
profile that configures the example.com
website and includes a firewall
rule. Then, you will create a role to contain the profile, and you'll assign it to a the
iis
node group that you created earlier. This lays down a base
structure where, if you had additional websites to serve, you would create additional
profiles for them, and those profiles could be separated or combined inside the roles as
needed.
Because you are adding a firewall rule, make sure you add the puppet/windows_firewall module to your Puppetfile, following the same process you used to add
the iis
module. Remember to add the firewall modules dependencies —
puppetlabs/stdlib
and puppetlabs/registry
.
mod 'puppet/windows_firewall', '2.0.2'
mod 'puppetlabs/stdlib' , '4.6.0'
mod 'puppetlabs/registry' , '1.1.1'
See The roles and profiles method for more context on how roles and profiles work.
Set up your prerequisites
Before you begin writing content for roles and profiles, you need to create modules to store them in.
-
Create one module for
profile
and one forrole
directly in your control repo. Do not put them in your Puppetfile. -
Make a new directory in the repo named
site
. For example,/etc/puppetlabs/code/environments/production/site
. -
Edit the
environment.conf
file to addsite
to themodulepath
. This is the place where Puppet looks for module information. For example:modulepath = site:modules:$basemodulepath
. -
Put the
role
andprofile
modules in thesite
directory.
Write a profile for your IIS website
Write a webserver profile that includes rules for your iis_site
and firewall.
puppetlabs/iis
module and
the puppet/windows_firewall
module from the Forge. Set data for the profile
Hiera is a configuration method that allows you to set defaults in your code, or override those defaults in certain circumstances. Use it to fine-tune data within your profile.
Suppose you want to use the custom fact stage
to represent the
deployment stage of the node, which can be dev
, test
,
or prod
. For this example, use dev
and
prod
.
-
console_data
for data defined in the console. -
nodes/%{trusted.certname}
for per-node overrides. -
stage/%{facts.stage}
for setting stage-specific data. -
common
for global fallback data.
This structure lets you tune the settings for ports and IPs in each stage.
For example, to configure webservers in the development environment to have a custom message and to use port 8080, you'd create a data file with the following name, location, and code content:
# /etc/puppetlabs/code/environments/production/data/stage/dev.yaml
---
profile::webserver::example::content: "Hello from dev"
profile::webserver::example::ports:
- '8080'
To have webservers in the production environment listen to all interfaces:
# /etc/puppetlabs/code/environments/production/data/stage/prod.yaml
---
profile::webserver::example::ips:
- '0.0.0.0'
- '::'
This is the briefest of introductions to all the things you can do with structured data in Hiera. To learn more about setting up hierarchical data, see Getting started with Hiera.
Write a role for your IIS website
To write roles, think about what machines you'll be managing and decide what else
they need in addition to the webserver
profile.
Say you want all of the nodes in your iis
node group to use the profile
you just wrote. Suppose also that your organization assigns all machines, including
workstations, with a profile called profile::base
, which
manages basic policies and uses some conditional logic to include
operating-system-specific configuration.
site-modules\role\manifests\exampleserver.pp
Write a role that includes both the base
profile and your
webserver
profile:
class role::exampleserver {
include profile::base
include profile::webserver
}
You can add more profiles to this role, or create additional roles with more profile configurations based on your needs.
Assign the role to nodes
Assign the exampleserver
role to nodes where you want to manage the
configuration of the iis_site
, based on what you wrote in
the webserver::example
profile.
For this example, assume you want to add role::exampleserver
to all the nodes in the iis
node
group you created.
-
In the console, click Classification and select the
iis
node group. -
On the Configuration tab, under Add a new
class, select
role::exampleserver
and click Add class. - Commit the change.
iis
node group is managing your iis_site
website based on the rules you coded into your
webserver
profile.