mirror of
https://github.com/nold360/hive-apps
synced 2024-12-22 13:01:21 +00:00
add(qdrant)
This commit is contained in:
parent
da881d2ef7
commit
6c9f2f44cd
3 changed files with 66 additions and 0 deletions
|
@ -30,3 +30,8 @@ apps:
|
||||||
repo: bjw-s
|
repo: bjw-s
|
||||||
chart: app-template
|
chart: app-template
|
||||||
targetRevision: 2.4.0
|
targetRevision: 2.4.0
|
||||||
|
|
||||||
|
- name: qdrant
|
||||||
|
repoURL: https://qdrant.to/helm
|
||||||
|
chart: qdrant
|
||||||
|
targetRevision: 0.8.0
|
||||||
|
|
|
@ -9,6 +9,18 @@ controllers:
|
||||||
command: [ "next", "start", "-p", "3001" ]
|
command: [ "next", "start", "-p", "3001" ]
|
||||||
env:
|
env:
|
||||||
PUPPETEER_WSS_ENDPOINT: ws://browserless.browserless.svc.cluster.local:3000
|
PUPPETEER_WSS_ENDPOINT: ws://browserless.browserless.svc.cluster.local:3000
|
||||||
|
# ANTHROPIC_API_HOST: ""
|
||||||
|
# ANTHROPIC_API_KEY: ""
|
||||||
|
# ELEVENLABS_API_HOST: ""
|
||||||
|
# ELEVENLABS_API_KEY: ""
|
||||||
|
# ELEVENLABS_VOICE_ID: ""
|
||||||
|
# GOOGLE_CLOUD_API_KEY: ""
|
||||||
|
# GOOGLE_CSE_ID: ""
|
||||||
|
# HELICONE_API_KEY: ""
|
||||||
|
OPENAI_API_HOST: "localai-local-ai.ai.svc.cluster.local"
|
||||||
|
# OPENAI_API_KEY: "sk-xxxxxxxxxxxx"
|
||||||
|
# OPENAI_API_ORG_ID: ""
|
||||||
|
# PRODIA_API_KEY: ""
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
main:
|
main:
|
||||||
|
|
49
projects/ai/values/qdrant.yml
Normal file
49
projects/ai/values/qdrant.yml
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
image:
|
||||||
|
repository: docker.io/qdrant/qdrant
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
tag: "v1.8.0"
|
||||||
|
useUnprivilegedImage: true
|
||||||
|
|
||||||
|
env:
|
||||||
|
- name: QDRANT__TELEMETRY_DISABLED
|
||||||
|
value: "true"
|
||||||
|
|
||||||
|
ingress:
|
||||||
|
enabled: false
|
||||||
|
ingressClassName: ""
|
||||||
|
additionalLabels: {}
|
||||||
|
annotations: {}
|
||||||
|
# kubernetes.io/ingress.class: alb
|
||||||
|
hosts:
|
||||||
|
- host: example-domain.com
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
pathType: Prefix
|
||||||
|
servicePort: 6333
|
||||||
|
tls: []
|
||||||
|
# - hosts:
|
||||||
|
# - example-domain.com
|
||||||
|
# secretName: tls-secret-name
|
||||||
|
|
||||||
|
updateVolumeFsOwnership: false
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
accessModes: ["ReadWriteOnce"]
|
||||||
|
size: 10Gi
|
||||||
|
storageClassName: ssd
|
||||||
|
|
||||||
|
# modification example for configuration to overwrite defaults
|
||||||
|
config:
|
||||||
|
cluster:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
# api key for authentication at qdrant
|
||||||
|
# false: no api key will be configured
|
||||||
|
# true: an api key will be auto-generated
|
||||||
|
# string: the given string will be set as an apikey
|
||||||
|
apiKey: true
|
||||||
|
# read-only api key for authentication at qdrant
|
||||||
|
# false: no read-only api key will be configured
|
||||||
|
# true: an read-only api key will be auto-generated
|
||||||
|
# string: the given string will be set as a read-only apikey
|
||||||
|
readOnlyApiKey: true
|
Loading…
Reference in a new issue