This repository has been archived by the owner on May 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
426 lines (390 loc) · 13.9 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
# Default values for the Cognigy Agent Assist Helm chart. This is a YAML-formatted file.
# --- IMPORTANT ---
# Do not edit this file directly, create a new one instead with
# the values that need to be overridden. For more information, head over to
# https://docs.cognigy.com/live-agent/installation/deployment/installation-using-helm/
# ---
# Override the chart name
nameOverride: ""
# Override the full app name
fullnameOverride: ""
podAnnotations: {}
podSecurityContext: {}
# fsGroup: 2000
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
## Credentials for pulling image from private image registry.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
## NOTE 1: Either clear text credentials (registry, username and password) or pullSecrets must be provided.
imageCredentials:
## Alternatively specify the username, password and the url of the private registry.
## A kubernetes.io/dockerconfigjson type secret named "cognigy-registry-token" will be created based on these information.
registry: "cognigy.azurecr.io"
username: ""
password: ""
## Alternatively specify an array of imagePullSecrets.
## Secrets must be manually created in the proper namespace beforehand.
## Example:
## pullSecrets:
## - cognigyRegistrySecretName
##
## NOTE: When registry, username and password all are set, the pullSecrets are ignored.
pullSecrets: []
## If neither Cognigy MongoDB Helm Chart (https://github.com/Cognigy/cognigy-mongodb-helm-chart) nor MongoDB Atlas is used
## set "mongodb.enabled": false. It will skip user initialization tasks. However, you will need to create users/passwords manually
mongodb:
enabled: true
## MongoDB connection scheme, for Cognigy MongoDB Helm Chart use scheme: "mongodb", for MongoDB Atlas use scheme: "mongodb+srv"
scheme: "mongodb"
## Parameters for MongoDB connection, leave empty for Cognigy MongoDB Helm Chart
## For MongoDB Atlas set params: "?retryWrites=true&w=majority"
params: ""
## This MongoDB user and password must have the permission to create users and databases, so normally it is admin or root
## It does NOT have to be root user. We use these key names to be compatible with Bitnami MongoDB Helm Chert
auth:
rootUser: root
rootPassword: ""
## Optionally provide the name of an existing secret with MongoDB credentials. Mandatory keys: `username` and `password`, that contains the value
## of "rootUser" and "rootPassword"
## NOTE: When it's set the previous parameters "rootUser" and "rootPassword" are ignored.
##
existingSecret: ""
## MongoDB Atlas cluster parameters
atlas:
# Specify MongoDB Atlas projectId and clusterName
projectId: ""
clusterName: ""
# Specify publicAPIKey and privateAPIKey with "Project Owner" permissions for the Project in which MongoDB Cluster is located
## For more information refer to MongoDB Atlas documentation: https://www.mongodb.com/docs/atlas/configure-api-access/#grant-programmatic-access-to-service
publicAPIKey: ""
privateAPIKey: ""
## Optionally provide the name of an existing secret with MongoDB Atlas credentials. Mandatory keys: `projectid`, `clustername`, `apikeypublic` and `apikeyprivate`
## that contains the value of MongoDB Atlas projectId, clusterName, publicAPIKey and privateAPIKey respectively.
## NOTE: When it's set the previous parameters "projectId", "clusterName", "publicAPIKey" and "privateAPIKey" are ignored.
##
existingSecret: ""
# Connection string for MongoDB replica set deployed with Cognigy MongoDB Helm Chart into 3 availability zones:
# hosts: mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017
# Connection string for development and testing with a single replica MongoDB deployed with Cognigy MongoDB Helm Chart:
# hosts: "mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017"
# For MongoDB Atlas use the connection string of your MongoDB Atlas Cluster
hosts: mongodb-0.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-1.mongodb-headless.mongodb.svc.cluster.local:27017,mongodb-2.mongodb-headless.mongodb.svc.cluster.local:27017
## db-init generator image
##
dbinit:
image: cognigy.azurecr.io/mongodb:5.0.18-debian-11-r3
securityContext: {}
redis:
enabled: true
fullnameOverride: redis-ha
global:
imagePullSecrets:
- cognigy-registry-token
auth:
existingSecret: "agent-assist-redis-password"
existingSecretPasswordKey: "REDIS_PASSWORD"
image:
registry: cognigy.azurecr.io
repository: redis
tag: 7.2.0-debian-11-r3
commonConfiguration: |-
appendonly no
protected-mode no
repl-diskless-sync no
save 60 1
stop-writes-on-bgsave-error no
replica:
replicaCount: 3
resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 500m
memory: 512Mi
podLabels:
uniquezone: "aa-redis-ha"
affinity:
podAntiAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: "uniquezone"
operator: In
values:
- "aa-redis-ha"
topologyKey: "topology.kubernetes.io/zone"
persistence:
enabled: false
sentinel:
enabled: true
image:
registry: cognigy.azurecr.io
repository: redis-sentinel
tag: 7.2.0-debian-11-r3
automateClusterRecovery: true
downAfterMilliseconds: 2000
failoverTimeout: 10000
resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 200m
memory: 100Mi
metrics:
enabled: true
image:
registry: cognigy.azurecr.io
repository: redis-exporter
tag: 1.52.0-debian-11-r23
resources:
limits:
cpu: 200m
memory: 200Mi
requests:
cpu: 200m
memory: 200Mi
serviceMonitor:
enabled: false
backend:
image:
repository: cognigy.azurecr.io/agent-assist-backend
pullPolicy: IfNotPresent
tag: "1c8b475-1699880668"
replica: 3
priorityClassName: ""
service:
name: cognigy-agent-assist-backend
internalPort: 8000
targetPort: 8000
type: ClusterIP
annotations: {}
# For example
# service.beta.kubernetes.io/aws-load-balancer-type: external
# service.beta.kubernetes.io/aws-load-balancer-nlb-target-type: ip
# service.beta.kubernetes.io/aws-load-balancer-scheme: internet-facing
ingress:
enabled: true
hosts:
- host: "<host>"
paths:
- path: /
pathType: Prefix
backend:
service:
port:
number: 8000
# tls:
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
# Health configuration
health:
port: 8001
# Metrics configuration
metrics:
port: 8002
# The API access token to use for authenticating the Backend with the Cognigy.AI endpoint
cognigyServiceEndpointApiAccessToken:
# Existing secret must have `api-access-token` as secret key
existingSecret: ""
# Optionally create the secret by setting the api key here (not recommended)
# value: ""
# The API access token to use for authenticating the Backend with the Cognigy.AI handover endpoint
cognigyServiceHandoverApiAccessToken:
# Existing secret must have `api-access-token` as secret key
existingSecret: ""
# Optionally create the secret by setting the api key here (not recommended)
# value: ""
# The API key to use for authenticating the Frontend with the Backend
apiKey:
# Existing secret must have `api-key` as secret key
existingSecret: ""
# Optionally create the secret by setting the api key here (not recommended)
# value: ""
# Config map env variables
configmap:
# Allowed origins for CORS
ALLOWED_ORIGINS: ""
# URL of the Agent Assist Frontend
FRONTEND_URL: ""
# Redis reconnect configuration
REDIS_ENABLE_RECONNECT: "true"
# Cognigy.AI integration (same for service-handover/service-endpoint)
ENDPOINT_BASE_URL_WITH_PROTOCOL: ""
# Redis Sentinel enabled
FEATURE_REDIS_SENTINEL_MODE_ENABLED: "true"
REDIS_SENTINEL_PORT: "26379"
REDIS_SENTINEL_HOST: "redis-ha-headless"
REDIS_SENTINEL_MASTER_NAME: "mymaster"
# Tracing
# TRACING_BASE_URL_WITH_PROTOCOL: ""
# TRACING_ERRORS_ENABLE: "true"
# TRACING_ENABLED: "true"
# TRACING_EVENTS_SAMPLE_RATE: "0"
# TRACING_SAMPLE_RATE: "0"
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 1000m
# memory: 600Mi
# requests:
# cpu: 1000m
# memory: 400Mi
frontend:
# Possibility to use the BE in headless mode
enabled: true
image:
repository: cognigy.azurecr.io/agent-assist-frontend
pullPolicy: IfNotPresent
tag: "f56e62a-1697724049"
replica: 3
priorityClassName: ""
service:
name: cognigy-agent-assist-frontend
internalPort: 8000
targetPort: 8000
type: ClusterIP
annotations: {}
# For example
# service.beta.kubernetes.io/aws-load-balancer-type: external
# service.beta.kubernetes.io/aws-load-balancer-nlb-target-type: ip
# service.beta.kubernetes.io/aws-load-balancer-scheme: internet-facing
ingress:
enabled: true
hosts:
- host: "<host>"
paths:
- path: /
pathType: Prefix
backend:
service:
port:
number: 8000
# tls:
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
# Health configuration
health:
port: 8001
# Metrics configuration
metrics:
port: 8002
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 1000m
# memory: 600Mi
# requests:
# cpu: 1000m
# memory: 400Mi
configmap:
# Google maps api token to have maps available for locations
# GOOGLE_MAPS_API_TOKEN: "<your-google-map-api-token>"
# to enable sentry, fill out the values below. Add your dsn to the TRACING_BASE_URL_WITH_PROTOCOL setting.
# TRACING_BASE_URL_WITH_PROTOCOL: ""
# TRACING_SAMPLE_RATE: "0"
# TRACING_TRACES_SAMPLE_RATE: "0"
# TRACING_REPLAYS_ON_ERROR_SAMPLE_RATE: "0"
# TRACING_REPLAYS_SESSION_SAMPLE_RATE: "0"
# TRACING_TEAM_NAME: ""
# TRACING_RELEASE: ""
# TRACING_ENVIRONMENT: ""
# TRACING_MAX_BREADCRUMBS: "0"
genesysNotificationsForwarder:
enabled: false
image:
repository: cognigy.azurecr.io/agent-assist-genesys-notifications-forwarder
pullPolicy: IfNotPresent
tag: "b1aed1b-1698680892"
replica: 1
priorityClassName: ""
service:
name: cognigy-agent-assist-genesys-notifications-forwarder
internalPort: 8000
targetPort: 8000
type: ClusterIP
annotations: {}
# For example
# service.beta.kubernetes.io/aws-load-balancer-type: external
# service.beta.kubernetes.io/aws-load-balancer-nlb-target-type: ip
# service.beta.kubernetes.io/aws-load-balancer-scheme: internet-facing
ingress:
enabled: true
hosts:
- host: "<host>"
paths:
- path: /
pathType: Prefix
backend:
service:
port:
number: 8000
# tls:
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
# Health configuration
health:
port: 8001
# Metrics configuration
metrics:
port: 8002
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 1000m
# memory: 600Mi
# requests:
# cpu: 1000m
# memory: 400Mi
# The API key to use for authenticating the requests done to the service API
apiKey:
# Existing secret must have `api-key` as secret key
existingSecret: ""
# Optionally create the secret by setting the api key here (not recommended)
# value: ""
# Geneys Cloud Credentials
credentials:
# Existing secret must have `client-id` and 'client-secret' as secret keys
existingSecret: ""
# The Genesys Client ID to use for authenticating with the Genesys Cloud API
clientId:
# Optionally create the secret by setting the client ID here (not recommended)
# value: ""
# The Genesys Client Secret to use for authenticating with the Genesys Cloud API
clientSecret:
# Optionally create the secret by setting the client secret here (not recommended)
# value: ""
configmap:
# LOGGER_LEVEL: "debug"
# GENESYS_ENVIRONMENT: "mypurecloud.de"
# Redis Sentinel enabled
FEATURE_REDIS_SENTINEL_MODE_ENABLED: "true"
REDIS_SENTINEL_PORT: "26379"
REDIS_SENTINEL_HOST: "redis-ha-headless"
REDIS_SENTINEL_MASTER_NAME: "mymaster"
monitoring:
enabled: false
# For testing purposes only
loadTestingMode:
enabled: false
priorityClassName: ""
nodeSelector: {}
tolerations: []