voxpupuli/pdk-templates

Name: pdk-templates

Owner: Vox Pupuli

Description: The main template repo for the Puppet Development Kit https://github.com/puppetlabs/pdk

Created: 2018-04-09 20:36:28.0

Updated: 2018-04-10 19:10:39.0

Pushed: 2018-04-10 01:09:22.0

Homepage: null

Size: 145

Language: HTML

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

PDK Templates

The PDK Templates is the default templates repository for use with the Puppet Development Kit, within which we have defined all the templates for the creation and configuration of a module. Look into these directories to find the templates:

The PDK also absorbs the config_defaults.yml file to apply a set of default configurations to the module. Each top-level key in the file corresponds to a target file, and will be merged with the :global section at the top. Within the template evaluation the values are available under @config. In the module itself, you can override/amend the values by putting new values into .sync.yml in the module's root. The data for a target file also use delete: true and unmanaged: true to remove, or ignore the particular file.

Basic Usage

Templates like this one can be used in conjunction with the PDK. As default the PDK itself uses the templates within this repository to render files for use within a module. Templates can be passed to the PDK as a flag for several of the commands.

pdk convert –template-url https://github.com/puppetlabs/pdk-templates

Please note that the template only needs to be passed in once if you wish to change it, every command run on the PDK will use the last specified template. For more on basic usage and more detailed description of the PDK in action please refer to the PDK documentation.

Config_default Values

The following is a description and explaination of each of the keys within config_defaults. This will help clarify the default settings we choose to apply to pdk modules.

.gitattributes

A .gitattributes file in your repo allows you to ensure consistent git settings.

| Key | Description | | :—————–|:————–| | include | Defines which extensions are handled by git automatic conversions (see the gitattributes documentation). The default configuration helps to keep line endings consistent between windows and linux users.|

.gitignore

A .gitignore file in your repo allows you to specify intentionally untracked files to ignore.

| Key | Description | | :—————–|:————–| | paths | Defines which files or paths for git to ignore or untrack. (see the gitignore documentation). The default configuration helps to set up commonly ignored or untracked files in a module project.

.pdkignore

A .pdkignore file in your repo allows you to specify files to ignore when building a module package with pdk build.

| Key | Description | | :—————–|:————–| | paths | Defines which files or paths for PDK to ignore when building a module package. The default configuration helps to set up commonly ignored files in a module project when building a package.

.travis.yml

Travis CI is a hosted continuous integration platform that is free for all open source projects hosted on Github. We can trigger automated builds with every change to our code base in the master branch, other branches or even a pull request. Travis uses a .travis.yml file in the root of your repository to learn about your project and how you want your builds to be executed.

| Key | Description | | :————- |:————–| | ruby versions |Define the ruby versions on which you want your builds to be executed.| | bunder_args |Define any arguments you want to pass through to bundler. The default is --without system_tests which avoids installing unnessesary gems.| | env |Allows you to set any environment variables for the travis build. Currently includes setting the Puppet gem version alongside the variable CHECK which determines what tests to run.| |docker_sets |Allows you to configure sets of docker to run your tests on. For example, if I wanted to run on a docker instance of Ubuntu I would add set: docker/ubuntu-14.04 to my docker_sets attribute.| |docker_defaults |Defines what values are used as default when using the docker_sets definition. Includes ruby version, sudo being enabled, the distro, the services, the env variables and the script to execute.| |includes |Ensures that the .travis file includes the following checks by default: Rubocop, Puppet Lint, Metadata Lint.|

.yardopts

YARD is a documentation generation tool for the Ruby programming language. It enables the user to generate consistent, usable documentation that can be exported to a number of formats very easily, and also supports extending for custom Ruby constructs such as custom class level definitions.

| Key | Description | | :————- |:————–| | markup |Specifies the markup formatting of your documentation. Default is markdown.| | optional |Define any additional arguments you want to pass through to the yardoc command.|

appveyor.yml

AppVeyor is a hosted, distributed continuous integration service used to build and test projects hosted on GitHub by spinning up a Microsoft Windows virtual machine. AppVeyor is configured by adding a file named appveyor.yml, which is a YAML format text file, to the root directory of the code repository.

