Skip to content
Merged
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.19"
".": "0.0.20"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

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


### Bug Fixes

* Bump release to 0.0.20 ([#107](https://github.com/cloudnative-pg/klio/issues/107)) ([b09194c](https://github.com/cloudnative-pg/klio/commit/b09194cbfdf06c09d4e3b0642f9c1c60c2b6990e))

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


Expand Down
4 changes: 2 additions & 2 deletions documentation/web/docs/user/_helm_chart_values.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
| controllerManager.affinity | object | `{}` | Affinity rules for the operator deployment. |
| controllerManager.manager.args | list | `["--metrics-bind-address=:8443","--leader-elect","--health-probe-bind-address=:8081","--plugin-server-cert=/pluginServer/tls.crt","--plugin-server-key=/pluginServer/tls.key","--plugin-client-cert=/pluginClient/tls.crt","--plugin-server-address=:9090"]` | List of command line arguments to pass to the controller manager. |
| controllerManager.manager.containerSecurityContext | object | `{"allowPrivilegeEscalation":false,"capabilities":{"drop":["ALL"]}}` | The security context for the controller manager container. |
| controllerManager.manager.env | object | `{"SIDECAR_IMAGE":"ghcr.io/cloudnative-pg/klio:v0.0.19"}` | The environment variables to set in the controller manager container. Set OTEL_* variables here to enable OpenTelemetry export. See the OpenTelemetry Observability page in the documentation. |
| controllerManager.manager.env | object | `{"SIDECAR_IMAGE":"ghcr.io/cloudnative-pg/klio:v0.0.20"}` | The environment variables to set in the controller manager container. Set OTEL_* variables here to enable OpenTelemetry export. See the OpenTelemetry Observability page in the documentation. |
| controllerManager.manager.image.pullPolicy | string | `"Always"` | The controller manager container imagePullPolicy. |
| controllerManager.manager.image.pullSecrets | list | `[]` | The list of imagePullSecrets. |
| controllerManager.manager.image.repository | string | `"ghcr.io/cloudnative-pg/klio-operator"` | The image to use for the controller manager container. |
| controllerManager.manager.image.tag | string | `"v0.0.19"` | The tag to use for the controller manager container image. |
| controllerManager.manager.image.tag | string | `"v0.0.20"` | The tag to use for the controller manager container image. |
| controllerManager.manager.livenessProbe | object | `{"httpGet":{"path":"/healthz","port":8081},"initialDelaySeconds":15,"periodSeconds":20}` | Liveness probe configuration. |
| controllerManager.manager.readinessProbe | object | `{"httpGet":{"path":"/readyz","port":8081},"initialDelaySeconds":5,"periodSeconds":10}` | Readiness probe configuration. |
| controllerManager.manager.resources | object | `{"limits":{"cpu":"500m","memory":"128Mi"},"requests":{"cpu":"10m","memory":"64Mi"}}` | The resources to allocate. |
Expand Down
10 changes: 5 additions & 5 deletions documentation/web/docs/user/helm_chart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Deploy the Klio Operator to your cluster:
```sh
helm install klio-operator \
oci://ghcr.io/cloudnative-pg/klio-operator-chart \
--version 0.0.19 \
--version 0.0.20 \
--namespace cnpg-system \
-f values.yaml
```
Expand Down Expand Up @@ -104,7 +104,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.19 \
--version 0.0.20 \
--untar
```
<!-- x-release-please-end -->
Expand Down Expand Up @@ -158,7 +158,7 @@ manifests:
<!-- x-release-please-start-version -->
```sh
helm pull oci://ghcr.io/cloudnative-pg/klio-operator-chart \
--version 0.0.19 \
--version 0.0.20 \
--untar
```
<!-- x-release-please-end -->
Expand Down Expand Up @@ -197,7 +197,7 @@ Helm upgrade command:
```sh
helm upgrade klio-operator \
oci://ghcr.io/cloudnative-pg/klio-operator-chart \
--version 0.0.19 \
--version 0.0.20 \
--namespace cnpg-system \
-f values.yaml
```
Expand Down Expand Up @@ -228,7 +228,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.19"}}'
-p '{"spec":{"image":"ghcr.io/cloudnative-pg/klio:v0.0.20"}}'
```
<!-- x-release-please-end -->

Expand Down
4 changes: 2 additions & 2 deletions documentation/web/docs/user/klio_server.md
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ metadata:
namespace: default
spec:
# Container image for the Klio server
image: ghcr.io/cloudnative-pg/klio:v0.0.19
image: ghcr.io/cloudnative-pg/klio:v0.0.20
imagePullPolicy: IfNotPresent
imagePullSecrets: [] # Add image pull secrets if needed

Expand Down Expand Up @@ -497,7 +497,7 @@ spec:
mode: read-only

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

# TLS configuration
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.19
image: ghcr.io/cloudnative-pg/klio:v0.0.20
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.19
image: ghcr.io/cloudnative-pg/klio:v0.0.20
imagePullPolicy: Always
command:
- /usr/bin/klio
Expand Down
Loading
Loading