Summary

A summary of the content covered in the chapter.

This chapter introduced the four stages of the release pipeline and Github Actions to automate the release pipeline stages,

  • Source
  • Build
  • Testing
  • Release

Linting

We introduced linting and how you can lint your playbooks using the ansible-lint module. We looked at the following methods to deal with errors generated by the ansible-lint command:

  • Fix the error.
  • Ignore the rule using either:
    • -x flag.
    • Adding comments to the playbook.
...