diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index f767c01b..68479d2f 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -18,6 +18,7 @@ jobs: curl https://raw.githubusercontent.com/fluxcd/source-controller/master/docs/api/source.md > docs/components/source/api.md curl https://raw.githubusercontent.com/fluxcd/source-controller/master/docs/spec/v1alpha1/gitrepositories.md > docs/components/source/gitrepositories.md curl https://raw.githubusercontent.com/fluxcd/source-controller/master/docs/spec/v1alpha1/helmrepositories.md > docs/components/source/helmrepositories.md + curl https://raw.githubusercontent.com/fluxcd/source-controller/master/docs/spec/v1alpha1/helmcharts.md > docs/components/source/helmcharts.md # kustomize-controller CRDs curl https://raw.githubusercontent.com/fluxcd/kustomize-controller/master/docs/api/kustomize.md > docs/components/kustomize/api.md diff --git a/docs/index.md b/docs/index.md index 2c4e4964..53fda189 100644 --- a/docs/index.md +++ b/docs/index.md @@ -39,6 +39,7 @@ Components: - [Source Controller](components/source/controller.md) - [GitRepository CRD](components/source/gitrepositories.md) - [HelmRepository CRD](components/source/helmrepositories.md) + - [HelmChart CRD](components/source/helmcharts.md) - [Kustomize Controller](components/kustomize/controller.md) - [Kustomization CRD](components/kustomize/kustomization.md) - [Helm Controller](components/helm/controller.md) diff --git a/mkdocs.yml b/mkdocs.yml index a536311c..aca3c816 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -47,6 +47,7 @@ nav: - Overview: components/source/controller.md - GitRepository CRD: components/source/gitrepositories.md - HelmRepository CRD: components/source/helmrepositories.md + - HelmChart CRD: components/source/helmcharts.md - Source API Reference: components/source/api.md - Kustomize Controller: - Overview: components/kustomize/controller.md