Skip to content

Commit

Permalink
Release 0.25.0 preparation (#1008)
Browse files Browse the repository at this point in the history
* Prepare for release v0.25.0

* Update README to reflect recent zookeeper address changes in config/samples

* Update image tag in helm chart README
  • Loading branch information
panyuenlau committed Jul 11, 2023
1 parent 111348f commit 51ca388
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ kubectl create -f - <<EOF
apiVersion: zookeeper.pravega.io/v1beta1
kind: ZookeeperCluster
metadata:
name: zookeeper
name: zookeeper-server
namespace: zookeeper
spec:
replicas: 1
Expand All @@ -93,9 +93,9 @@ EOF
```
> kubectl get pods -n zookeeper
NAME READY STATUS RESTARTS AGE
zookeeper-0 1/1 Running 0 27m
zookeeper-operator-54444dbd9d-2tccj 1/1 Running 0 28m
NAME READY STATUS RESTARTS AGE
zookeeper-server-0 1/1 Running 0 27m
zookeeper-operator-54444dbd9d-2tccj 1/1 Running 0 28m
```

### Install Koperator
Expand All @@ -105,7 +105,7 @@ You can deploy Koperator using a Helm chart. Complete the following steps.
1. Install the Koperator `CustomResourceDefinition` resources (adjust the version number to the Koperator release you want to install). This is performed in a separate step to allow you to uninstall and reinstall Koperator without deleting your already installed custom resources.

```
kubectl create --validate=false -f https://github.com/banzaicloud/koperator/releases/download/v0.24.1/kafka-operator.crds.yaml
kubectl create --validate=false -f https://github.com/banzaicloud/koperator/releases/download/v0.25.0/kafka-operator.crds.yaml
```

2. Install Koperator into the `kafka` namespace:
Expand Down
4 changes: 2 additions & 2 deletions charts/kafka-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: kafka-operator
version: 0.25.0-rc.0
version: 0.25.0
description: kafka-operator manages Kafka deployments on Kubernetes
sources:
- https://github.com/banzaicloud/koperator
appVersion: v0.25.0-rc.0
appVersion: v0.25.0
4 changes: 2 additions & 2 deletions charts/kafka-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Before installing the chart, you must first install the Koperator CustomResource
This is performed in a separate step to allow you to easily uninstall and reinstall Koperator without deleting your installed custom resources.

```
kubectl create --validate=false -f https://github.com/banzaicloud/koperator/releases/download/v0.24.1/kafka-operator.crds.yaml
kubectl create --validate=false -f https://github.com/banzaicloud/koperator/releases/download/v0.25.0/kafka-operator.crds.yaml
```

To install the chart:
Expand Down Expand Up @@ -53,7 +53,7 @@ The following table lists the configurable parameters of the Banzaicloud Kafka O
Parameter | Description | Default
--------- | ----------- | -------
`operator.image.repository` | Operator container image repository | `ghcr.io/banzaicloud/kafka-operator`
`operator.image.tag` | Operator container image tag | `v0.25.0-rc.0`
`operator.image.tag` | Operator container image tag | `v0.25.0`
`operator.image.pullPolicy` | Operator container image pull policy | `IfNotPresent`
`operator.serviceAccount.name` | ServiceAccount used by the operator pod | `kafka-operator`
`operator.serviceAccount.create` | If true, create the `operator.serviceAccount.name` service account | `true`
Expand Down

0 comments on commit 51ca388

Please sign in to comment.