forked from qdrant/qdrant-helm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
104 lines (89 loc) · 2.17 KB
/
values.yaml
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
replicaCount: 1
ingress:
# enabled -- Enables getting access to the application from the internet
enabled: true
# annotations -- Used with cert-manager to trigger cm-acme pods (certificate resolvers)
whitelistSourceRange: []
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
kubernetes.io/tls-acme: 'true'
nginx.ingress.kubernetes.io/ssl-redirect: "false"
hosts:
- host: qdrant.serving.inarix.fr
serviceName: qdrant
path: /
tls:
- hosts:
- dagit.inarix.com
secretName: dagit-inarix-tls
image:
repository: qdrant/qdrant
pullPolicy: IfNotPresent
tag: v0.11.3
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
# checks - Readiness and liveness checks can only be enabled for either rest or grpc (multiple checks not supported)
# grpc checks are only available from k8s 1.24+ so as of per default we check rest
service:
type: ClusterIP
annotations: {}
ports:
- name: rest
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: 5
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
successThreshold: 1
readinessProbe:
enabled: true
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
successThreshold: 1
podAnnotations: {}
resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}
persistence:
accessModes: [ "ReadWriteOnce" ]
size: 30Gi
storageClassName: premium-rwo
#only supported for single node qdrant clusters.
snapshotRestoration:
enabled: false
pvcName: snapshots-pvc
snapshots:
# - /qdrant/snapshots/test_collection/test_collection-2022-10-24-13-56-50.snapshot:test_collection
#modification example for configuration to overwrite defaults
config:
cluster:
enabled: true
p2p:
port: 6335
consensus:
tick_period_ms: 100