Disable functions by default in values.yaml (#483)

This commit is contained in:
Lari Hotari 2024-03-26 15:17:40 -07:00 committed by GitHub
parent fdec9c69ef
commit cc0a1acf22
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View File

@ -36,6 +36,8 @@ affinity:
components: components:
autorecovery: false autorecovery: false
pulsar_manager: false pulsar_manager: false
# enable functions by default in CI
functions: true
zookeeper: zookeeper:
replicaCount: 1 replicaCount: 1

View File

@ -120,7 +120,9 @@ components:
# broker # broker
broker: true broker: true
# functions # 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
proxy: true proxy: true
# toolset # toolset