databases/qdrant/manifests/02-values-file/values.yaml (87 lines of code) (raw):
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# [START gke_databases_qdrant_02_values_file_config]
replicaCount: 3
config:
service:
enable_tls: false
cluster:
enabled: true
storage:
optimizers:
deleted_threshold: 0.5
vacuum_min_vector_number: 1500
default_segment_number: 2
max_segment_size_kb: null
memmap_threshold_kb: null
indexing_threshold_kb: 25000
flush_interval_sec: 5
max_optimization_threads: 1
livenessProbe:
enabled: true
initialDelaySeconds: 60
resources:
limits:
cpu: "2"
memory: 4Gi
requests:
cpu: "1"
memory: 4Gi
tolerations:
- key: "app.stateful/component"
operator: "Equal"
value: "qdrant"
effect: NoSchedule
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 1
preference:
matchExpressions:
- key: "app.stateful/component"
operator: In
values:
- "qdrant"
topologySpreadConstraints:
- maxSkew: 1
topologyKey: "topology.kubernetes.io/zone"
whenUnsatisfiable: ScheduleAnyway
labelSelector:
matchLabels:
app.kubernetes.io/name: qdrant
app.kubernetes.io/instance: qdrant
podDisruptionBudget:
enabled: true
maxUnavailable: 1
persistence:
accessModes: ["ReadWriteOnce"]
size: 10Gi
storageClassName: ha-regional
apiKey: true
sidecarContainers:
- name: metrics
image: nginx:1.27
resources:
requests:
memory: "128Mi"
cpu: "250m"
limits:
memory: "128Mi"
cpu: "500m"
ports:
- containerPort: 80
env:
- name: QDRANT_APIKEY
valueFrom:
secretKeyRef:
name: qdrant-database-apikey
key: api-key
volumeMounts:
- name: nginx-conf
mountPath: /etc/nginx/templates/default.conf.template
subPath: default.conf.template
readOnly: true
additionalVolumes:
- name: nginx-conf
configMap:
name: nginx-conf
items:
- key: default.conf.template
path: default.conf.template
# [END gke_databases_qdrant_02_values_file_config]