@@ -33,7 +33,7 @@ eventReporter:
33
33
controller:
34
34
enabled: true
35
35
type: statefulset
36
- replicas: 3
36
+ replicas: 1
37
37
revisionHistoryLimit: 5
38
38
39
39
container:
@@ -62,6 +62,11 @@ eventReporter:
62
62
HTTP_PROXY: '{ { .Values.global.httpProxy } }'
63
63
HTTPS_PROXY: '{ { .Values.global.httpsProxy } }'
64
64
NO_PROXY: '{ { .Values.global.noProxy } }'
65
+ APP_QUEUE_SIZE:
66
+ valueFrom:
67
+ configMapKeyRef:
68
+ name: event-reporter-cmd-params-cm
69
+ key: app.queue.size
65
70
ARGOCD_APPLICATION_NAMESPACES:
66
71
valueFrom:
67
72
configMapKeyRef:
@@ -99,7 +104,7 @@ eventReporter:
99
104
configMapKeyRef:
100
105
key: base-url
101
106
name: codefresh-cm
102
- EVENT_REPORTER_REPLICAS: 3
107
+ EVENT_REPORTER_REPLICAS: 1
103
108
INSECURE:
104
109
valueFrom:
105
110
configMapKeyRef:
@@ -124,36 +129,22 @@ eventReporter:
124
129
name: event-reporter-cmd-params-cm
125
130
key: log.level
126
131
optional: true
127
- METRICS_LISTEN_ADDRESS:
128
- valueFrom:
129
- configMapKeyRef:
130
- name: event-reporter-cmd-params-cm
131
- key: metrics.listen.address
132
- optional: true
133
- RATE_LIMITER_BUCKET_SIZE:
134
- valueFrom:
135
- configMapKeyRef:
136
- name: event-reporter-cmd-params-cm
137
- key: rate.limiter.bucket.size
138
- optional: true
139
- RATE_LIMITER_DURATION:
132
+ MAX_APP_RETRIES:
140
133
valueFrom:
141
134
configMapKeyRef:
142
135
name: event-reporter-cmd-params-cm
143
- key: rate.limiter.duration
144
- optional: true
145
- RATE_LIMITER_ENABLED:
136
+ key: max.app.retries
137
+ METRICS_LISTEN_ADDRESS:
146
138
valueFrom:
147
139
configMapKeyRef:
148
140
name: event-reporter-cmd-params-cm
149
- key: rate.limiter.enabled
141
+ key: metrics.listen.address
150
142
optional: true
151
- RATE_LIMITER_LEARNING_MODE_ENABLED :
143
+ OTEL_EXPORTER_OTLP_TRACES_ENDPOINT :
152
144
valueFrom:
153
145
configMapKeyRef:
154
146
name: event-reporter-cmd-params-cm
155
- key: rate.limiter.learning.mode.enabled
156
- optional: true
147
+ key: otlp.address
157
148
REDISDB:
158
149
valueFrom:
159
150
configMapKeyRef:
@@ -221,6 +212,11 @@ eventReporter:
221
212
configMapKeyRef:
222
213
name: event-reporter-cmd-params-cm
223
214
key: sources.server
215
+ THREADINESS:
216
+ valueFrom:
217
+ configMapKeyRef:
218
+ name: event-reporter-cmd-params-cm
219
+ key: threadiness
224
220
225
221
volumeMounts:
226
222
codefresh-tls-certs:
@@ -258,9 +254,13 @@ eventReporter:
258
254
cmd-params-cm:
259
255
enabled: true
260
256
data:
257
+ app.queue.size: '1000'
261
258
argocd.server: argo-cd-server:80
259
+ max.app.retries: '5'
260
+ otlp.address: ''
262
261
repo.server: argo-cd-repo-server:8081
263
262
sources.server: http://sources-server
263
+ threadiness: '100'
264
264
265
265
volumes:
266
266
codefresh-tls-certs:
0 commit comments