mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-09-06 15:02:21 +02:00
Compare commits
2 Commits
39e25fa10f
...
6b5781a5dc
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6b5781a5dc | ||
|
|
5497c82659 |
10
Taskfile.yml
10
Taskfile.yml
@ -46,7 +46,7 @@ tasks:
|
||||
- wordlist-ordered
|
||||
env:
|
||||
# renovate: datasource=git-refs depName=spellcheck lookupName=https://github.com/cloudnative-pg/daggerverse currentValue=main
|
||||
DAGGER_SPELLCHECK_SHA: 26cd57fb6ad66e88c036b675b0478d38df93962d
|
||||
DAGGER_SPELLCHECK_SHA: 7174b66d283da487638a98b431b7707b311a9a32
|
||||
cmds:
|
||||
- >
|
||||
GITHUB_REF= dagger -s call -m github.com/cloudnative-pg/daggerverse/spellcheck@${DAGGER_SPELLCHECK_SHA}
|
||||
@ -60,7 +60,7 @@ tasks:
|
||||
desc: Check for conventional commits
|
||||
env:
|
||||
# renovate: datasource=git-refs depName=commitlint lookupName=https://github.com/cloudnative-pg/daggerverse currentValue=main
|
||||
DAGGER_COMMITLINT_SHA: 26cd57fb6ad66e88c036b675b0478d38df93962d
|
||||
DAGGER_COMMITLINT_SHA: 7174b66d283da487638a98b431b7707b311a9a32
|
||||
cmds:
|
||||
- >
|
||||
GITHUB_REF= dagger -s call -m github.com/cloudnative-pg/daggerverse/commitlint@${DAGGER_COMMITLINT_SHA}
|
||||
@ -74,7 +74,7 @@ tasks:
|
||||
- wordlist-ordered
|
||||
env:
|
||||
# renovate: datasource=git-refs depName=uncommitted lookupName=https://github.com/cloudnative-pg/daggerverse currentValue=main
|
||||
DAGGER_UNCOMMITTED_SHA: 26cd57fb6ad66e88c036b675b0478d38df93962d
|
||||
DAGGER_UNCOMMITTED_SHA: 7174b66d283da487638a98b431b7707b311a9a32
|
||||
cmds:
|
||||
- GITHUB_REF= dagger -s call -m github.com/cloudnative-pg/daggerverse/uncommitted@${DAGGER_UNCOMMITTED_SHA} check-uncommitted --source . stdout
|
||||
sources:
|
||||
@ -86,7 +86,7 @@ tasks:
|
||||
- controller-gen
|
||||
env:
|
||||
# renovate: datasource=git-refs depName=crd-gen-refs lookupName=https://github.com/cloudnative-pg/daggerverse currentValue=main
|
||||
DAGGER_CRDGENREF_SHA: 26cd57fb6ad66e88c036b675b0478d38df93962d
|
||||
DAGGER_CRDGENREF_SHA: 7174b66d283da487638a98b431b7707b311a9a32
|
||||
# renovate: datasource=go depName=github.com/elastic/crd-ref-docs
|
||||
CRDREFDOCS_VERSION: v0.3.0
|
||||
cmds:
|
||||
@ -383,7 +383,7 @@ tasks:
|
||||
run: once
|
||||
env:
|
||||
# renovate: datasource=git-refs depName=controller-gen lookupName=https://github.com/cloudnative-pg/daggerverse currentValue=main
|
||||
DAGGER_CONTROLLER_GEN_SHA: 26cd57fb6ad66e88c036b675b0478d38df93962d
|
||||
DAGGER_CONTROLLER_GEN_SHA: 7174b66d283da487638a98b431b7707b311a9a32
|
||||
cmds:
|
||||
- >
|
||||
GITHUB_REF= dagger -s call -m github.com/cloudnative-pg/daggerverse/controller-gen@${DAGGER_CONTROLLER_GEN_SHA}
|
||||
|
||||
@ -54,13 +54,10 @@ Both checks are required before proceeding with the installation.
|
||||
|
||||
## Installing the Barman Cloud Plugin
|
||||
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
import { InstallationSnippet } from '@site/src/components/Installation';
|
||||
import { HelmInstallationSnippet } from '@site/src/components/HelmInstallation';
|
||||
|
||||
<Tabs groupId="install-method">
|
||||
<TabItem value="helm" label="Helm Chart" default>
|
||||
### Using the Helm Chart
|
||||
|
||||
The plugin can be installed using the provided [Helm chart](https://github.com/cloudnative-pg/charts/tree/main/charts/plugin-barman-cloud):
|
||||
|
||||
@ -69,8 +66,8 @@ The plugin can be installed using the provided [Helm chart](https://github.com/c
|
||||
Example output:
|
||||
|
||||
```output
|
||||
Release "plugin-barman-cloud" does not exist. Installing it now.
|
||||
NAME: plugin-barman-cloud
|
||||
Release "barman-cloud" does not exist. Installing it now.
|
||||
NAME: barman-cloud
|
||||
LAST DEPLOYED: Wed Jul 1 09:05:16 2026
|
||||
NAMESPACE: cnpg-system
|
||||
STATUS: deployed
|
||||
@ -79,20 +76,7 @@ DESCRIPTION: Install complete
|
||||
TEST SUITE: None
|
||||
```
|
||||
|
||||
Finally, check that the deployment is up and running:
|
||||
|
||||
```sh
|
||||
kubectl -n cnpg-system rollout status deploy/plugin-barman-cloud
|
||||
```
|
||||
|
||||
Example output:
|
||||
|
||||
```output
|
||||
deployment "plugin-barman-cloud" successfully rolled out
|
||||
```
|
||||
|
||||
</TabItem>
|
||||
<TabItem value="kubectl" label="Manifest (kubectl)">
|
||||
### Directly using the manifest
|
||||
|
||||
Install the plugin using `kubectl` by applying the manifest for the latest
|
||||
release:
|
||||
@ -121,10 +105,13 @@ certificate.cert-manager.io/barman-cloud-server created
|
||||
issuer.cert-manager.io/selfsigned-issuer created
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
Finally, check that the deployment is up and running:
|
||||
|
||||
```sh
|
||||
kubectl -n cnpg-system rollout status deploy/barman-cloud
|
||||
kubectl rollout status deployment \
|
||||
-n cnpg-system barman-cloud
|
||||
```
|
||||
|
||||
Example output:
|
||||
@ -133,11 +120,6 @@ Example output:
|
||||
deployment "barman-cloud" successfully rolled out
|
||||
```
|
||||
|
||||
</TabItem>
|
||||
</Tabs>
|
||||
|
||||
---
|
||||
|
||||
This confirms that the plugin is deployed and ready to use.
|
||||
|
||||
## Testing the latest development snapshot
|
||||
|
||||
@ -14,8 +14,9 @@ export function HelmInstallationSnippet({
|
||||
return (
|
||||
<CodeBlock language="sh">
|
||||
{`helm repo add cnpg https://cloudnative-pg.github.io/charts --force-update
|
||||
helm upgrade --install plugin-barman-cloud \\
|
||||
--namespace cnpg-system \\${versionArg}
|
||||
helm upgrade --install barman-cloud \\
|
||||
--namespace cnpg-system \\
|
||||
--create-namespace \\${versionArg}
|
||||
cnpg/plugin-barman-cloud`}
|
||||
</CodeBlock>
|
||||
);
|
||||
|
||||
@ -54,13 +54,10 @@ Both checks are required before proceeding with the installation.
|
||||
|
||||
## Installing the Barman Cloud Plugin
|
||||
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
import { InstallationSnippet } from '@site/src/components/Installation';
|
||||
import { HelmInstallationSnippet } from '@site/src/components/HelmInstallation';
|
||||
|
||||
<Tabs groupId="install-method">
|
||||
<TabItem value="helm" label="Helm Chart" default>
|
||||
### Using the Helm Chart
|
||||
|
||||
The plugin can be installed using the provided [Helm chart](https://github.com/cloudnative-pg/charts/tree/main/charts/plugin-barman-cloud):
|
||||
|
||||
@ -69,8 +66,8 @@ The plugin can be installed using the provided [Helm chart](https://github.com/c
|
||||
Example output:
|
||||
|
||||
```output
|
||||
Release "plugin-barman-cloud" does not exist. Installing it now.
|
||||
NAME: plugin-barman-cloud
|
||||
Release "barman-cloud" does not exist. Installing it now.
|
||||
NAME: barman-cloud
|
||||
LAST DEPLOYED: Wed Jul 1 09:05:16 2026
|
||||
NAMESPACE: cnpg-system
|
||||
STATUS: deployed
|
||||
@ -79,20 +76,7 @@ DESCRIPTION: Install complete
|
||||
TEST SUITE: None
|
||||
```
|
||||
|
||||
Finally, check that the deployment is up and running:
|
||||
|
||||
```sh
|
||||
kubectl -n cnpg-system rollout status deploy/plugin-barman-cloud
|
||||
```
|
||||
|
||||
Example output:
|
||||
|
||||
```output
|
||||
deployment "plugin-barman-cloud" successfully rolled out
|
||||
```
|
||||
|
||||
</TabItem>
|
||||
<TabItem value="kubectl" label="Manifest (kubectl)">
|
||||
### Directly using the manifest
|
||||
|
||||
Install the plugin using `kubectl` by applying the manifest for the latest
|
||||
release:
|
||||
@ -121,10 +105,13 @@ certificate.cert-manager.io/barman-cloud-server created
|
||||
issuer.cert-manager.io/selfsigned-issuer created
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
Finally, check that the deployment is up and running:
|
||||
|
||||
```sh
|
||||
kubectl -n cnpg-system rollout status deploy/barman-cloud
|
||||
kubectl rollout status deployment \
|
||||
-n cnpg-system barman-cloud
|
||||
```
|
||||
|
||||
Example output:
|
||||
@ -133,11 +120,6 @@ Example output:
|
||||
deployment "barman-cloud" successfully rolled out
|
||||
```
|
||||
|
||||
</TabItem>
|
||||
</Tabs>
|
||||
|
||||
---
|
||||
|
||||
This confirms that the plugin is deployed and ready to use.
|
||||
|
||||
## Testing the latest development snapshot
|
||||
|
||||
@ -54,13 +54,10 @@ Both checks are required before proceeding with the installation.
|
||||
|
||||
## Installing the Barman Cloud Plugin
|
||||
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
import { InstallationSnippet } from '@site/src/components/Installation';
|
||||
import { HelmInstallationSnippet } from '@site/src/components/HelmInstallation';
|
||||
|
||||
<Tabs groupId="install-method">
|
||||
<TabItem value="helm" label="Helm Chart" default>
|
||||
### Using the Helm Chart
|
||||
|
||||
The plugin can be installed using the provided [Helm chart](https://github.com/cloudnative-pg/charts/tree/main/charts/plugin-barman-cloud):
|
||||
|
||||
@ -69,8 +66,8 @@ The plugin can be installed using the provided [Helm chart](https://github.com/c
|
||||
Example output:
|
||||
|
||||
```output
|
||||
Release "plugin-barman-cloud" does not exist. Installing it now.
|
||||
NAME: plugin-barman-cloud
|
||||
Release "barman-cloud" does not exist. Installing it now.
|
||||
NAME: barman-cloud
|
||||
LAST DEPLOYED: Wed Jul 1 09:05:16 2026
|
||||
NAMESPACE: cnpg-system
|
||||
STATUS: deployed
|
||||
@ -79,20 +76,7 @@ DESCRIPTION: Install complete
|
||||
TEST SUITE: None
|
||||
```
|
||||
|
||||
Finally, check that the deployment is up and running:
|
||||
|
||||
```sh
|
||||
kubectl -n cnpg-system rollout status deploy/plugin-barman-cloud
|
||||
```
|
||||
|
||||
Example output:
|
||||
|
||||
```output
|
||||
deployment "plugin-barman-cloud" successfully rolled out
|
||||
```
|
||||
|
||||
</TabItem>
|
||||
<TabItem value="kubectl" label="Manifest (kubectl)">
|
||||
### Directly using the manifest
|
||||
|
||||
Install the plugin using `kubectl` by applying the manifest for the latest
|
||||
release:
|
||||
@ -124,7 +108,8 @@ issuer.cert-manager.io/selfsigned-issuer created
|
||||
Finally, check that the deployment is up and running:
|
||||
|
||||
```sh
|
||||
kubectl -n cnpg-system rollout status deploy/barman-cloud
|
||||
kubectl rollout status deployment \
|
||||
-n cnpg-system barman-cloud
|
||||
```
|
||||
|
||||
Example output:
|
||||
@ -133,9 +118,6 @@ Example output:
|
||||
deployment "barman-cloud" successfully rolled out
|
||||
```
|
||||
|
||||
</TabItem>
|
||||
</Tabs>
|
||||
|
||||
This confirms that the plugin is deployed and ready to use.
|
||||
|
||||
## Testing the latest development snapshot
|
||||
|
||||
Loading…
Reference in New Issue
Block a user