Skip to content
Closed
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
16 changes: 16 additions & 0 deletions web/docs/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down