You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: charts/sourcegraph/README.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,6 +90,19 @@ In addition to the documented values, all services also support the following va
90
90
| codeIntelDB.serviceAccount.create | bool |`false`| Enable creation of ServiceAccount for `codeintel-db`|
91
91
| codeIntelDB.serviceAccount.name | string |`""`| Name of the ServiceAccount to be created or an existing ServiceAccount |
92
92
| codeIntelDB.storageSize | string |`"200Gi"`| PVC Storage Request for `codeintel-db` data volume |
93
+
| embeddings.containerSecurityContext | object |`{"allowPrivilegeEscalation":false,"readOnlyRootFilesystem":true,"runAsGroup":101,"runAsUser":100}`| Security context for the `worker` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container)|
| embeddings.env | object |`{}`| Environment variables for the `embeddings` container |
96
+
| embeddings.extraVolumeMounts | object |`{}`||
97
+
| embeddings.extraVolumes | object |`{}`||
98
+
| embeddings.image.defaultTag | string |`"5.0.3@sha256:1d8f05ed57e361451d92eabbb3a0d90169c1108f48a274d556e43f541190e01a"`| Docker image tag for the `embeddings` image |
99
+
| embeddings.image.name | string |`"embeddings"`| Docker image name for the `embeddings` image |
100
+
| embeddings.name | string |`"embeddings"`| Name of the `embeddings` service |
101
+
| embeddings.podSecurityContext | object |`{}`| Security context for the `embeddings` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container)|
102
+
| embeddings.resources | object |`{"limits":{"cpu":"8","memory":"64G"},"requests":{"cpu":"4","memory":"32G"}}`| Resource requests & limits for the `worker` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/)|
| embeddings.serviceAccount.create | bool |`false`| Enable creation of ServiceAccount for `embeddings`|
105
+
| embeddings.serviceAccount.name | string |`""`| Name of the ServiceAccount to be created or an existing ServiceAccount |
93
106
| extraResources | list |`[]`| Additional resources to include in the rendered manifest. Templates are supported. |
94
107
| frontend.containerSecurityContext | object |`{"allowPrivilegeEscalation":false,"readOnlyRootFilesystem":true,"runAsGroup":101,"runAsUser":100}`| Security context for the `frontend` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container)|
95
108
| frontend.env | object | the chart will add some default environment values | Environment variables for the `frontend` container |
@@ -337,6 +350,7 @@ In addition to the documented values, all services also support the following va
337
350
| syntectServer.serviceAccount.create | bool |`false`| Enable creation of ServiceAccount for `syntect-server`|
338
351
| syntectServer.serviceAccount.name | string |`""`| Name of the ServiceAccount to be created or an existing ServiceAccount |
339
352
| worker.containerSecurityContext | object |`{"allowPrivilegeEscalation":false,"readOnlyRootFilesystem":true,"runAsGroup":101,"runAsUser":100}`| Security context for the `worker` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container)|
353
+
| worker.env | object |`{}`| Environment variables for the `worker` container |
340
354
| worker.image.defaultTag | string |`"5.0.3@sha256:85016eadcb12a5d94b8ff47192899572bbd33cbc19769b5b1c7c3cc48ca5a914"`| Docker image tag for the `worker` image |
341
355
| worker.image.name | string |`"worker"`| Docker image name for the `worker` image |
342
356
| worker.name | string |`"worker"`| Name used by resources. Does not affect service names or PVCs. |
# -- Resource requests & limits for the `worker` container,
297
+
# learn more from the [Kubernetes documentation](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/)
298
+
resources:
299
+
limits:
300
+
cpu: "8"
301
+
memory: 64G
302
+
requests:
303
+
cpu: "4"
304
+
memory: 32G
305
+
# -- Environment variables for the `embeddings` container
306
+
env: {}
307
+
# -- Security context for the `worker` container,
308
+
# learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container)
309
+
containerSecurityContext:
310
+
allowPrivilegeEscalation: false
311
+
runAsUser: 100
312
+
runAsGroup: 101
313
+
readOnlyRootFilesystem: true
314
+
# -- Security context for the `embeddings` container,
315
+
# learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container)
316
+
podSecurityContext: {}
317
+
serviceAccount:
318
+
# -- Enable creation of ServiceAccount for `embeddings`
319
+
create: false
320
+
# -- Name of the ServiceAccount to be created or an existing ServiceAccount
321
+
name: ""
322
+
annotations: {}
323
+
extraVolumeMounts: {}
324
+
extraVolumes: {}
325
+
286
326
frontend:
287
327
# -- Environment variables for the `frontend` container
288
328
# @default -- the chart will add some default environment values
@@ -1240,6 +1280,8 @@ worker:
1240
1280
readOnlyRootFilesystem: true
1241
1281
# -- Name used by resources. Does not affect service names or PVCs.
1242
1282
name: "worker"
1283
+
# -- Environment variables for the `worker` container
1284
+
env: {}
1243
1285
# -- Security context for the `worker` pod,
1244
1286
# learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod)
0 commit comments