mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-03-10 04:32:20 +01:00
Compare commits
4 Commits
680ac547b0
...
0a500b201c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0a500b201c | ||
|
|
064eac2199 | ||
|
|
2c8d0aa8c4 | ||
|
|
4f83d5a60b |
@ -129,7 +129,7 @@ tasks:
|
||||
desc: Run go test
|
||||
env:
|
||||
# renovate: datasource=docker depName=golang versioning=semver
|
||||
GOLANG_IMAGE_VERSION: 1.25.5
|
||||
GOLANG_IMAGE_VERSION: 1.25.6
|
||||
# renovate: datasource=git-refs depname=kubernetes packageName=https://github.com/kubernetes/kubernetes versioning=semver
|
||||
K8S_VERSION: 1.31.0
|
||||
# renovate: datasource=git-refs depName=controller-runtime packageName=https://github.com/kubernetes-sigs/controller-runtime versioning=semver
|
||||
@ -306,7 +306,7 @@ tasks:
|
||||
- start-kind-cluster
|
||||
vars:
|
||||
# renovate: datasource=docker depName=golang versioning=semver
|
||||
GOLANG_IMAGE_VERSION: 1.25.5
|
||||
GOLANG_IMAGE_VERSION: 1.25.6
|
||||
KUBECONFIG_PATH:
|
||||
sh: mktemp -t kubeconfig-XXXXX
|
||||
env:
|
||||
@ -325,7 +325,7 @@ tasks:
|
||||
- build-images
|
||||
vars:
|
||||
# renovate: datasource=docker depName=golang versioning=semver
|
||||
GOLANG_IMAGE_VERSION: 1.25.5
|
||||
GOLANG_IMAGE_VERSION: 1.25.6
|
||||
env:
|
||||
_EXPERIMENTAL_DAGGER_RUNNER_HOST: docker-container://{{ .DAGGER_ENGINE_CONTAINER_NAME }}
|
||||
cmds:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
# Build the manager binary
|
||||
FROM --platform=$BUILDPLATFORM golang:1.25.5 AS gobuilder
|
||||
FROM --platform=$BUILDPLATFORM golang:1.25.6 AS gobuilder
|
||||
ARG TARGETOS
|
||||
ARG TARGETARCH
|
||||
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
# Both components are built before going into a distroless container
|
||||
|
||||
# Build the manager binary
|
||||
FROM --platform=$BUILDPLATFORM golang:1.25.5 AS gobuilder
|
||||
FROM --platform=$BUILDPLATFORM golang:1.25.6 AS gobuilder
|
||||
ARG TARGETOS
|
||||
ARG TARGETARCH
|
||||
|
||||
|
||||
2
go.mod
2
go.mod
@ -2,7 +2,7 @@ module github.com/cloudnative-pg/plugin-barman-cloud
|
||||
|
||||
go 1.25.0
|
||||
|
||||
toolchain go1.25.5
|
||||
toolchain go1.25.6
|
||||
|
||||
require (
|
||||
github.com/cert-manager/cert-manager v1.19.2
|
||||
|
||||
@ -56,6 +56,8 @@ Both checks are required before proceeding with the installation.
|
||||
|
||||
import { InstallationSnippet } from '@site/src/components/Installation';
|
||||
|
||||
### Directly using the manifest
|
||||
|
||||
Install the plugin using `kubectl` by applying the manifest for the latest
|
||||
release:
|
||||
|
||||
@ -98,6 +100,18 @@ deployment "barman-cloud" successfully rolled out
|
||||
|
||||
This confirms that the plugin is deployed and ready to use.
|
||||
|
||||
### 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):
|
||||
|
||||
```sh
|
||||
helm repo add cnpg https://cloudnative-pg.github.io/charts
|
||||
helm upgrade --install barman-cloud \
|
||||
--namespace cnpg-system \
|
||||
--create-namespace \
|
||||
cnpg/plugin-barman-cloud
|
||||
```
|
||||
|
||||
## Testing the latest development snapshot
|
||||
|
||||
You can also test the latest development snapshot of the plugin with the
|
||||
|
||||
@ -56,6 +56,8 @@ Both checks are required before proceeding with the installation.
|
||||
|
||||
import { InstallationSnippet } from '@site/src/components/Installation';
|
||||
|
||||
### Directly using the manifest
|
||||
|
||||
Install the plugin using `kubectl` by applying the manifest for the latest
|
||||
release:
|
||||
|
||||
@ -98,6 +100,19 @@ deployment "barman-cloud" successfully rolled out
|
||||
|
||||
This confirms that the plugin is deployed and ready to use.
|
||||
|
||||
### 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):
|
||||
|
||||
```sh
|
||||
helm repo add cnpg https://cloudnative-pg.github.io/charts
|
||||
helm upgrade --install barman-cloud \
|
||||
--namespace cnpg-system \
|
||||
--create-namespace \
|
||||
--version 0.4.0 \
|
||||
cnpg/plugin-barman-cloud
|
||||
```
|
||||
|
||||
## Testing the latest development snapshot
|
||||
|
||||
You can also test the latest development snapshot of the plugin with the
|
||||
|
||||
@ -56,6 +56,8 @@ Both checks are required before proceeding with the installation.
|
||||
|
||||
import { InstallationSnippet } from '@site/src/components/Installation';
|
||||
|
||||
### Directly using the manifest
|
||||
|
||||
Install the plugin using `kubectl` by applying the manifest for the latest
|
||||
release:
|
||||
|
||||
@ -98,6 +100,19 @@ deployment "barman-cloud" successfully rolled out
|
||||
|
||||
This confirms that the plugin is deployed and ready to use.
|
||||
|
||||
### 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):
|
||||
|
||||
```sh
|
||||
helm repo add cnpg https://cloudnative-pg.github.io/charts
|
||||
helm upgrade --install barman-cloud \
|
||||
--namespace cnpg-system \
|
||||
--create-namespace \
|
||||
--version 0.1.0 \
|
||||
cnpg/plugin-barman-cloud
|
||||
```
|
||||
|
||||
## Testing the latest development snapshot
|
||||
|
||||
You can also test the latest development snapshot of the plugin with the
|
||||
|
||||
@ -56,6 +56,8 @@ Both checks are required before proceeding with the installation.
|
||||
|
||||
import { InstallationSnippet } from '@site/src/components/Installation';
|
||||
|
||||
### Directly using the manifest
|
||||
|
||||
Install the plugin using `kubectl` by applying the manifest for the latest
|
||||
release:
|
||||
|
||||
@ -98,6 +100,19 @@ deployment "barman-cloud" successfully rolled out
|
||||
|
||||
This confirms that the plugin is deployed and ready to use.
|
||||
|
||||
### 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):
|
||||
|
||||
```sh
|
||||
helm repo add cnpg https://cloudnative-pg.github.io/charts
|
||||
helm upgrade --install barman-cloud \
|
||||
--namespace cnpg-system \
|
||||
--create-namespace \
|
||||
--version 0.2.0 \
|
||||
cnpg/plugin-barman-cloud
|
||||
```
|
||||
|
||||
## Testing the latest development snapshot
|
||||
|
||||
You can also test the latest development snapshot of the plugin with the
|
||||
|
||||
@ -56,6 +56,8 @@ Both checks are required before proceeding with the installation.
|
||||
|
||||
import { InstallationSnippet } from '@site/src/components/Installation';
|
||||
|
||||
### Directly using the manifest
|
||||
|
||||
Install the plugin using `kubectl` by applying the manifest for the latest
|
||||
release:
|
||||
|
||||
@ -98,6 +100,19 @@ deployment "barman-cloud" successfully rolled out
|
||||
|
||||
This confirms that the plugin is deployed and ready to use.
|
||||
|
||||
### 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):
|
||||
|
||||
```sh
|
||||
helm repo add cnpg https://cloudnative-pg.github.io/charts
|
||||
helm upgrade --install barman-cloud \
|
||||
--namespace cnpg-system \
|
||||
--create-namespace \
|
||||
--version 0.3.1 \
|
||||
cnpg/plugin-barman-cloud
|
||||
```
|
||||
|
||||
## Testing the latest development snapshot
|
||||
|
||||
You can also test the latest development snapshot of the plugin with the
|
||||
|
||||
Loading…
Reference in New Issue
Block a user