add 1.5.1 kruise charts (#79)

Signed-off-by: mingzhou.swx <mingzhou.swx@alibaba-inc.com>
Co-authored-by: mingzhou.swx <mingzhou.swx@alibaba-inc.com>
This commit is contained in:
Wei-Xiang Sun 2023-12-18 09:59:59 +08:00 committed by GitHub
parent 6b8372c022
commit 9e232d6bc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 790 additions and 777 deletions

View File

@ -188,6 +188,12 @@ spec:
- --addr=:{{ .Values.daemon.port }}
- --feature-gates={{ .Values.featureGates }}
- --socket-file={{ .Values.daemon.socketFile }}
{{- if not .Values.daemon.enablePprof }}
- --enable-pprof=false
{{- else }}
- --enable-pprof=true
- --pprof-addr={{ .Values.daemon.pprofAddr }}
{{- end }}
image: {{ .Values.manager.image.repository }}:{{ .Values.manager.image.tag }}
imagePullPolicy: Always
name: daemon

View File

@ -24,7 +24,7 @@ manager:
replicas: 2
image:
repository: openkruise/kruise-manager
tag: v1.5.0
tag: v1.5.1
webhook:
port: 9876
metrics:
@ -61,6 +61,7 @@ daemon:
level: "4"
port: 10221
enablePprof: true
pprofAddr: "localhost:10222"
socketLocation: "/var/run"