This repository was archived by the owner on Dec 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.yaml
More file actions
90 lines (76 loc) · 1.83 KB
/
values.yaml
File metadata and controls
90 lines (76 loc) · 1.83 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
# charts/chat/values.yaml
# === Основные настройки приложения ===
replicaCount: 2
namespace: "chat-api"
# === Docker образ ===
image:
repository: ghcr.io/justgithubaccount/chat-api
pullPolicy: Always
tag: "1.0.0"
# === Сетевые настройки ===
containerPort: 8000
service:
type: ClusterIP
port: 80
# === Ресурсы ===
resources:
requests:
memory: "256Mi"
cpu: "100m"
limits:
memory: "512Mi"
cpu: "500m"
# === Health checks ===
readinessProbe:
initialDelaySeconds: 5
periodSeconds: 10
livenessProbe:
initialDelaySeconds: 10
periodSeconds: 30
# === Service Account ===
serviceAccount:
create: true
annotations: {}
name: ""
# === Environment Variables (публичные) ===
env:
# OpenTelemetry
OTEL_SERVICE_NAME: "chat-api"
OTEL_EXPORTER_OTLP_ENDPOINT: "http://vector-gateway.observability.svc.cluster.local:4318"
OTEL_EXPORTER_OTLP_PROTOCOL: "http/protobuf"
OTEL_TRACES_EXPORTER: "otlp"
OTEL_LOGS_EXPORTER: "otlp"
# Application
ENVIRONMENT: "production"
LOG_LEVEL: "INFO"
# === OpenRouter Configuration ===
openrouter:
# API endpoint
apiUrl: "https://openrouter.ai/api/v1/chat/completions"
# Default model
defaultModel: "anthropic/claude-opus-4"
# Optional headers для рейтинга
# httpReferer: "https://your-domain.com" # Optional
# xTitle: "Chat Microservice" # Optional
# === External Dependencies ===
externalServices:
postgresql:
enabled: false
host: ""
port: 5432
# Secrets
openrouterSecretRefName: "chat-openrouter"
postgresSecretRefName: "chat-postgres"
# PostgreSQL
postgres:
externalService:
enabled: false
# Ingress
ingress:
enabled: false
className: nginx
host: ""
path: /
tls: false
# Другие возможные секции
createInternalSecret: false