eolivelli commented on a change in pull request #119:
URL: https://github.com/apache/pulsar-helm-chart/pull/119#discussion_r644581568



##########
File path: dev-func-k8s-values.yaml
##########
@@ -0,0 +1,109 @@
+# 
+#  Copyright 2021 DataStax, Inc. 
+#  
+#  Licensed under the Apache License, Version 2.0 (the "License");
+#  you may not use this file except in compliance with the License.
+#  You may obtain a copy of the License at
+#  
+#      http://www.apache.org/licenses/LICENSE-2.0
+#  
+#  Unless required by applicable law or agreed to in writing, software
+#  distributed under the License is distributed on an "AS IS" BASIS,
+#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#  See the License for the specific language governing permissions and
+#  limitations under the License.
+#  
+# 
+
+enableAntiAffinity: no
+enableTls: no 
+enableTokenAuth: no
+restartOnConfigMapChange:
+  enabled: yes
+extra:
+  function: yes
+  burnell: yes
+  burnellLogCollector: yes

Review comment:
       I committed unintentionally other files on my work directory.
   Removed 

##########
File path: examples/test-kube-functions-minikube.yaml
##########
@@ -0,0 +1,78 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+extra:
+  functionsAsPods: yes
+
+## deployed withh emptyDir
+volumes:
+  persistence: false
+
+# disabled AntiAffinity
+affinity:
+  anti_affinity: false
+
+# disable auto recovery
+components:
+  autorecovery: false
+  functions: yes
+
+zookeeper:
+  replicaCount: 1
+
+bookkeeper:
+  replicaCount: 1
+
+broker:
+  replicaCount: 1
+  configData:
+    ## Enable `autoSkipNonRecoverableData` since bookkeeper is running
+    ## without persistence
+    autoSkipNonRecoverableData: "true"
+    # storage settings
+    managedLedgerDefaultEnsembleSize: "1"
+    managedLedgerDefaultWriteQuorum: "1"
+    managedLedgerDefaultAckQuorum: "1"
+
+proxy:
+  replicaCount: 1
+
+functions:
+  replicaCount: 1
+  runtime: kubernetes
+
+image:
+  zookeeper:
+    repository: apachepulsar/pulsar-all
+    tag: 2.8.0-SNAPSHOT
+  bookie:
+    repository: apachepulsar/pulsar-all
+    tag: 2.8.0-SNAPSHOT
+  autorecovery:
+    repository: apachepulsar/pulsar-all
+    tag: 2.8.0-SNAPSHOT
+  broker:
+    repository: apachepulsar/pulsar-all
+    tag: 2.8.0-SNAPSHOT
+  functions:
+    repository: apachepulsar/pulsar-all
+    tag: 2.8.0-SNAPSHOT
+  proxy:
+    repository: apachepulsar/pulsar-all
+    tag: 2.8.0-SNAPSHOT

Review comment:
       I committed unintentionally other files on my work directory.
   Removed 

##########
File path: dev-func-k8s-values.yaml
##########
@@ -0,0 +1,109 @@
+# 
+#  Copyright 2021 DataStax, Inc. 
+#  
+#  Licensed under the Apache License, Version 2.0 (the "License");
+#  you may not use this file except in compliance with the License.
+#  You may obtain a copy of the License at
+#  
+#      http://www.apache.org/licenses/LICENSE-2.0
+#  
+#  Unless required by applicable law or agreed to in writing, software
+#  distributed under the License is distributed on an "AS IS" BASIS,
+#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#  See the License for the specific language governing permissions and
+#  limitations under the License.
+#  
+# 
+
+enableAntiAffinity: no
+enableTls: no 
+enableTokenAuth: no
+restartOnConfigMapChange:
+  enabled: yes
+extra:
+  function: yes
+  burnell: yes
+  burnellLogCollector: yes
+  pulsarHeartbeat: yes
+  pulsarAdminConsole: yes
+
+zookeeper:
+  replicaCount: 1 
+  resources:
+    requests:
+      memory: 300Mi
+      cpu: 0.3
+  configData:
+    PULSAR_MEM: "\"-Xms300m -Xmx300m -Djute.maxbuffer=10485760 
-XX:+ExitOnOutOfMemoryError\""
+
+bookkeeper:
+  replicaCount: 1 
+  resources:
+    requests:
+      memory: 512Mi
+      cpu: 0.3
+  configData:
+    BOOKIE_MEM: "\"-Xms312m -Xmx312m -XX:MaxDirectMemorySize=200m 
-XX:+ExitOnOutOfMemoryError\""
+
+broker:
+  component: broker
+  replicaCount: 1 
+  ledger:
+    defaultEnsembleSize: 1 
+    defaultAckQuorum: 1 
+    defaultWriteQuorum: 1 
+  resources:
+    requests:
+      memory: 600Mi
+      cpu: 0.3
+  configData:
+    PULSAR_MEM: "\"-Xms400m -Xmx400m -XX:MaxDirectMemorySize=200m 
-XX:+ExitOnOutOfMemoryError\""
+
+autoRecovery:
+  resources:
+    requests:
+      memory: 300Mi
+      cpu: 0.3 
+
+function:
+  replicaCount: 1 
+  functionReplicaCount: 1
+  runtime: "kubernetes"
+  resources:
+    requests:
+      memory: 512Mi
+      cpu: 0.3
+  configData:
+    PULSAR_MEM: "\"-Xms312m -Xmx312m -XX:MaxDirectMemorySize=200m 
-XX:+ExitOnOutOfMemoryError\""
+
+proxy:
+  replicaCount: 1 
+  resources:
+    requests:
+      memory: 512Mi
+      cpu: 0.3
+  wsResources:
+    requests:
+      memory: 512Mi
+      cpu: 0.3
+  configData:
+    PULSAR_MEM: "\"-Xms400m -Xmx400m -XX:MaxDirectMemorySize=112m\""
+  autoPortAssign:
+    enablePlainTextWithTLS: yes
+  service:
+    autoPortAssign:
+      enabled: yes
+
+grafanaDashboards:
+  enabled: yes
+
+pulsarAdminConsole:
+  replicaCount: 1
+
+kube-prometheus-stack:
+  enabled: yes
+  prometheusOperator:
+    enabled: true
+  grafana:
+    enabled: true
+    adminPassword: e9JYtk83*4#PM8

Review comment:
       I committed unintentionally other files on my work directory.
   Removed 




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to