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
3 changes: 1 addition & 2 deletions charts/pulsar/templates/broker-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ spec:
matchLabels:
{{- include "pulsar.matchLabels" . | nindent 6 }}
component: {{ .Values.broker.component }}
updateStrategy:
type: RollingUpdate
updateStrategy: {{ .Values.broker.updateStrategy | toYaml | nindent 4 }}
{{- /*
When functions are enabled, podManagementPolicy must be OrderedReady to ensure that other started brokers are available via DNS
for the function worker to connect to.
Expand Down
3 changes: 1 addition & 2 deletions charts/pulsar/templates/proxy-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ spec:
matchLabels:
{{- include "pulsar.matchLabels" . | nindent 6 }}
component: {{ .Values.proxy.component }}
updateStrategy:
type: RollingUpdate
updateStrategy: {{ .Values.proxy.updateStrategy | toYaml | nindent 4 }}
podManagementPolicy: Parallel
template:
metadata:
Expand Down
4 changes: 4 additions & 0 deletions charts/pulsar/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1109,6 +1109,8 @@ broker:
behavior: ~
# The podManagementPolicy cannot be modified for an existing deployment. If you need to change this value, you will need to manually delete the existing broker StatefulSet and then redeploy the chart.
podManagementPolicy:
updateStrategy:
type: RollingUpdate
initContainers: []
# This is how Victoria Metrics or Prometheus discovers this component
podMonitor:
Expand Down Expand Up @@ -1370,6 +1372,8 @@ proxy:
maxReplicas: 3
metrics: ~
behavior: ~
updateStrategy:
type: RollingUpdate
initContainers: []
# This is how Victoria Metrics or Prometheus discovers this component
podMonitor:
Expand Down
Loading