-
Notifications
You must be signed in to change notification settings - Fork 557
Expand file tree
/
Copy pathvalues.yaml
More file actions
416 lines (393 loc) · 8.3 KB
/
values.yaml
File metadata and controls
416 lines (393 loc) · 8.3 KB
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
# Default values for crapi.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
jwtSecret: crapi
enableLog4j: true
enableShellInjection: true
imagePullPolicy: Always
apiGatewayServiceUrl: https://api.mypremiumdealership.com
apiGatewayServiceInstall: true
apiGatewayPassword:
tlsEnabled: false
jwtExpiration: 604800000
logLevel: INFO
# Chatbot LLM Configuration
chatbotLlmProvider: openai
chatbotLlmModel: ""
chatbotEmbeddingsModel: ""
chatbotEmbeddingsDimensions: 1536
# OpenAI API Key
chatbotOpenaiApiKey: ""
openAIApiKey: "" # for backward compatibility
# OpenAI Base URL (for DeepSeek or other OpenAI-compatible APIs)
chatbotOpenaiBaseUrl: ""
# Anthropic API Key
anthropicApiKey: ""
# Azure configuration
azureOpenaiApiKey: ""
azureAdToken: ""
azureOpenaiEndpoint: ""
azureOpenaiApiVersion: 2024-02-15-preview
azureOpenaiChatDeployment: ""
azureOpenaiEmbeddingsDeployment: ""
# Groq API Key
groqApiKey: ""
# Mistral API Key
mistralApiKey: ""
# Cohere API Key
cohereApiKey: ""
# AWS Bedrock configuration
awsBearerTokenBedrock: ""
awsAccessKeyId: ""
awsSecretAccessKey: ""
awsSessionToken: ""
awsRegion: ""
# Google Vertex AI configuration
googleApplicationCredentials: ""
vertexProject: ""
vertexLocation: ""
waitForK8sResources:
enabled: True
image: groundnuty/k8s-wait-for:v2.0
imagePullPolicy: IfNotPresent
web:
name: crapi-web
image: crapi/crapi-web
replicaCount: 1
port: 80
sslPort: 443
service:
name: crapi-web
labels:
app: crapi-web
nodePort: 30080
sslNodePort: 30443
config:
name: crapi-web-configmap
labels:
app: crapi-web
deploymentLabels:
app: crapi-web
podLabels:
app: crapi-web
deploymentSelectorMatchLabels:
app: crapi-web
serviceSelectorLabels:
app: crapi-web
identity:
name: crapi-identity
image: crapi/crapi-identity
port: 8080
replicaCount: 1
service:
name: crapi-identity
labels:
app: crapi-identity
jwtKeySecret:
name: jwt-key-secret
file: keys/jwks.json
labels:
app: crapi-identity
config:
name: crapi-identity-configmap
labels:
app: crapi-identity
postgresDbDriver: postgresql
appName: "crapi-identity"
mailhogDomain: "example.com"
smtpHost: "smtp.example.com"
smtpPort: 587
smtpEmail: "user@example.com"
smtpPass: "xxxxxxxxxxxxxx"
smtpFrom: "no-reply@example.com"
smtpAuth: true
smtpStartTLS: true
keyStoreType: PKCS12
keyStore: classpath:certs/server.p12
keyStorePassword: passw0rd
keyPassword: passw0rd
keyAlias: identity
deploymentLabels:
app: crapi-identity
podLabels:
app: crapi-identity
deploymentSelectorMatchLabels:
app: crapi-identity
serviceSelectorLabels:
app: crapi-identity
community:
name: crapi-community
image: crapi/crapi-community
port: 8087
replicaCount: 1
service:
name: crapi-community
labels:
app: crapi-community
config:
name: crapi-community-configmap
labels:
app: crapi-community
postgresDbDriver: postgres
mongoDbDriver: mongodb
deploymentLabels:
app: crapi-community
podLabels:
app: crapi-community
deploymentSelectorMatchLabels:
app: crapi-community
serviceSelectorLabels:
app: crapi-community
workshop:
name: crapi-workshop
image: crapi/crapi-workshop
port: 8000
replicaCount: 1
service:
name: crapi-workshop
labels:
app: crapi-workshop
config:
name: crapi-workshop-configmap
labels:
app: crapi-workshop
postgresDbDriver: postgres
mongoDbDriver: mongodb
secretKey: crapi
filesLimit: 1000
deploymentLabels:
app: crapi-workshop
podLabels:
app: crapi-workshop
deploymentSelectorMatchLabels:
app: crapi-workshop
serviceSelectorLabels:
app: crapi-workshop
chatbot:
name: crapi-chatbot
image: crapi/crapi-chatbot
port: 5002
replicaCount: 1
service:
name: crapi-chatbot
labels:
app: crapi-chatbot
config:
name: crapi-chatbot-configmap
labels:
app: crapi-chatbot
postgresDbDriver: postgres
mongoDbDriver: mongodb
secretKey: crapi
maxContentLength: 50000
chromaPersistDirectory: /app/vectorstore
apiUser: admin@example.com
apiPassword: Admin!123
openapiSpec: /app/resources/crapi-openapi-spec.json
storage:
# type: "manual"
# pv:
# name: chatbot-vectors-pv
# labels:
# app: crapi-chatbot
# resources:
# storage: 1Gi
# hostPath: /mnt/vectorstore
type: "default"
pvc:
name: chatbot-vectors-pv-claim
labels:
app: crapi-chatbot
resources:
requests:
storage: 1Gi
deploymentLabels:
app: crapi-chatbot
podLabels:
app: crapi-chatbot
deploymentSelectorMatchLabels:
app: crapi-chatbot
serviceSelectorLabels:
app: crapi-chatbot
mailhog:
name: mailhog
image: crapi/mailhog
webPort: 8025
smtpPort: 1025
replicaCount: 1
minReadySeconds: 10
progressDeadlineSeconds: 600
namespace: crapi
smtpService:
name: mailhog
labels:
app: mailhog
webService:
name: mailhog-web
labels:
app: mailhog
nodePort: 30025
config:
name: mailhog-configmap
labels:
app: mailhog
mailhogStorage: mongodb
deploymentLabels:
app: mailhog
podLabels:
app: mailhog
podAnnotations:
sidecar.traceable.ai/inject: "false"
deploymentSelectorMatchLabels:
app: mailhog
serviceSelectorLabels:
app: mailhog
mongodb:
name: mongodb
image: mongo
version: 5.0
imagePullPolicy: IfNotPresent
port: 27017
replicaCount: 1
service:
name: mongodb
labels:
app: mongodb
config:
name: mongodb-config
labels:
app: mongodb
mongoUser: admin
mongoPassword: crapisecretpassword
mongoDbName: crapi
mongoUri: "admin:crapisecretpassword@mongodb:27017"
storage:
# type: "manual"
# pv:
# name: mongodb-pv
# labels:
# app: mongodb
# resources:
# storage: 2Gi
# hostPath: /mnt/test
type: "default"
pvc:
name: mongodb-pv-claim
labels:
app: mongodb
resources:
requests:
storage: 2Gi
serviceSelectorLabels:
app: mongodb
podLabels:
app: mongodb
statefulsetLabels:
app: mongodb
statefulsetSelectorMatchLabels:
app: mongodb
postgresdb:
name: postgresdb
image: postgres
version: 14
imagePullPolicy: IfNotPresent
port: 5432
replicaCount: 1
service:
name: postgresdb
labels:
app: postgresdb
config:
name: postgres-config
labels:
app: postgresdb
postgresUser: admin
postgresPassword: crapisecretpassword
postgresDbName: crapi
storage:
# type: "manual"
# pv:
# name: postgres-pv
# labels:
# app: postgresdb
# resources:
# storage: 2Gi
# hostPath: /mnt/test
type: "default"
pvc:
name: postgres-pv-claim
labels:
app: postgresdb
resources:
requests:
storage: 2Gi
serviceSelectorLabels:
app: postgresdb
podLabels:
app: postgresdb
statefulsetLabels:
app: postgresdb
statefulsetSelectorMatchLabels:
app: postgresdb
apiGatewayService:
name: gateway-service
image: crapi/gateway-service
port: 443
replicaCount: 1
service:
name: "gateway-service"
labels:
app: gateway-service
config:
name: gateway-service
labels:
app: gateway-service
deploymentLabels:
app: gateway-service
podLabels:
app: gateway-service
deploymentSelectorMatchLabels:
app: gateway-service
serviceSelectorLabels:
app: gateway-service
chromadb:
name: chromadb
image: chromadb/chroma
version: latest
imagePullPolicy: IfNotPresent
port: 8000
replicaCount: 1
service:
name: chromadb
labels:
app: chromadb
config:
name: chromadb-config
labels:
app: chromadb
isPersistent: true
storage:
# type: "manual"
# pv:
# name: chromadb-pv
# labels:
# app: chromadb
# resources:
# storage: 1Gi
# hostPath: /mnt/chromadb
type: "default"
pvc:
name: chromadb-pv-claim
labels:
app: chromadb
resources:
requests:
storage: 2Gi
serviceSelectorLabels:
app: chromadb
podLabels:
app: chromadb
statefulsetLabels:
app: chromadb
statefulsetSelectorMatchLabels:
app: chromadb