Skip to content

Commit

Permalink
fix: operator missing the namespace env (#1126)
Browse files Browse the repository at this point in the history
Signed-off-by: ericsyh <[email protected]>
(cherry picked from commit a602787)
  • Loading branch information
ericsyh committed Nov 17, 2023
1 parent 60cc63c commit 6fbc351
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/pulsar-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
apiVersion: v1
version: 0.17.0
appVersion: "0.17.8"
kubeVersion: ">= 1.16.0-0 < 1.28.0-0"
kubeVersion: ">= 1.16.0-0 < 1.29.0-0"
description: Apache Pulsar Operators Helm chart for Kubernetes
name: pulsar-operator
home: https://streamnative.io
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ spec:
- containerPort: 8000
name: metrics
env:
- name: OPERATOR_NAMESPACE
value: {{ template "pulsar.namespace" . }}
- name: MAX_CONCURRENT_RECONCILES
value: "{{ .Values.bookkeeper.workers }}"
{{- if .Values.bookkeeper.resources }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ spec:
- containerPort: 8000
name: metrics
env:
- name: OPERATOR_NAMESPACE
value: {{ template "pulsar.namespace" . }}
- name: MAX_CONCURRENT_RECONCILES
value: "{{ .Values.pulsar.workers }}"
- name: WATCH_CERT_MANAGER_CRDS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ spec:
- containerPort: 8000
name: metrics
env:
- name: OPERATOR_NAMESPACE
value: {{ template "pulsar.namespace" . }}
- name: MAX_CONCURRENT_RECONCILES
value: "{{ .Values.zookeeper.workers }}"
{{- if .Values.zookeeper.resources }}
Expand Down

0 comments on commit 6fbc351

Please sign in to comment.