Skip to content

Commit

Permalink
Disable functions by default in values.yaml (#483)
Browse files Browse the repository at this point in the history
  • Loading branch information
lhotari committed Mar 26, 2024
1 parent fdec9c6 commit cc0a1ac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .ci/values-common.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ affinity:
components:
autorecovery: false
pulsar_manager: false
# enable functions by default in CI
functions: true

zookeeper:
replicaCount: 1
Expand Down
4 changes: 3 additions & 1 deletion charts/pulsar/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,9 @@ components:
# broker
broker: true
# functions
functions: true
# WARNING! Before enabling functions, make sure that all of your users are trusted since functions run user code
# and the current security sandbox is not sufficient to protect against malicious code.
functions: false
# proxy
proxy: true
# toolset
Expand Down

0 comments on commit cc0a1ac

Please sign in to comment.