Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.25.0 preparation #1008

Merged
merged 3 commits into from
Jul 11, 2023
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
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
Loading