Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/helm/configure-3rdparty-repos-access.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,19 @@ kubectl create secret generic helm-tls-configs \
-n openshift-config
```

### Disable Helm chart repository

We can disable listing helm charts in the catalog by adding `disabled` flag.

```yaml
spec:
connectionConfig:
url: https://my-private-repo.foo.local
disabled: true
```

By adding `disabled` flag in the CR, we are disabling helm chart listing from `https://my-private-repo.foo.local` repository.

### Multiple Chart Repository Support

Adding multiple instances of `HelmChartRepository` is supported. As the result, `/api/helm/charts/index.yaml`
Expand Down