Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.0.20"
".": "0.0.21"
}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [0.0.21](https://github.com/cloudnative-pg/klio/compare/v0.0.20...v0.0.21) (2026-08-22)


### Bug Fixes

* **core:** Add release-please marker to core plugin version ([#131](https://github.com/cloudnative-pg/klio/issues/131)) ([4a3b20c](https://github.com/cloudnative-pg/klio/commit/4a3b20c3cd883077c63cca5b7d26a51ac5a53932)), closes [#130](https://github.com/cloudnative-pg/klio/issues/130)
* **deps:** Update all non-major go dependencies ([#116](https://github.com/cloudnative-pg/klio/issues/116)) ([5270d42](https://github.com/cloudnative-pg/klio/commit/5270d42f0ca576de8715588098cfed9287191542))
* **deps:** Update all non-major go dependencies ([#142](https://github.com/cloudnative-pg/klio/issues/142)) ([12cd4ba](https://github.com/cloudnative-pg/klio/commit/12cd4bae1e821f8711cce7ad77ebd65a46022352))
* **deps:** Update all non-major go dependencies ([#153](https://github.com/cloudnative-pg/klio/issues/153)) ([bd1e401](https://github.com/cloudnative-pg/klio/commit/bd1e401b181ac87fc122796f8c33771a64667e0f))
* **deps:** Update kubernetes monorepo to v0.36.4 ([#156](https://github.com/cloudnative-pg/klio/issues/156)) ([a14763c](https://github.com/cloudnative-pg/klio/commit/a14763c9581b78005e6706abbabb63eaa59e7c65))

## [0.0.20](https://github.com/cloudnative-pg/klio/compare/v0.0.19...v0.0.20) (2026-08-13)


Expand Down
2 changes: 1 addition & 1 deletion core/internal/cnpgi/metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import "github.com/cloudnative-pg/cnpg-i/pkg/identity"
// data is the metadata of this plugin.
var data = identity.GetPluginMetadataResponse{ //nolint:gochecknoglobals
Name: "klio.cnpg.io",
Version: "0.0.20", // x-release-please-version
Version: "0.0.21", // x-release-please-version
DisplayName: "Klio",
ProjectUrl: "",
RepositoryUrl: "",
Expand Down
8 changes: 4 additions & 4 deletions documentation/web/docs/user/helm_chart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ default values, and understand what resources it will create:
<!-- x-release-please-start-version -->
```sh
helm pull oci://ghcr.io/cloudnative-pg/klio-operator-chart \
--version 0.0.20 \
--version 0.0.21 \
--untar
```
<!-- x-release-please-end -->
Expand Down Expand Up @@ -93,7 +93,7 @@ manifests:
<!-- x-release-please-start-version -->
```sh
helm pull oci://ghcr.io/cloudnative-pg/klio-operator-chart \
--version 0.0.20 \
--version 0.0.21 \
--untar
```
<!-- x-release-please-end -->
Expand Down Expand Up @@ -133,7 +133,7 @@ Helm upgrade command, reusing the `values.yaml` file you created when
```sh
helm upgrade klio-operator \
oci://ghcr.io/cloudnative-pg/klio-operator-chart \
--version 0.0.20 \
--version 0.0.21 \
--namespace cnpg-system \
-f values.yaml
```
Expand Down Expand Up @@ -164,7 +164,7 @@ released. Update the `spec.image` field with the new image reference:
```sh
kubectl patch server <server-name> -n <namespace> \
--type merge \
-p '{"spec":{"image":"ghcr.io/cloudnative-pg/klio:v0.0.20"}}'
-p '{"spec":{"image":"ghcr.io/cloudnative-pg/klio:v0.0.21"}}'
```
<!-- x-release-please-end -->

Expand Down
2 changes: 1 addition & 1 deletion documentation/web/docs/user/klio_server.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ spec:
mode: read-only

# Container image for the Klio server
image: ghcr.io/cloudnative-pg/klio:v0.0.20
image: ghcr.io/cloudnative-pg/klio:v0.0.21
imagePullPolicy: IfNotPresent

# TLS configuration
Expand Down
4 changes: 2 additions & 2 deletions documentation/web/docs/user/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Install the chart:
```sh
helm install klio-operator \
oci://ghcr.io/cloudnative-pg/klio-operator-chart \
--version 0.0.20 \
--version 0.0.21 \
--namespace cnpg-system \
-f values.yaml
```
Expand Down Expand Up @@ -248,7 +248,7 @@ metadata:
name: klio-server
namespace: default
spec:
image: ghcr.io/cloudnative-pg/klio:v0.0.20
image: ghcr.io/cloudnative-pg/klio:v0.0.21

# TLS certificate presented to clients
tlsSecretName: klio-server-tls
Expand Down
4 changes: 2 additions & 2 deletions documentation/web/docs/user/walplayer.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ spec:
initContainers:
# Generate synthetic WAL files
- name: generate-wals
image: ghcr.io/cloudnative-pg/klio:v0.0.20
image: ghcr.io/cloudnative-pg/klio:v0.0.21
imagePullPolicy: Always
command:
- /usr/bin/klio
Expand All @@ -230,7 +230,7 @@ spec:
containers:
# Play WAL files to the Klio server
- name: play-wals
image: ghcr.io/cloudnative-pg/klio:v0.0.20
image: ghcr.io/cloudnative-pg/klio:v0.0.21
imagePullPolicy: Always
command:
- /usr/bin/klio
Expand Down
4 changes: 2 additions & 2 deletions operator/dist/chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ keywords:
- backup
- CloudNativePG
type: application
version: 0.0.20
appVersion: 0.0.20
version: 0.0.21
appVersion: 0.0.21
home: https://github.com/cloudnative-pg/klio
maintainers:
- name: fcanovai
Expand Down
4 changes: 2 additions & 2 deletions operator/dist/chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ controllerManager:
# -- The image to use for the controller manager container.
repository: ghcr.io/cloudnative-pg/klio-operator
# -- The tag to use for the controller manager container image.
tag: v0.0.20 # x-release-please-version
tag: v0.0.21 # x-release-please-version
# -- The controller manager container imagePullPolicy.
pullPolicy: Always
# -- The list of imagePullSecrets.
Expand All @@ -33,7 +33,7 @@ controllerManager:
# Set OTEL_* variables here to enable OpenTelemetry export.
# See the OpenTelemetry Observability page in the documentation.
env: {
SIDECAR_IMAGE: "ghcr.io/cloudnative-pg/klio:v0.0.20" # x-release-please-version
SIDECAR_IMAGE: "ghcr.io/cloudnative-pg/klio:v0.0.21" # x-release-please-version
}
# -- Liveness probe configuration.
livenessProbe:
Expand Down
2 changes: 1 addition & 1 deletion operator/internal/cnpgi/metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
// data is the metadata of this plugin.
var data = identity.GetPluginMetadataResponse{ //nolint: gochecknoglobals
Name: klioconfig.PluginName,
Version: "0.0.20", // x-release-please-version
Version: "0.0.21", // x-release-please-version
DisplayName: "Klio",
ProjectUrl: "",
RepositoryUrl: "",
Expand Down
Loading