You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by eo...@apache.org on 2024/03/26 22:17:45 UTC

(pulsar-helm-chart) branch master updated: Disable functions by default in values.yaml (#483)

This is an automated email from the ASF dual-hosted git repository.

eolivelli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-helm-chart.git


The following commit(s) were added to refs/heads/master by this push:
     new cc0a1ac  Disable functions by default in values.yaml (#483)
cc0a1ac is described below

commit cc0a1acf227e489a06ce0d7648722ed728e1fbcc
Author: Lari Hotari <lh...@users.noreply.github.com>
AuthorDate: Tue Mar 26 15:17:40 2024 -0700

    Disable functions by default in values.yaml (#483)
---
 .ci/values-common.yaml    | 2 ++
 charts/pulsar/values.yaml | 4 +++-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/.ci/values-common.yaml b/.ci/values-common.yaml
index c7e3b70..65f2324 100644
--- a/.ci/values-common.yaml
+++ b/.ci/values-common.yaml
@@ -36,6 +36,8 @@ affinity:
 components:
   autorecovery: false
   pulsar_manager: false
+  # enable functions by default in CI
+  functions: true
 
 zookeeper:
   replicaCount: 1
diff --git a/charts/pulsar/values.yaml b/charts/pulsar/values.yaml
index 0d63ba8..1f73983 100755
--- a/charts/pulsar/values.yaml
+++ b/charts/pulsar/values.yaml
@@ -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