| Key | Description | | :————- |:————–| |appveyor_bundle_install|Defines the bundle install command for the appveyor execution run. In our case we use bundle install --without system_tests as default, therefore avoiding redundant gem installation.| |environment|Defines any environment variables wanted for the job run. In our case we default to the latest Puppet 4 gem version.| |matrix|This defines the matrix of jobs to be executed at runtime. Each defines environment variables for that specific job run. In our defaults we have a Ruby version specfied, followed by the check that will be run for that job.| |test_script|This defines the test script that will be executed. For our purposes the default is set to bundle exec rake %CHECK%. As appveyor iterates through the test matrix as we defined above, it resolves the variable CHECK and runs the resulting command. For example, our last test script would be executed as bundle exec rake spec, which would run the spec tests of the module.|

Rakefile

Rake is a Make-like program implemented in Ruby. Tasks and dependencies are specified in standard Ruby syntax within the Rakefile, present in the root directory of the code repository. Within modules context Rake tasks are used quite frequently, from ensuring the integrity of a module, running validation and tests, to tasks for releasing modules.

| Key | Description | | :————- |:————–| |default_disabled_lint_checks| Defines any checks that are to be disabled by default when running lint checks. As default we disable the --relative lint check, which compares the module layout relative to the module root. | |extra_disabled_lint_checks| Defines any checks that are to be disabled as extras when running lint checks. No defaults are defined for this configuration. |

.rubocop.yml

RuboCop is a Ruby static code analyzer. We use Rubocop to enforce a level of quility and consistancy within Ruby code. Rubocop can be configured within .rubocop.yml which is located in the root directory of the code repository. Rubocop works by defining a sanitized list of cops that'll cleanup a code base without much effort, all of which support autocorrect and that are fairly uncontroversial across wide segments of the Community.

| Key | Description | | :————- |:————–| |include_todos|Allows you to use rubocop's “TODOs” to temporarily skip checks by setting this to true. See rubocop's --auto-gen-config option for details. Defaults to false.| |selected_profile|Allows you to define which profile is used by default, which is set to strict, which is fully defined within the profiles section.| |default_configs |Allows you to define the default configuration of which cops will run. Includes the full name of the cop followed by a description of it and an enforced style. Can also make use of the key excludes to exclude any files from that specific cop.| |cleanup_cops |Defines a set of cleanup cops to then be included within a rubocop profile. Cops are defined by their full name, and further configuration can be done by specifying secondary keys. By default we specify a large amount of cleanup cops using their default configuration.| |profiles |Defines the profiles that can be enabled and used within rubocop through the selected_profile option. By default we have set up three profiles: cleanups_only, strict, hardcore and off.|

Gemfile

A Gemfile is a file we create which is used for describing gem dependencies for Ruby programs. All modules should have an associated Gemfile for installing the relevant gems. As development and testing is somewhat consistant between modules we have used the template to define a set of gems relevant to these processes.

| Key | Description | | :————- |:————–| |required|Allows you to specify gems that are required within the Gemfile. Gems can be defined here within groups, for example we use the :development gem group to add in several gems that are relevant to the development of any module.| |optional|Allows you to specify additional gems that are required within the Gemfile. This key can be used to further configure the Gemfile through assignment of a value in the .sync.yml file.|

spec/default_facts.yml

The spec/default_facts.yml file contains a list of facts to be used by default when running rspec tests

| Key | Description | | :————- |:————–| |concat_basedir|Overrides the concat_basedir fact's value in the base template. Defaults to “/tmp”.| |ipaddress|Overrides the ipaddress fact's value in the base template. Defaults to “172.16.254.254”.| |is_pe|Overrides the is_pe fact's value in the base template. Defaults to false. |macaddress|Overrides the macaddress fact's value in the base template. Defaults to “AA:AA:AA:AA:AA:AA”. |extra_facts|List of extra facts to be added to the default_facts.yml file. They are in the form: “name of fact: value of fact“|

spec/spec_helper.rb

The spec/spec_helper.rb file contains setup for rspec tests

| Key | Description | | :————- |:————–| |hiera_config|Sets the hiera_config rspec-puppet parameter.| |mock_with|Defaults to ':mocha'. Recommended to be set to ':rspec', which uses RSpec's built-in mocking library, instead of a third-party one.| |spec_overrides|An array of extra lines to add into your spec_helper.rb. Can be used as an alternative to spec_helper_local| |strict_level| Defines the Puppet Strict configuration parameter. Defaults to :warning. Other values are: :error and :off. :error provides strictest level checking and is encouraged.|

Further Notes

Please note that the early version of this template contained only a 'moduleroot' directory, and did not have a 'moduleroot_init'. The PDK 'pdk new module' command will still work with templates that only have 'moduleroot', however the 'pdk convert' command will fail if the template does not have a 'moduleroot_init' directory present. To remedy this please use the up to date version of the template.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.