Skip to content

Commit 7e83cfc

Browse files
authored
chore: remove qdrant (#459)
* chore: remove qdrant * update changelog
1 parent bc372d3 commit 7e83cfc

File tree

7 files changed

+1
-280
lines changed

7 files changed

+1
-280
lines changed

charts/sourcegraph/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Use `**BREAKING**:` to denote a breaking change
99
## Unreleased
1010

1111
- Updated redis readiness check to fix NOAUTH on password'd redis servers #458
12+
- Removed qdrant from deployment #459
1213

1314
## 5.3.3
1415

charts/sourcegraph/README.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -256,24 +256,6 @@ In addition to the documented values, all services also support the following va
256256
| prometheus.serviceAccount.create | bool | `true` | Enable creation of ServiceAccount |
257257
| prometheus.serviceAccount.name | string | `"prometheus"` | Name of the ServiceAccount to be created or an existing ServiceAccount |
258258
| prometheus.storageSize | string | `"200Gi"` | PVC Storage Request for `prometheus` data volume |
259-
| qdrant.config | object | `{"debug":true,"log_level":"INFO"}` | Resource requests & limits for the `qdrant` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) |
260-
| qdrant.containerSecurityContext | object | `{"allowPrivilegeEscalation":false,"runAsGroup":101,"runAsUser":100}` | Security context for the `qdrant` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container) |
261-
| qdrant.enabled | bool | `false` | Enable `qdrant` |
262-
| qdrant.env | object | `{}` | Environment variables for the `qdrant` container |
263-
| qdrant.extraVolumeMounts | object | `{}` | |
264-
| qdrant.extraVolumes | object | `{}` | |
265-
| qdrant.image.defaultTag | string | `"5.3.2@sha256:c8628523bb6acf57b0633ab3ca3bc7a07ee21d6ecac1fb370b1bed3d73420269"` | Docker image tag for the `qdrant` image |
266-
| qdrant.image.name | string | `"qdrant"` | Docker image name for the `qdrant` image |
267-
| qdrant.name | string | `"qdrant"` | Name of the `qdrant` service |
268-
| qdrant.podSecurityContext | object | `{"fsGroup":101,"fsGroupChangePolicy":"OnRootMismatch","runAsGroup":101,"runAsUser":100}` | Security context for the `qdrant` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container) |
269-
| qdrant.resources.limits.cpu | string | `"2"` | |
270-
| qdrant.resources.limits.memory | string | `"8G"` | |
271-
| qdrant.resources.requests.cpu | string | `"500m"` | |
272-
| qdrant.resources.requests.memory | string | `"2G"` | |
273-
| qdrant.serviceAccount.annotations | object | `{}` | |
274-
| qdrant.serviceAccount.create | bool | `false` | Enable creation of ServiceAccount for `embeddings` |
275-
| qdrant.serviceAccount.name | string | `""` | Name of the ServiceAccount to be created or an existing ServiceAccount |
276-
| qdrant.storageSize | string | `"100Gi"` | PVC Storage Request for `qdrant` data volume |
277259
| redisCache.connection.endpoint | string | `"redis-cache:6379"` | Endpoint to use for redis-cache. Supports either host:port or IANA specification |
278260
| redisCache.connection.existingSecret | string | `""` | Name of existing secret to use for Redis endpoint The secret must contain the key `endpoint` and should follow IANA specification learn more from the [Helm docs](https://docs.sourcegraph.com/admin/install/kubernetes/helm#using-external-redis-instances) |
279261
| redisCache.containerSecurityContext | object | `{"allowPrivilegeEscalation":false,"readOnlyRootFilesystem":true,"runAsGroup":1000,"runAsUser":999}` | Security context for the `redis-cache` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container) |

charts/sourcegraph/templates/qdrant/qdrant.ConfigMap.yaml

Lines changed: 0 additions & 36 deletions
This file was deleted.

charts/sourcegraph/templates/qdrant/qdrant.Service.yaml

Lines changed: 0 additions & 31 deletions
This file was deleted.

charts/sourcegraph/templates/qdrant/qdrant.ServiceAccount.yaml

Lines changed: 0 additions & 11 deletions
This file was deleted.

charts/sourcegraph/templates/qdrant/qdrant.StatefulSet.yaml

Lines changed: 0 additions & 136 deletions
This file was deleted.

charts/sourcegraph/values.yaml

Lines changed: 0 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -322,54 +322,6 @@ embeddings:
322322
extraVolumeMounts: {}
323323
extraVolumes: {}
324324

325-
qdrant:
326-
# -- Enable `qdrant`
327-
enabled: false
328-
# -- Name of the `qdrant` service
329-
name: qdrant
330-
image:
331-
# -- Docker image name for the `qdrant` image
332-
name: "qdrant"
333-
# -- Docker image tag for the `qdrant` image
334-
defaultTag: "5.3.2@sha256:c8628523bb6acf57b0633ab3ca3bc7a07ee21d6ecac1fb370b1bed3d73420269"
335-
# -- Resource requests & limits for the `qdrant` container,
336-
# learn more from the [Kubernetes documentation](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/)
337-
config:
338-
debug: true
339-
log_level: INFO
340-
resources:
341-
limits:
342-
cpu: "2"
343-
memory: 8G
344-
requests:
345-
cpu: "500m"
346-
memory: 2G
347-
# -- Environment variables for the `qdrant` container
348-
env: {}
349-
# -- Security context for the `qdrant` container,
350-
# learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container)
351-
containerSecurityContext:
352-
allowPrivilegeEscalation: false
353-
runAsUser: 100
354-
runAsGroup: 101
355-
# -- Security context for the `qdrant` container,
356-
# learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container)
357-
podSecurityContext:
358-
runAsUser: 100
359-
runAsGroup: 101
360-
fsGroup: 101
361-
fsGroupChangePolicy: "OnRootMismatch"
362-
serviceAccount:
363-
# -- Enable creation of ServiceAccount for `embeddings`
364-
create: false
365-
# -- Name of the ServiceAccount to be created or an existing ServiceAccount
366-
name: ""
367-
annotations: {}
368-
extraVolumeMounts: {}
369-
extraVolumes: {}
370-
# -- PVC Storage Request for `qdrant` data volume
371-
storageSize: 100Gi
372-
373325
frontend:
374326
# -- Environment variables for the `frontend` container
375327
# @default -- the chart will add some default environment values

0 commit comments

Comments
 (0)