About Roles
Role Attributes
Note
An attribute can be defined in a role and then used to override the default settings on a node. When a role is applied during a Chef Infra Client run, these attributes are compared to the attributes that are already present on the node. When the role attributes take precedence over the default attributes, Chef Infra Client applies those new settings and values during a Chef Infra Client run.
A role attribute can only be set to be a default attribute or an
override attribute. A role attribute cannot be set to be a normal
attribute. Use the default_attribute
and override_attribute
methods
in the .rb
attributes file or the default_attributes
and
override_attributes
hashes in a JSON data file.
Attribute Types
There are two types of attributes that can be used with roles:
Attribute Type | Description |
---|---|
default | A default attribute is automatically reset at the start of every Chef
Infra Client run and has the lowest attribute precedence. Use default
attributes as often as possible in cookbooks. |
override | An override attribute is automatically reset at the start of every
Chef Infra Client run and has a higher attribute precedence than
default , force_default , and normal attributes. An override
attribute is most often specified in a recipe, but can be specified in
an attribute file, for a role, and/or for an environment. A cookbook
should be authored so that it uses override attributes only when
required. |
Role Formats
Role data is stored in two formats: as a Ruby file that contains domain-specific language or as JSON data.
Chef Language
Ruby is a simple programming language:
- Chef uses Ruby as its reference language to define the patterns that are found in resources, recipes, and cookbooks
- Use these patterns to configure, deploy, and manage nodes across the network
Ruby is also a powerful and complete programming language:
- Use the Ruby programming language to make decisions about what should happen to specific resources and recipes
- Extend Chef in any manner that your organization requires
To learn more about Ruby, see:
Domain-specific Ruby attributes:
Setting | Description |
---|---|
| Optional. A set of attributes to be applied to all nodes, assuming the node does not already have a value for the attribute. This is useful for setting global defaults that can then be overridden for specific nodes. If more than one role attempts to set a default value for the same attribute, the last role applied is the role to set the attribute value. When nested attributes are present, they are preserved. For example, to specify that a node that has the attribute |
| A description of the functionality that is covered. For example: |
| Optional. A list of environments, each specifying a recipe or a role to be applied to that environment. This setting must specify the Warning Using env_run_lists with roles is discouraged as it can be difficult to maintain over time. Instead, consider using multiple roles to define the required behavior. |
| A unique name within the organization. Each name must be made up of letters (uppercase and lowercase), numbers, underscores, and hyphens: [A-Z][a-z][0-9] and [_-]. Spaces are not allowed. For example: |
| Optional. A set of attributes to be applied to all nodes, even if the node already has a value for an attribute. This is useful for ensuring that certain attributes always have specific values. If more than one role attempts to set an override value for the same attribute, the last role applied wins. When nested attributes are present, they are preserved. For example: The parameters in a Ruby file are Ruby method calls, so parentheses can be used to provide clarity when specifying numerous or deeply-nested attributes. For example: Or: |
| A list of recipes and/or roles to be applied and the order in which they are to be applied. For example, the following run-list: would apply the |
Each role must be saved as a ruby file in the roles/
subdirectory of
the chef-repo. (If the repository does not have this subdirectory, then
create it using knife.) Each Ruby file should have the .rb
suffix. A
complete role has the following syntax:
name "role_name"
description "role_description"
run_list "recipe[name]", "recipe[name::attribute]", "recipe[name::attribute]"
env_run_lists "name" => ["recipe[name]"], "environment_name" => ["recipe[name::attribute]"]
default_attributes "node" => { "attribute" => [ "value", "value", "etc." ] }
override_attributes "node" => { "attribute" => [ "value", "value", "etc." ] }
where both default and override attributes are optional and at least one
run-list (with at least one run-list item) is specified. For example, a
role named webserver
that has a run-list that defines actions for
three different roles, and for certain roles takes extra steps (such as
the apache2
role listening on ports 80 and 443):
name "webserver"
description "The base role for systems that serve HTTP traffic"
run_list "recipe[apache2]", "recipe[apache2::mod_ssl]", "role[monitor]"
env_run_lists "prod" => ["recipe[apache2]"], "staging" => ["recipe[apache2::staging]"], "_default" => []
default_attributes "apache2" => { "listen_ports" => [ "80", "443" ] }
override_attributes "apache2" => { "max_children" => "50" }
JSON
The JSON format for roles maps directly to the domain-specific Ruby format: same settings, attributes, and values, and a similar structure and organization. For example:
{
"name": "webserver",
"chef_type": "role",
"json_class": "Chef::Role",
"default_attributes": {
"apache2": {
"listen_ports": [
"80",
"443"
]
}
},
"description": "The base role for systems that serve HTTP traffic",
"run_list": [
"recipe[apache2]",
"recipe[apache2::mod_ssl]",
"role[monitor]"
],
"env_run_lists" : {
"production" : [],
"preprod" : [],
"dev": [
"role[base]",
"recipe[apache]",
"recipe[apache::copy_dev_configs]",
],
"test": [
"role[base]",
"recipe[apache]"
]
},
"override_attributes": {
"apache2": {
"max_children": "50"
}
}
}
The JSON format has two additional settings:
Setting | Description |
---|---|
chef_type | Always set this to role . Use this setting for any custom process that consumes role objects outside of Ruby. |
json_class | Always set this to Chef::Role . The Chef Infra Client uses this setting to auto-inflate a role object. If objects are being rebuilt outside of Ruby, ignore it. |
Manage Roles
There are several ways to manage roles:
- knife can be used to create, edit, view, list, tag, and delete roles.
- The Chef Infra Client can be used to manage role data using the
command line and JSON files (that contain a hash, the elements of
which are added as role attributes). In addition, the
run_list
setting allows roles and/or recipes to be added to the role. - The open source Chef Infra Server can be used to manage role data
using the command line and JSON files (that contain a hash, the
elements of which are added as role attributes). In addition, the
run_list
setting allows roles and/or recipes to be added to the role. - The Chef Infra Server API can be used to create and manage roles directly, although using knife directly is the most common way to manage roles.
- The command line can also be used with JSON files and third-party services, such as Amazon EC2, where the JSON files can contain metadata for each instance stored in a file on-disk and then read by chef-solo or Chef Infra Client as required.
By creating and editing files using the Chef Language (Ruby) or JSON, you can dynamically generate role data. Roles created and edited using files are compatible with all versions of Chef, including chef-solo. Roles created and edited using files can be kept in version source control, which also keeps a history of what changed when. When roles are created and edited using files, they should not be managed using knife, as changes will be overwritten.
A run-list that is associated with a role can be edited using the Chef management console add-on. The canonical source of a role’s data is stored on the Chef Infra Server, which means that keeping role data in version source control can be challenging.
If roles are created and managed using knife and then arbitrarily updated uploaded through JSON data, that action will overwrite the previous work with knife. It is strongly recommended to keep to one process and not switch back and forth.
Set Run-lists for Environments
Associating a run-list with a role and a specific environment lets you use the run-list on different nodes that share the same environment. More than one environment can be specified in a role, but each specific environment may be associated with only one run-list. If a run-list is not specified, the default run-list will be used. For example:
{
"name": "webserver",
"default_attributes": {
},
"json_class": "Chef::Role",
"env_run_lists": {
"production": [],
"preprod": [],
"test": [ "role[base]", "recipe[apache]", "recipe[apache::copy_test_configs]" ],
"dev": [ "role[base]", "recipe[apache]", "recipe[apache::copy_dev_configs]" ]
},
"run_list": [ "role[base]", "recipe[apache]" ],
"description": "The webserver role",
"chef_type": "role",
"override_attributes": {
}
}
where:
webserver
is the name of the roleenv_run_lists
is a hash of environment run-lists forproduction
,preprod
,test
, anddev
production
andpreprod
use the default run-list because they do not have a shared environment run-listrun_list
defines the default run-list
Delete from Run-list
When an environment is deleted, it will remain within a run-list for a role until it is removed from that run-list. If a new environment is created that has an identical name to an environment that was deleted, a run-list that contains an old environment name will use the new one.