docs: add helm installation steps

This commit is contained in:
Paul Ohlhauser 2026-08-11 22:12:16 +02:00
parent 1e13020fe5
commit 469735a438
No known key found for this signature in database

View File

@ -54,6 +54,8 @@ Both checks are required before proceeding with the installation.
## Installing the Barman Cloud Plugin
### Using manifest
import { InstallationSnippet } from '@site/src/components/Installation';
Install the plugin using `kubectl` by applying the manifest for the latest
@ -83,6 +85,20 @@ certificate.cert-manager.io/barman-cloud-server created
issuer.cert-manager.io/selfsigned-issuer created
```
### Using helm
Install the plugin [helm chart](https://github.com/cloudnative-pg/charts/tree/main/charts/plugin-barman-cloud) using `helm`:
```sh
helm repo add cnpg https://cloudnative-pg.github.io/charts
helm repo update
helm upgrade --install plugin-barman-cloud \
--namespace cnpg-system \
cnpg/plugin-barman-cloud
```
### Validating the installation
Finally, check that the deployment is up and running:
```sh