Skip to content

Commit d0fb82f

Browse files
author
github-actions
committed
Update perfectscale-agent chart with new package version v0.0.22
1 parent ee94451 commit d0fb82f

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

charts/perfectscale-agent/templates/deployment.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,10 @@ spec:
7676
value: "{{ .Values.settings.demoEnvAddress }}"
7777
- name: ENABLE_PPROF
7878
value: "{{ .Values.settings.enablePProf | default "false" }}"
79+
- name: "KUBERNETES_CLIENT_BURST"
80+
value: "{{ .Values.settings.k8sClientBurst }}"
81+
- name: "KUBERNETES_CLIENT_QPS"
82+
value: "{{ .Values.settings.k8sClientQPS }}"
7983
- name: CLIENT_ID
8084
valueFrom:
8185
secretKeyRef:
@@ -110,7 +114,7 @@ spec:
110114
imagePullSecrets:
111115
- name: {{ .Values.imagePullSecrets.secretName }}
112116
{{- end }}
113-
{{- with .Values.tolerations }}
117+
{{- with .Values.tolerations }}
114118
tolerations:
115119
{{- toYaml . | nindent 8 }}
116120
{{- end }}

charts/perfectscale-agent/values.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ replicaCount: 1
22
image:
33
repository: public.ecr.aws/perfectscale-io/psc-exporter
44
pullPolicy: Always
5-
tag: "v0.0.21"
5+
tag: "v0.0.22"
66
settings:
77
serviceId: "psc-exporter"
88
env: "prod"
@@ -13,6 +13,8 @@ settings:
1313
scrapingInterval: "30s"
1414
kubeAPITimeoutSec: "3"
1515
cAdvisorNumWorkers: "30"
16+
k8sClientBurst: "150"
17+
k8sClientQPS: "100"
1618
# ksmAddress: "http://kube-state-metrics:8080"
1719

1820
secret:

0 commit comments

Comments
 (0)