Note
This project is still in the early stages of development, while it works there might be bugs and missing features. There might also be breaking changes between versions, please pin the version of the plugin to avoid issues. I've not yet tried running it on a pipeline with jinja style template expressions.
Generate mkdocs documentation from Azure Pipelines yaml files.
-"But why?"
When managing a large repository of pipeline template files, it can be difficult to keep track of what each template does and how to use it. This plugin aims to make it easier to document pipeline templates by generating markdown documentation from the template files themselves and adding it to a mkdocs site.
Install the plugin:
pip install mkdocs-azure-pipelines
or
uv add mkdocs-azure-pipelines
Add the plugin to your mkdocs.yml
, you can choose input files and directories to process.
Note, for now you can only specify a single output directory where all the generated markdowns will go.
plugins:
- mkdocs-azure-pipelines:
input_files:
- steps-template.yml
- jobs-template.yml
input_dirs:
- folder_with_pipelines
output_dir: "Pipelines"
The output dir is relative to the root of your documentation.
Tip
The plugin will alter the files to watch when using mkdocs serve
to include your input
files and directories, hot reloading any changes you make to the yaml files.
The plugin will parse the yaml files and extract the following information:
- Trigger
- Pool
- Variables
- Parameters
- Code (the first of steps, jobs or stages key found at top level, then all code under that key)
These will be added to the generated markdown file with the key as level 2 headers and the value as a code block, retaining the original, including comments.
To add extra content to your generated markdown you can use the title, about, example and outputs start and end-tags in the following syntax #:::<tag>-start:::
and #:::<tag>-end:::
.
#:::title-start:::
# Pip cache step template
#:::title-end:::
#:::about-start:::
# This pipeline template is used to install pip deps and cache them.
#:::about-end:::
#:::example-start:::
# steps:
# - template: pip-install-and-cache-step.yml@templates
# parameters:
# python_version: '3.6'
#:::example-end:::
#:::outputs-start:::
# **encouraging_message**: A message to encourage the user.
#:::outputs-end:::
Pipeline/template code starts here...
These generate the following markdown:
# Pip cache step template
## About
This pipeline template is used to install pip deps and cache them.
## Outputs
**encouraging_message**: A message to encourage the user.
## Example
```yaml
steps:
- template: pip-install-and-cache-step.yml@templates
parameters:
python_version: '3.6'
```
Pipeline/template code starts here...
If you are having issues with the plugin, you can run mkdocs build
and mkdocs serve
with the --verbose
flag to get more information about what the plugin is doing. All logs from the plugin should be prefixed with mkdocs-azure-pipelines:
.
Contributions are welcome! If you find any bugs or have a feature request, please open an issue or even better, a pull request 🥳
Development is done using uv. Python 3.10 or higher is required.
See the uv repository for the latest and greatest in installation instructions.
uv sync
uv run pytest
If you want to be sure that your code is properly formatted and linted before committing, you can install the pre-commit hooks.
uv run pre-commit install
This will stop you from committing if the code is not properly formatted or linted.
You can run pre-commit manually on all files using:
uv run pre-commit run --all-files
- Establish a syntax for title, about, example, outputs etc.
- Create a Python script which can process a pipeline template and output a markdown file.
- Convert to a real installable mkdocs plugin.
- Make the plugin document parameters based on the actual pipeline code, no need to use parameters/code-start and -end tags.
- Make the plugin work with any Azure Pipeline yaml file, not just templates. This means parsing variables, pool, trigger, resources etc.
- Make the plugin document outputs based on the actual pipeline code, no need to use outputs-start and outputs-end tags/section.
- Generate mermaid diagrams for the template which take conditions and expressions into consideration.