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
3 changes: 2 additions & 1 deletion docs/.vuepress/public/_redirects
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,8 @@

# k8 Operator
/server/kubernetes-operator/v1.3.0/* /server/kubernetes-operator/v1.3.1/:splat 301
/server/kubernetes-operator/v1.4.0/* /server/kubernetes-operator/v1.4.1/:splat 301
/server/kubernetes-operator/v1.4.0/* /server/kubernetes-operator/v1.4.2/:splat 301
/server/kubernetes-operator/v1.4.1/* /server/kubernetes-operator/v1.4.2/:splat 301

# ######################
# Other
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
# title is for breadcrumb and sidebar nav
title: Kubernetes Operator v1.4.1
title: Kubernetes Operator v1.4.2
order: 1
---
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,15 @@ Kubernetes is the modern enterprise standard for deploying containerized applica
* Correctly enforce the immutability of the `sourceBackup` setting to prevent confusing behavior.
* Fix the helm chart to prevent allowing two operator instances to briefly conflict during upgrades.

### New in 1.4.2

* Fix bug where deleting KurrentDBs with LoadBalancers enabled could leave dangling cloud resources.
* Automatically grow PVC requested storage size to match the `restoreSize` of a VolumeSnapshot, when
starting new nodes from VolumeSnapshots. This could happen when a user had SourceBackup set or
when adding new quorum nodes or read-only replicas to an existing cluster.
* Allow extra metadata for resources deployed by the Helm chart. See `values.yaml` in the Helm
chart for details.

## Supported KurrentDB Versions

The Operator supports running the following major versions of KurrentDB:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ If you prefer to install CRDs yourself:

```bash
# Download the kurrentdb-operator Helm chart
helm pull kurrent-latest/kurrentdb-operator --version 1.4.1 --untar
helm pull kurrent-latest/kurrentdb-operator --version 1.4.2 --untar
# Install the CRDs
kubectl apply -f kurrentdb-operator/templates/crds
```
Expand Down Expand Up @@ -87,7 +87,7 @@ To deploy the Operator in this mode, run:

```bash
helm install kurrentdb-operator kurrent-latest/kurrentdb-operator \
--version 1.4.1 \
--version 1.4.2 \
--namespace kurrent \
--create-namespace \
--set crds.enabled=true \
Expand Down Expand Up @@ -122,7 +122,7 @@ To deploy the Operator in this mode, the following command can be used:

```bash
helm install kurrentdb-operator kurrent-latest/kurrentdb-operator \
--version 1.4.1 \
--version 1.4.2 \
--namespace kurrent \
--create-namespace \
--set crds.enabled=true \
Expand Down Expand Up @@ -161,7 +161,7 @@ The Operator deployment can be updated to adjust which namespaces are watched. F

```bash
helm upgrade kurrentdb-operator kurrent-latest/kurrentdb-operator \
--version 1.4.1 \
--version 1.4.2 \
--namespace kurrent \
--reuse-values \
--set operator.namespaces='{kurrent,foo,bar}'
Expand Down Expand Up @@ -205,5 +205,5 @@ helm upgrade kurrentdb-operator kurrentdb-operator-repo/kurrentdb-operator \
Here's what these commands do:
- Refresh the local Helm repository index
- Locate an existing operator installation in namespace `kurrent`
- Select the target upgrade version `{version}` e.g. `1.4.1`
- Select the target upgrade version `{version}` e.g. `1.4.2`
- Perform the upgrade, preserving values that were set during installation
4 changes: 2 additions & 2 deletions docs/server/kubernetes-operator/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"group": "Kubernetes Operator",
"versions": [
{
"path": "kubernetes-operator/v1.4.1",
"version": "v1.4.1",
"path": "kubernetes-operator/v1.4.2",
"version": "v1.4.2",
"startPage": "getting-started/"
},
{
Expand Down