hive-apps/projects/bi/values/bi.yml

148 lines
3.7 KiB
YAML
Raw Normal View History

2024-06-30 14:59:23 +02:00
controllers:
# main agent
main:
containers:
main:
image:
repository: reg.dc/bi
tag: latest
pullPolicy: Always
env:
BIBOT_CONFIG: /config/bibot.yml
2025-01-25 12:58:51 +01:00
BIBOT_KAFKA__BROKER: kafka://redpanda.bi.svc.cluster.local:9093
2025-01-06 14:28:10 +01:00
BIBOT_QDRANT__API_KEY:
valueFrom:
secretKeyRef:
name: qdrant-apikey
key: api-key
2025-01-21 10:34:26 +01:00
BIBOT_VALKEY__HOST: valkey-primary.bi.svc.cluster.local
BIBOT_VALKEY__PASSWORD:
valueFrom:
secretKeyRef:
name: valkey
key: valkey-password
2024-12-11 17:40:40 +01:00
OPENAI_API_KEY: fake
2025-01-13 14:11:28 +01:00
command: ["python"]
2024-06-30 14:59:23 +02:00
args: ["/app/bi/agents/main/app.py", "worker", "-l", "info"]
controller:
containers:
main:
image:
repository: reg.dc/bi
tag: latest
pullPolicy: Always
env:
BIBOT_CONFIG: /config/bibot.yml
2025-01-25 12:58:51 +01:00
BIBOT_KAFKA__BROKER: kafka://redpanda.bi.svc.cluster.local:9093
2025-01-21 10:34:26 +01:00
BIBOT_VALKEY__HOST: valkey-primary.bi.svc.cluster.local
BIBOT_VALKEY__PASSWORD:
2024-06-30 14:59:23 +02:00
valueFrom:
secretKeyRef:
2025-01-21 10:34:26 +01:00
name: valkey
key: valkey-password
2025-01-13 14:11:28 +01:00
command: ["python"]
2024-06-30 14:59:23 +02:00
args: ["/app/bi/controller.py", "worker", "-l", "info"]
2025-01-13 14:11:28 +01:00
memory:
containers:
main:
image:
repository: reg.dc/bi
tag: latest
pullPolicy: Always
env:
BIBOT_CONFIG: /config/bibot.yml
2025-01-25 12:58:51 +01:00
BIBOT_KAFKA__BROKER: kafka://redpanda.bi.svc.cluster.local:9093
2025-01-13 14:11:28 +01:00
BIBOT_QDRANT__API_KEY:
valueFrom:
secretKeyRef:
name: qdrant-apikey
key: api-key
2025-01-21 10:34:26 +01:00
BIBOT_VALKEY__PASSWORD:
valueFrom:
secretKeyRef:
name: valkey
key: valkey-password
BIBOT_VALKEY__HOST: valkey-primary.bi.svc.cluster.local
2025-01-13 14:11:28 +01:00
OPENAI_API_KEY: fake
command: ["python"]
args: ["/app/bi/agents/memory/app.py", "worker", "-l", "info"]
2024-06-30 14:59:23 +02:00
discord:
containers:
main:
image:
repository: reg.dc/bi
tag: latest
pullPolicy: Always
2025-01-13 14:11:28 +01:00
command: ["python"]
2024-06-30 14:59:23 +02:00
args: ["/app/bi/connectors/discord/app.py", "worker", "-l", "info"]
env:
2025-01-25 12:58:51 +01:00
BIBOT_KAFKA__BROKER: redpanda.bi.svc.cluster.local:9093
BIBOT_QDRANT__API_KEY:
2025-01-21 10:34:26 +01:00
BIBOT_VALKEY__HOST: valkey-primary.bi.svc.cluster.local
2024-06-30 14:59:23 +02:00
OPENAI_API_KEY: fake
BIBOT_DISCORD__TOKEN:
valueFrom:
secretKeyRef:
name: bibot
key: discord-token
## Prod:
BIBOT_DISCORD__CHANNELS: "1216440541064200192"
# Dev:
# BIBOT_DISCORD_CHANNELS: "1217418069693960223"
probes:
liveness:
enabled: false
readiness:
enabled: false
startup:
enabled: false
persistence:
secret:
name: bibot
enabled: true
type: secret
config:
name: bibot-config
enabled: true
type: configMap
data:
size: 10Gi
type: persistentVolumeClaim
accessMode: ReadWriteOnce
2025-01-21 10:34:26 +01:00
# service:
# main:
# controller: mongoui
# ports:
# http:
# port: 4321
# type: ClusterIP
2024-07-09 21:41:20 +02:00
2025-01-21 10:34:26 +01:00
# ingress:
# main:
# annotations:
# cert-manager.io/cluster-issuer: vault-issuer
# enabled: true
# hosts:
# - host: mongo.dc
# paths:
# - path: /
# service:
# # name: main
# identifier: main
# port: 4321
# tls:
# - hosts:
# - mongo.dc
# secretName: mongo-tls