An open API service indexing awesome lists of open source software.

https://github.com/rapidsai/frigate

Frigate is a tool for automatically generating documentation for your Helm charts
https://github.com/rapidsai/frigate

hacktoberfest helm-chart helm-charts

Last synced: 6 months ago
JSON representation

Frigate is a tool for automatically generating documentation for your Helm charts

Awesome Lists containing this project

README

          

# Frigate

> [!IMPORTANT]
> The `frigate` CLI tool has now been archived. The Sphinx extension has been forked to a new home in [kr8s-org/sphinx-helm](https://github.com/kr8s-org/sphinx-helm).

Frigate is a tool for automatically generating documentation for your [Helm charts](https://helm.sh/).

Features:

- Render documentation from your `Chart.yaml` and `values.yaml` files.
- Supports outputting as markdown, reStructuredText and HTML.
- Sphinx extension for including in Python documentation.

## Installation

```
$ pip install frigate
```

## Usage

```
$ frigate gen path/to/chart

Chart
==========

Chart description.

...
```

### Pre-commit-hook

Into the repository you want to have the pre-commit hook installed, run:

```
cat <> .pre-commit-config.yaml
- repo: https://github.com/rapidsai/frigate
rev: v0.4.0 # pre-commit autoupdate - to keep the version up to date
hooks:
- id: frigate
EOF
```

#### Parameters

You can add extra parameters with :

```
- repo: https://github.com/rapidsai/frigate
rev: v0.4.0 # pre-commit autoupdate - to keep the version up to date
hooks:
- id: frigate
args:
- --output=README.rst
- --format=rst
- --no-credits
- --no-deps

```