@@ -5,12 +5,13 @@ sidebar_position: 20
55# Installation
66
77:::important
8+
891 . The plugin ** must** be installed in the same namespace as the CloudNativePG
910 operator (typically ` cnpg-system ` ).
1011
11122 . Keep in mind that the operator's ** listening namespaces** may differ from its
1213 installation namespace. Double-check this to avoid configuration issues.
13- :::
14+ :::
1415
1516## Verifying the Requirements
1617
@@ -54,7 +55,9 @@ Both checks are required before proceeding with the installation.
5455
5556## Installing the Barman Cloud Plugin
5657
57- import { InstallationSnippet } from ' @site/src/components/Installation' ;
58+ import { InstallationSnippet } from " @site/src/components/Installation" ;
59+
60+ ### Directly using the manifest
5861
5962Install the plugin using ` kubectl ` by applying the manifest for the latest
6063release:
@@ -98,6 +101,19 @@ deployment "barman-cloud" successfully rolled out
98101
99102This confirms that the plugin is deployed and ready to use.
100103
104+ ### Using the Helm Chart
105+
106+ The plugin can be installed using the provided [ Helm chart] ( https://github.com/cloudnative-pg/charts/tree/main/charts/plugin-barman-cloud ) :
107+
108+ ``` sh
109+ helm repo add cnpg https://cloudnative-pg.github.io/charts
110+ helm upgrade --install barman-cloud \
111+ --namespace cnpg-system \
112+ --create-namespace \
113+ --version 0.4.0 \
114+ cnpg/plugin-barman-cloud
115+ ```
116+
101117## Testing the latest development snapshot
102118
103119You can also test the latest development snapshot of the plugin with the
0 commit comments