Skip to content

Commit a5e7d9b

Browse files
authored
DEV-980 operator v1.4.2 docs (#925)
1 parent 382da08 commit a5e7d9b

File tree

18 files changed

+19
-9
lines changed

18 files changed

+19
-9
lines changed

docs/.vuepress/public/_redirects

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,8 @@
272272

273273
# k8 Operator
274274
/server/kubernetes-operator/v1.3.0/* /server/kubernetes-operator/v1.3.1/:splat 301
275-
/server/kubernetes-operator/v1.4.0/* /server/kubernetes-operator/v1.4.1/:splat 301
275+
/server/kubernetes-operator/v1.4.0/* /server/kubernetes-operator/v1.4.2/:splat 301
276+
/server/kubernetes-operator/v1.4.1/* /server/kubernetes-operator/v1.4.2/:splat 301
276277

277278
# ######################
278279
# Other
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
# title is for breadcrumb and sidebar nav
3-
title: Kubernetes Operator v1.4.1
3+
title: Kubernetes Operator v1.4.2
44
order: 1
55
---

docs/server/kubernetes-operator/v1.4.1/getting-started/README.md renamed to docs/server/kubernetes-operator/v1.4.2/getting-started/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,15 @@ Kubernetes is the modern enterprise standard for deploying containerized applica
5656
* Correctly enforce the immutability of the `sourceBackup` setting to prevent confusing behavior.
5757
* Fix the helm chart to prevent allowing two operator instances to briefly conflict during upgrades.
5858

59+
### New in 1.4.2
60+
61+
* Fix bug where deleting KurrentDBs with LoadBalancers enabled could leave dangling cloud resources.
62+
* Automatically grow PVC requested storage size to match the `restoreSize` of a VolumeSnapshot, when
63+
starting new nodes from VolumeSnapshots. This could happen when a user had SourceBackup set or
64+
when adding new quorum nodes or read-only replicas to an existing cluster.
65+
* Allow extra metadata for resources deployed by the Helm chart. See `values.yaml` in the Helm
66+
chart for details.
67+
5968
## Supported KurrentDB Versions
6069

6170
The Operator supports running the following major versions of KurrentDB:

docs/server/kubernetes-operator/v1.4.1/getting-started/installation.md renamed to docs/server/kubernetes-operator/v1.4.2/getting-started/installation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ If you prefer to install CRDs yourself:
5353

5454
```bash
5555
# Download the kurrentdb-operator Helm chart
56-
helm pull kurrent-latest/kurrentdb-operator --version 1.4.1 --untar
56+
helm pull kurrent-latest/kurrentdb-operator --version 1.4.2 --untar
5757
# Install the CRDs
5858
kubectl apply -f kurrentdb-operator/templates/crds
5959
```
@@ -87,7 +87,7 @@ To deploy the Operator in this mode, run:
8787

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

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

162162
```bash
163163
helm upgrade kurrentdb-operator kurrent-latest/kurrentdb-operator \
164-
--version 1.4.1 \
164+
--version 1.4.2 \
165165
--namespace kurrent \
166166
--reuse-values \
167167
--set operator.namespaces='{kurrent,foo,bar}'
@@ -205,5 +205,5 @@ helm upgrade kurrentdb-operator kurrentdb-operator-repo/kurrentdb-operator \
205205
Here's what these commands do:
206206
- Refresh the local Helm repository index
207207
- Locate an existing operator installation in namespace `kurrent`
208-
- Select the target upgrade version `{version}` e.g. `1.4.1`
208+
- Select the target upgrade version `{version}` e.g. `1.4.2`
209209
- Perform the upgrade, preserving values that were set during installation
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)