forked from bytebot-ai/bytebot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.yaml
More file actions
117 lines (110 loc) · 2.46 KB
/
values.yaml
File metadata and controls
117 lines (110 loc) · 2.46 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
global:
storageClass: ""
postgresql:
enabled: true
fullnameOverride: "bytebot-postgresql"
auth:
username: postgres
password: postgres
database: bytebotdb
service:
port: 5432
persistence:
enabled: true
size: 10Gi
bytebot-desktop:
fullnameOverride: "bytebot-desktop"
image:
repository: ghcr.io/bytebot-ai/bytebot-desktop
tag: edge
service:
type: ClusterIP
port: 9990
resources:
limits:
memory: "4Gi"
cpu: "2000m"
requests:
memory: "2Gi"
cpu: "1000m"
shm:
enabled: true
size: "2Gi"
bytebot-agent:
fullnameOverride: "bytebot-agent"
image:
repository: ghcr.io/bytebot-ai/bytebot-agent
tag: edge
service:
type: ClusterIP
port: 9991
config:
bytebotDesktopUrl: "http://bytebot-desktop:9990"
postgresql:
enabled: false
externalDatabase:
host: "bytebot-postgresql"
port: 5432
database: bytebotdb
username: postgres
password: postgres
# Legacy API key configuration (for backward compatibility)
env:
ANTHROPIC_API_KEY: ""
OPENAI_API_KEY: ""
GEMINI_API_KEY: ""
# New secret management structure - use this for better security
apiKeys:
anthropic:
useExisting: false
secretName: ""
secretKey: "anthropic-api-key"
value: "" # Only used if useExisting is false
openai:
useExisting: false
secretName: ""
secretKey: "openai-api-key"
value: "" # Only used if useExisting is false
gemini:
useExisting: false
secretName: ""
secretKey: "gemini-api-key"
value: "" # Only used if useExisting is false
resources:
limits:
memory: "2Gi"
cpu: "1000m"
requests:
memory: "1Gi"
cpu: "500m"
bytebot-ui:
fullnameOverride: "bytebot-ui"
image:
repository: ghcr.io/bytebot-ai/bytebot-ui
tag: edge
service:
type: ClusterIP
port: 9992
config:
agentBaseUrl: "http://bytebot-agent:9991"
desktopVncUrl: "http://bytebot-desktop:9990/websockify"
resources:
limits:
memory: "1Gi"
cpu: "500m"
requests:
memory: "512Mi"
cpu: "250m"
# LiteLLM proxy is disabled by default
# Enable it by using -f values-proxy.yaml or --set bytebot-llm-proxy.enabled=true
bytebot-llm-proxy:
enabled: false
ingress:
enabled: false
className: "nginx"
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod"
host: bytebot.example.com
tls:
enabled: true
secretName: bytebot-tls