57 lines
971 B
YAML
57 lines
971 B
YAML
# 이미지 설정
|
|
images:
|
|
repository: docker.io/qdrant/qdrant
|
|
tag: v1.18.2
|
|
useUnprivilegedImage: true
|
|
|
|
# pod 설정
|
|
replicaCount: 1
|
|
|
|
nodeSelector: {}
|
|
tolerations: []
|
|
resources: {}
|
|
# limits:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
# requests:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
|
|
persistence:
|
|
accessModes: ["ReadWriteOnce"]
|
|
size: 10Gi
|
|
storageClassName: "standard-rwo"
|
|
|
|
# qdrant 설정
|
|
config:
|
|
log_level: INFO
|
|
cluster:
|
|
enabled: true
|
|
p2p:
|
|
port: 6335
|
|
consensus:
|
|
tick_period_ms: 100
|
|
|
|
# 보안
|
|
apiKey: false
|
|
readOnlyApiKey: false
|
|
|
|
# ingress 설정
|
|
ingress:
|
|
enabled: true
|
|
ingressClassName: apisix
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: "selfsigned-issuer"
|
|
cert-manager.io/duration: 8760h
|
|
cert-manager.io/renew-before: 720h
|
|
hosts:
|
|
- host: qdrant.example.org
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
servicePort: 6333
|
|
tls:
|
|
- hosts:
|
|
- qdrant.example.org
|
|
secretName: qdrant-tls-secret
|