Skip to content

gsreynolds/azuredevops_chef_pipeline_templates

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chef Azure DevOps CI/CD Pipelines templates and examples

Note: steps use the v3 of the Azure DevOps Chef Extension.

Policyfile Workflow

Azure DevOps Pipelines YAML templates for common steps and stages, as well as examples of usage in complete pipelines in the example_pipelines directory for:

  • Cookbook CI (with a Policyfile for dependency resolution only, instead of Berksfile)
    • Prep:
      • Git tag for version in metadata.rb does not exist yet
      • Cookbook metadata.rb:
        • Lists at least one supported platform
        • Specifies a Chef Version
        • Any dependencies are pinned using ~> pessimistic (or = equality) version constraints
    • Lint:
      • Cookstyle
      • ChefSpec
    • Integration Testing:
      • kitchen-azure
      • kitchen-vsphere
    • Release:
      • Git Tagging with version in metadata.rb
  • Policyfile CI/CD

Example Policyfiles

# A name that describes what the system you're building with Chef does.
name 'test-policy'

# Where to find external cookbooks:
default_source :supermarket

# run_list: chef-client will run these recipes in the order specified.
run_list 'test::default', 'chef-client::default', 'audit::default'

# Specify a custom source for a single cookbook:
cookbook 'test', git: 'https://AZUREREPOHERE/_git/test', tag: 'v0.1.8'

default['development']['test']['message'] = 'test message for development'
default['production']['test']['message'] = 'test message for production'

The Policyfile CI/CD pipeline also works with Policyfiles that use include_policy from another repo (by automatically commiting the Policyfile Lock JSON so it's available for other policies to include) e.g.

# This is the file server policy for all Chef managed file servers.
name 'another-policy'

# Where to find cookbooks:
default_source :supermarket

# include base policy
include_policy 'test-policy', git: 'https://AZUREREPOHERE/_git/test-policy', path: 'test-policy.lock.json'

# Chef-client will run these recipes in the order specified.
run_list 'openssh::default'

Legacy Workflow

example_pipelines directory also includes legacy workflow pipelines for:

  • Chef Repo CI/CD (environment, roles, data bags)

    • Lint:
      • JSON Lint
      • Legacy Workflow safety checks including:
        • Every cookbook listed in environment files is pinned with equality = pin
        • Every cookbook version listed in environment files exists on the Chef Infra Server
        • Every environment file pins every uploaded cookbook
    • Upload:
      • Upload Roles, Environments and Data Bags
  • Cookbook CI/CD (with Berksfile)

    • Prep:
      • Git tag for version in metadata.rb does not exist yet
      • Cookbook or cookbook version has not been uploaded to the Chef Infra Server organisation yet
      • Cookbook metadata.rb:
        • Lists at least one supported platform
        • Specifies a Chef Version
        • Any dependencies are pinned using ~> pessimistic (or = equality) version constraints
      • Publish Berksfile Lock as pipeline artifact
    • Lint:
      • Cookstyle
      • ChefSpec
    • Integration Testing:
      • kitchen-azure
      • kitchen-vsphere
    • Release:
      • Berks Upload
      • Git Tagging with version in metadata.rb

About

Chef Azure DevOps CI/CD Pipelines templates and examples

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published