mirror of
https://github.com/didi/KnowStreaming.git
synced 2026-01-04 03:42:08 +08:00
Merge pull request #596 from wangdongfang-aden/dev
helm update 3.0.0-beta.2
This commit is contained in:
@@ -4,13 +4,13 @@ description: knowstreaming-manager Helm chart
|
|||||||
|
|
||||||
type: application
|
type: application
|
||||||
|
|
||||||
version: 0.1.3
|
version: 0.1.4
|
||||||
|
|
||||||
maintainers:
|
maintainers:
|
||||||
- email: didicloud@didiglobal.com
|
- email: didicloud@didiglobal.com
|
||||||
name: didicloud
|
name: didicloud
|
||||||
|
|
||||||
appVersion: "3.0.0-beta.1"
|
appVersion: "3.0.0-beta.2"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: knowstreaming-web
|
- name: knowstreaming-web
|
||||||
|
|||||||
@@ -173,8 +173,8 @@ antiAffinityTopologyKey: "kubernetes.io/hostname"
|
|||||||
|
|
||||||
# Hard means that by default pods will only be scheduled if there are enough nodes for them
|
# Hard means that by default pods will only be scheduled if there are enough nodes for them
|
||||||
# and that they will never end up on the same node. Setting this to soft will do this "best effort"
|
# and that they will never end up on the same node. Setting this to soft will do this "best effort"
|
||||||
antiAffinity: "hard"
|
antiAffinity: ""
|
||||||
|
#antiAffinity: "hard"
|
||||||
# This is the node affinity settings as defined in
|
# This is the node affinity settings as defined in
|
||||||
# https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#node-affinity-beta-feature
|
# https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#node-affinity-beta-feature
|
||||||
nodeAffinity: {}
|
nodeAffinity: {}
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ spec:
|
|||||||
{{- include "ksmysql.selectorLabels" . | nindent 8 }}
|
{{- include "ksmysql.selectorLabels" . | nindent 8 }}
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- image: knowstreaming/knowstreaming-mysql:0.1.0
|
- image: knowstreaming/knowstreaming-mysql:0.2.0
|
||||||
name: {{ .Chart.Name }}
|
name: {{ .Chart.Name }}
|
||||||
env:
|
env:
|
||||||
- name: MYSQL_DATABASE
|
- name: MYSQL_DATABASE
|
||||||
|
|||||||
@@ -71,6 +71,7 @@ data:
|
|||||||
driver-class-name: org.mariadb.jdbc.Driver
|
driver-class-name: org.mariadb.jdbc.Driver
|
||||||
app-name: know-streaming
|
app-name: know-streaming
|
||||||
resource-extend-bean-name: myResourceExtendImpl
|
resource-extend-bean-name: myResourceExtendImpl
|
||||||
|
login-extend-bean-name: logiSecurityDefaultLoginExtendImpl
|
||||||
|
|
||||||
logging:
|
logging:
|
||||||
config: classpath:logback-spring.xml
|
config: classpath:logback-spring.xml
|
||||||
@@ -85,11 +86,16 @@ data:
|
|||||||
queue-size: 10000 # 每个线程池队列大小
|
queue-size: 10000 # 每个线程池队列大小
|
||||||
select-suitable-enable: true # 任务是否自动选择合适的线程池,非主要,可不修改
|
select-suitable-enable: true # 任务是否自动选择合适的线程池,非主要,可不修改
|
||||||
suitable-queue-size: 1000 # 线程池理想的队列大小,非主要,可不修改
|
suitable-queue-size: 1000 # 线程池理想的队列大小,非主要,可不修改
|
||||||
task: # 任务模块的配置
|
task: # 任务模块的配置
|
||||||
heaven: # 采集任务配置
|
metrics: # metrics采集任务配置
|
||||||
thread-num: 20 # 采集任务线程池核心线程数
|
thread-num: 18 # metrics采集任务线程池核心线程数
|
||||||
queue-size: 1000 # 采集任务线程池队列大小
|
queue-size: 180 # metrics采集任务线程池队列大小
|
||||||
|
metadata: # metadata同步任务配置
|
||||||
|
thread-num: 27 # metadata同步任务线程池核心线程数
|
||||||
|
queue-size: 270 # metadata同步任务线程池队列大小
|
||||||
|
common: # 剩余其他任务配置
|
||||||
|
thread-num: 15 # 剩余其他任务线程池核心线程数
|
||||||
|
queue-size: 150 # 剩余其他任务线程池队列大小
|
||||||
|
|
||||||
|
|
||||||
client-pool:
|
client-pool:
|
||||||
@@ -99,17 +105,16 @@ data:
|
|||||||
max-total-client-num: 20 # 最大客户端数
|
max-total-client-num: 20 # 最大客户端数
|
||||||
borrow-timeout-unit-ms: 5000 # 租借超时时间,单位秒
|
borrow-timeout-unit-ms: 5000 # 租借超时时间,单位秒
|
||||||
|
|
||||||
|
es:
|
||||||
|
client:
|
||||||
{{ if .Values.elasticsearch.enabled }}
|
{{ if .Values.elasticsearch.enabled }}
|
||||||
es.client.address: elasticsearch-master:9200
|
address: elasticsearch-master:9200
|
||||||
#es.client.address: {{ .Release.Name }}-elasticsearch:9200
|
|
||||||
{{- else }}
|
{{- else }}
|
||||||
es.client.address: {{ .Values.elasticsearch.esClientAddress }}:{{ .Values.elasticsearch.esProt }}
|
address: {{ .Values.elasticsearch.esClientAddress }}:{{ .Values.elasticsearch.esProt }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
# es.client.pass: knowstreaming-manager
|
client-cnt: 10
|
||||||
# 集群自动均衡相关配置
|
io-thread-cnt: 2
|
||||||
cluster-balance:
|
max-retry-cnt: 5
|
||||||
ignored-topics:
|
|
||||||
time-second: 300
|
|
||||||
|
|
||||||
# 普罗米修斯指标导出相关配置
|
# 普罗米修斯指标导出相关配置
|
||||||
management:
|
management:
|
||||||
@@ -158,4 +163,3 @@ data:
|
|||||||
curl -s -o /dev/null -X PUT http://${esaddr}:${port}/ks_kafka_topic_metric${logdate} || \
|
curl -s -o /dev/null -X PUT http://${esaddr}:${port}/ks_kafka_topic_metric${logdate} || \
|
||||||
exit 2
|
exit 2
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ replicaCount: 2
|
|||||||
image:
|
image:
|
||||||
repository: knowstreaming/knowstreaming-manager
|
repository: knowstreaming/knowstreaming-manager
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: "0.1.0"
|
tag: "0.2.0"
|
||||||
|
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
nameOverride: ""
|
nameOverride: ""
|
||||||
@@ -73,7 +73,7 @@ knowstreaming-web:
|
|||||||
image:
|
image:
|
||||||
repository: knowstreaming/knowstreaming-ui
|
repository: knowstreaming/knowstreaming-ui
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: "0.1.0"
|
tag: "0.2.0"
|
||||||
|
|
||||||
service:
|
service:
|
||||||
type: NodePort
|
type: NodePort
|
||||||
|
|||||||
Reference in New Issue
Block a user