Skip to content

Commit b70b6ca

Browse files
committed
update platform values.yaml
1 parent 3cf70f3 commit b70b6ca

File tree

1 file changed

+63
-25
lines changed

1 file changed

+63
-25
lines changed

platform/values_cluster.yaml

Lines changed: 63 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
namespace: pulsar-demo
22

3+
tls:
4+
enabled: false
5+
proxy:
6+
enabled: false
7+
38
zookeeper:
49
replicaCount: 3
510
resources:
@@ -70,21 +75,22 @@ bookkeeper:
7075

7176
broker:
7277
# set your own domain for accesing kop outside from the cluster
73-
advertisedDomain: "kop.sn.dev"
74-
kop:
75-
enabled: false
76-
tls:
77-
# create a secret with keystore.jks and truststore.jks for kop tls security
78-
certSecretName: "kop-secret"
79-
# create a secret for keystore and truststore cert
80-
passwordSecretRef:
81-
key: password
82-
name: kop-keystore-password
83-
istio:
84-
gateway:
85-
selector:
86-
# set your istio gateway label here
87-
istio: "ingressgateway"
78+
#advertisedDomain: "kop.sn.dev"
79+
#kop:
80+
# enabled: false
81+
# tls:
82+
# enabled: true
83+
# # create a secret with keystore.jks and truststore.jks for kop tls security
84+
# certSecretName: "kop-secret"
85+
# # create a secret for keystore and truststore cert
86+
# passwordSecretRef:
87+
# key: password
88+
# name: kop-keystore-password
89+
#istio:
90+
# gateway:
91+
# selector:
92+
# # set your istio gateway label here
93+
# istio: "ingressgateway"
8894

8995
replicaCount: 2
9096
resources:
@@ -107,11 +113,12 @@ broker:
107113
managedLedgerDefaultWriteQuorum: "2"
108114
managedLedgerDefaultAckQuorum: "2"
109115

116+
# For audit log
117+
#PULSAR_PREFIX_brokerInterceptors: "audit-log"
118+
#PULSAR_PREFIX_brokerInterceptorsDirectory: "./interceptors"
119+
#PULSAR_PREFIX_snAuditLogConfig: >
120+
# {"defaultTopics":{"allowed":"persistent://sn/system/audit_log_all","denied":"persistent://sn/system/audit_log_all"}}
110121

111-
tls:
112-
enabled: false
113-
proxy:
114-
enabled: false
115122
proxy:
116123
replicaCount: 1
117124
resources:
@@ -128,21 +135,17 @@ proxy:
128135
-Dio.netty.recycler.maxCapacity.default=1000
129136
-Dio.netty.recycler.linkCapacity=1024
130137
-Dnetworkaddress.cache.ttl=60
131-
tlsAllowInsecureConnection: "true"
132-
tlsTrustCertsFilePath: "/etc/tls/pulsar-proxy-tls/ca.crt"
133138
tlsSecretName: "demo-sn-pulsar-proxy-tls"
134139

135140
# streamnative_console
136141
streamnative_console:
137142
component: streamnative-console
138-
username: "admin"
139-
password: "admin123"
140143
ports:
141144
frontend: 9527
142145
backend: 7750
143146
replicaCount: 1
144147
volumes:
145-
persistence: false
148+
#persistence: true
146149
data:
147150
name: data
148151
size: 5Gi
@@ -390,7 +393,7 @@ alert_manager:
390393
summary: "High JVM direct memory usage"
391394
description: "JVM direct memory usage of {{ $labels.kubernetes_pod_name }} - {{ $value }} is larger than 95%"
392395

393-
# In most case, you don't need to change this
396+
# At most case, you don't need to change this
394397
vault:
395398
volume:
396399
persistence: true
@@ -417,3 +420,38 @@ vault:
417420
cluster_addr: "http://${.Env.POD_NAME}:8201"
418421
ui: true
419422

423+
424+
425+
#monitoring:
426+
# # monitoring - prometheus
427+
# prometheus: false
428+
# # monitoring - grafana
429+
# grafana: false
430+
# # monitoring - node_exporter
431+
# node_exporter: false
432+
# # alerting - alert-manager
433+
# alert_manager: false
434+
435+
## Ingresses for exposing Pulsar services
436+
ingress:
437+
## Ingresses for exposing pulsar service publicly
438+
proxy:
439+
enabled: false
440+
type: LoadBalancer
441+
tls:
442+
# If you enable proxy tls, you should enable this too.
443+
enabled: false
444+
annotations:
445+
# If you use aws lb, recommend to add this
446+
service.beta.kubernetes.io/aws-load-balancer-type: nlb
447+
## Ingresses for exposing monitoring/management services publicly
448+
controller:
449+
enabled: false
450+
annotations:
451+
# If you use aws lb, recommend to add this
452+
service.beta.kubernetes.io/aws-load-balancer-type: nlb
453+
control_center:
454+
enabled: false
455+
# Set external domain of the load balancer of ingress controller
456+
# external_domain:
457+
# external_domain_scheme: https://

0 commit comments

Comments
 (0)