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

chore: upgrade pulsar operator to v0.17.10 #1135

Merged
merged 5 commits into from
Dec 21, 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
4 changes: 2 additions & 2 deletions charts/pulsar-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
#

apiVersion: v1
version: 0.17.0
appVersion: "0.17.8"
version: 0.17.9
appVersion: "0.17.10"
kubeVersion: ">= 1.16.0-0 < 1.29.0-0"
description: Apache Pulsar Operators Helm chart for Kubernetes
name: pulsar-operator
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ install broker crd yaml file to tpl.
*/}}
{{- define "broker.crd" -}}
{{- $files := .Files }}
{{ $files.Get "crds/pulsar.streamnative.io_pulsarbrokers" }}
{{ $files.Get "crds/pulsar.streamnative.io_pulsarbrokers.yaml" }}
{{- end -}}

{{/*
install proxy crd yaml file to tpl.
*/}}
{{- define "proxy.crd" -}}
{{- $files := .Files }}
{{ $files.Get "crds/pulsar.streamnative.io_pulsarproxies" }}
{{ $files.Get "crds/pulsar.streamnative.io_pulsarproxies.yaml" }}
{{- end -}}

{{/*Define the image for pulsar*/}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ install crd yaml file to tpl
*/}}
{{- define "zookeeper.crd" -}}
{{- $files := .Files }}
{{ $files.Get "crds/zookeeper.streamnative.io_zookeeperclusters" }}
{{ $files.Get "crds/zookeeper.streamnative.io_zookeeperclusters.yaml" }}
{{- end -}}

{{/*Define the image for zookeeper*/}}
Expand Down
2 changes: 1 addition & 1 deletion charts/pulsar-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ components:
## Control what images to use for each component
images:
registry: "docker.streamnative.io"
tag: "v0.17.8"
tag: "v0.17.10"

zookeeper:
registry: ""
Expand Down
Loading