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
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ Operator streamlines deployment and management of KurrentDB clusters.
## Supported KurrentDB Versions

The Operator supports running the following major versions of KurrentDB:
- v26.x
- v25.x
- v24.x
- v23.10+
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ metadata:
namespace: kurrent
spec:
replicas: 1
image: docker.kurrent.io/kurrent-latest/kurrentdb:25.0.0
image: docker.kurrent.io/kurrent-latest/kurrentdb:26.0.1
sourceBackup: kurrentdb-cluster-backup
resources:
requests:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ The following `KurrentDB` resource type defines a single node cluster with the f

- The database will be deployed in the `kurrent` namespace with the name `kurrentdb-cluster`
- Security is not enabled
- KurrentDB version 25.0.0 will be used
- KurrentDB v26.x will be used
- 1 vCPU will be requested as the minimum (upper bound is unlimited)
- 1 GB of memory will be used
- 512 MB of storage will be allocated for the data disk
Expand All @@ -59,7 +59,7 @@ metadata:
namespace: kurrent
spec:
replicas: 1
image: docker.kurrent.io/kurrent-latest/kurrentdb:25.1.0
image: docker.kurrent.io/kurrent-latest/kurrentdb:26.0.1
resources:
requests:
cpu: 1000m
Expand Down Expand Up @@ -98,7 +98,7 @@ metadata:
namespace: kurrent
spec:
replicas: 3
image: docker.kurrent.io/kurrent-latest/kurrentdb:25.1.0
image: docker.kurrent.io/kurrent-latest/kurrentdb:26.0.1
resources:
requests:
cpu: 1000m
Expand Down Expand Up @@ -174,7 +174,7 @@ metadata:
namespace: kurrent
spec:
replicas: 3
image: docker.kurrent.io/kurrent-latest/kurrentdb:25.1.0
image: docker.kurrent.io/kurrent-latest/kurrentdb:26.0.1
resources:
requests:
cpu: 1000m
Expand Down Expand Up @@ -270,7 +270,7 @@ metadata:
namespace: kurrent
spec:
replicas: 3
image: docker.kurrent.io/kurrent-latest/kurrentdb:25.1.0
image: docker.kurrent.io/kurrent-latest/kurrentdb:26.0.1
resources:
requests:
cpu: 1000m
Expand Down Expand Up @@ -379,7 +379,7 @@ metadata:
namespace: kurrent
spec:
replicas: 3
image: docker.kurrent.io/kurrent-latest/kurrentdb:25.1.0
image: docker.kurrent.io/kurrent-latest/kurrentdb:26.0.1
resources:
requests:
cpu: 1000m
Expand Down Expand Up @@ -479,7 +479,7 @@ metadata:
namespace: kurrent
spec:
replicas: 3
image: docker.kurrent.io/kurrent-latest/kurrentdb:25.1.0
image: docker.kurrent.io/kurrent-latest/kurrentdb:26.0.1
resources:
requests:
cpu: 1000m
Expand Down Expand Up @@ -527,7 +527,7 @@ spec:
- mydb-2-qn.kurrent.test:2113
readOnlyReplicas:
replicas: 2
image: docker.kurrent.io/kurrent-latest/kurrentdb:25.1.0
image: docker.kurrent.io/kurrent-latest/kurrentdb:26.0.1
resources:
requests:
cpu: 1000m
Expand Down Expand Up @@ -577,7 +577,7 @@ metadata:
namespace: kurrent
spec:
replicas: 3
image: docker.kurrent.io/kurrent-latest/kurrentdb:25.1.0
image: docker.kurrent.io/kurrent-latest/kurrentdb:26.0.1
resources:
requests:
cpu: 1000m
Expand Down Expand Up @@ -628,7 +628,7 @@ metadata:
namespace: kurrent
spec:
replicas: 1
image: docker.kurrent.io/kurrent-latest/kurrentdb:25.1.0
image: docker.kurrent.io/kurrent-latest/kurrentdb:26.0.1
configuration:
RunProjections: all
StartStandardProjections: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To update the specification of a `KurrentDB` instance, simply issue a patch comm
### Container Image

```bash
kubectl -n kurrent patch kurrentdb kurrentdb-cluster --type=merge -p '{"spec":{"image": "docker.kurrent.io/kurrent-latest/kurrentdb:25.0.0"}}'
kubectl -n kurrent patch kurrentdb kurrentdb-cluster --type=merge -p '{"spec":{"image": "docker.kurrent.io/kurrent-latest/kurrentdb:26.0.1"}}'
```

### Memory
Expand Down