mirror of
https://github.com/nold360/hive-apps
synced 2024-12-22 04:21:22 +00:00
add: bi/qdrant
This commit is contained in:
parent
e5c8115944
commit
6403e61731
2 changed files with 16 additions and 12 deletions
|
@ -21,6 +21,12 @@ apps:
|
||||||
jsonPointers:
|
jsonPointers:
|
||||||
- /spec/replicas
|
- /spec/replicas
|
||||||
|
|
||||||
|
- name: qdrant
|
||||||
|
namespace: bi
|
||||||
|
repoUR: https://qdrant.github.io/qdrant-helm
|
||||||
|
chart: qdrant
|
||||||
|
targetRevision: 1.12.5
|
||||||
|
|
||||||
# - name: mongo-express
|
# - name: mongo-express
|
||||||
# repoURL: https://cowboysysop.github.io/charts/
|
# repoURL: https://cowboysysop.github.io/charts/
|
||||||
# chart: mongo-express
|
# chart: mongo-express
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
image:
|
image:
|
||||||
repository: docker.io/qdrant/qdrant
|
repository: docker.io/qdrant/qdrant
|
||||||
pullPolicy: IfNotPresent
|
|
||||||
tag: "v1.12.5"
|
tag: "v1.12.5"
|
||||||
useUnprivilegedImage: true
|
useUnprivilegedImage: true
|
||||||
|
|
||||||
|
@ -9,28 +8,27 @@ env:
|
||||||
value: "true"
|
value: "true"
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
enabled: false
|
enabled: true
|
||||||
ingressClassName: ""
|
ingressClassName: "ingress-internal"
|
||||||
additionalLabels: {}
|
annotations:
|
||||||
annotations: {}
|
cert-manager.io/cluster-issuer: vault-issuer
|
||||||
# kubernetes.io/ingress.class: alb
|
|
||||||
hosts:
|
hosts:
|
||||||
- host: example-domain.com
|
- host: qdrant.dc
|
||||||
paths:
|
paths:
|
||||||
- path: /
|
- path: /
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
servicePort: 6333
|
servicePort: 6333
|
||||||
tls: []
|
tls:
|
||||||
# - hosts:
|
- hosts:
|
||||||
# - example-domain.com
|
- qdrant.dc
|
||||||
# secretName: tls-secret-name
|
secretName: tls-qdrant
|
||||||
|
|
||||||
updateVolumeFsOwnership: false
|
updateVolumeFsOwnership: false
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
accessModes: ["ReadWriteOnce"]
|
accessModes: ["ReadWriteOnce"]
|
||||||
size: 10Gi
|
size: 10Gi
|
||||||
storageClassName: ssd
|
# storageClassName:
|
||||||
|
|
||||||
# modification example for configuration to overwrite defaults
|
# modification example for configuration to overwrite defaults
|
||||||
config:
|
config:
|
Loading…
Reference in a new issue