Skip to content

Latest commit

 

History

History
51 lines (32 loc) · 1.42 KB

README.md

File metadata and controls

51 lines (32 loc) · 1.42 KB

sphinx-helm

PyPI - Version PyPI - Python Version GitHub Actions Workflow Status Read the Docs PyPI - License EffVer Versioning

sphinx-helm is a Sphinx plugin for automatically generating documentation for your Helm charts.

Features:

  • Render documentation from your Chart.yaml and values.yaml files.
  • Sphinx extension for including in Python documentation.
  • Works with .rst and .md documentation source files.

Installation

$ pip install sphinx-helm

Usage

Add the extension to your Sphinx config.

# conf.py

extensions = ['sphinx_helm.ext']

Use the directive to generate documentation for your helm chart.

reStructuredText

.. helm:: path/to/your/helm/chart

MyST Markdown

```{helm} path/to/your/helm/chart

```