Files
qdrant-helm/values.yaml
2022-08-12 13:07:28 +02:00

78 lines
1.4 KiB
YAML

replicaCount: 1
image:
repository: qdrant/qdrant
pullPolicy: IfNotPresent
tag: v0.9.1
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
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: 1Gi
#storageClassName: local-path
#modification example for configuration to overwrite defaults
config:
cluster:
enabled: true
p2p:
port: 6335
consensus:
tick_period_ms: 100