Skip to content

Commit

Permalink
fix pulsar config of fateflow add default value
Browse files Browse the repository at this point in the history
Signed-off-by: Chenlong Ma <chenlongm@vmware.com>
  • Loading branch information
owlet42 committed Mar 3, 2023
1 parent 9bf1319 commit 0ab3ab3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions helm-charts/FATE/templates/core/fateflow/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,9 @@ data:
host: {{ .Values.modules.python.pulsar.host }}
port: {{ .Values.modules.python.pulsar.port }}
mng_port: {{ .Values.modules.python.pulsar.mng_port }}
topic_ttl: {{ .Values.modules.python.pulsar.topic_ttl }}
cluster: {{ .Values.modules.python.pulsar.cluster }}
tenant: {{ .Values.modules.python.pulsar.tenant }}
topic_ttl: {{ .Values.modules.python.pulsar.topic_ttl | default "3" }}
cluster: {{ .Values.modules.python.pulsar.cluster | default "standalone" }}
tenant: {{ .Values.modules.python.pulsar.tenant | default "fl-tenant" }}
# default conf/pulsar_route_table.yaml
route_table: conf/pulsar_route_table/pulsar_route_table.yaml
# mode: replication / client, default: replication
Expand Down

0 comments on commit 0ab3ab3

Please sign in to comment.