-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqdrant-values.yaml
More file actions
99 lines (86 loc) · 2.04 KB
/
Copy pathqdrant-values.yaml
File metadata and controls
99 lines (86 loc) · 2.04 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
replicaCount: 5 # SITE-SPECIFIC: one per node
image:
repository: docker.io/qdrant/qdrant
pullPolicy: IfNotPresent
tag: ""
fullnameOverride: "qdrant"
service:
type: ClusterIP
ports:
- name: http
port: 6333
targetPort: 6333
protocol: TCP
checksEnabled: true
- name: grpc
port: 6334
targetPort: 6334
protocol: TCP
checksEnabled: false
- name: p2p
port: 6335
targetPort: 6335
protocol: TCP
checksEnabled: false
livenessProbe:
enabled: true
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3
failureThreshold: 6
successThreshold: 1
readinessProbe:
enabled: true
initialDelaySeconds: 5
periodSeconds: 5
timeoutSeconds: 3
failureThreshold: 6
successThreshold: 1
resources:
requests:
cpu: "250m"
memory: "512Mi"
limits:
cpu: "2"
memory: "4Gi"
# NOTE: Qdrant logs "Filesystem check failed ... NFS may cause data corruption"
# on NFS storage. No official suppression flag exists. PowerScale/NFS is required
# for this environment. Snapshot persistence is enabled as a recovery safety net.
persistence:
accessModes: ["ReadWriteOnce"]
size: 20Gi
storageClassName: nfs-client # SITE-SPECIFIC: your StorageClass
snapshotPersistence:
enabled: true
accessModes: ["ReadWriteOnce"]
size: 10Gi
storageClassName: nfs-client # SITE-SPECIFIC: your StorageClass
topologySpreadConstraints:
- maxSkew: 1
topologyKey: kubernetes.io/hostname
whenUnsatisfiable: ScheduleAnyway
labelSelector:
matchLabels:
app.kubernetes.io/name: qdrant
config:
cluster:
enabled: true
service:
enable_tls: false
apiKey:
valueFrom:
secretKeyRef:
name: openwebui-secrets
key: qdrant-api-key
metrics:
serviceMonitor:
enabled: true
additionalLabels:
release: rancher-monitoring # SITE-SPECIFIC: match your Prometheus operator label
scrapeInterval: 30s
scrapeTimeout: 10s
targetPort: http
targetPath: "/metrics"
podDisruptionBudget:
enabled: true
maxUnavailable: 1