Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions charts/sourcegraph/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Use `**BREAKING**:` to denote a breaking change

- Fix Pod Disruption Budget for sourcegraph-frontend
- Added a startup probe to the gitserver statefulset to give it time to run the on-disk migration from repo names to repo IDs
- The repo-updater service is no longer needed and has been removed from the chart.

## 5.10.0

Expand Down
8 changes: 0 additions & 8 deletions charts/sourcegraph/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,14 +289,6 @@ In addition to the documented values, all services also support the following va
| redisStore.serviceAccount.create | bool | `false` | Enable creation of ServiceAccount for `redis-store` |
| redisStore.serviceAccount.name | string | `""` | Name of the ServiceAccount to be created or an existing ServiceAccount |
| redisStore.storageSize | string | `"100Gi"` | PVC Storage Request for `redis-store` data volume |
| repoUpdater.containerSecurityContext | object | `{"allowPrivilegeEscalation":false,"readOnlyRootFilesystem":true,"runAsGroup":101,"runAsUser":100}` | Security context for the `repo-updater` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container) |
| repoUpdater.image.defaultTag | string | `"6.0.0@sha256:238702dde17eaa41f9dc5b5f379c08a9e57940587128ceda6008d7f06e72cccc"` | Docker image tag for the `repo-updater` image |
| repoUpdater.image.name | string | `"repo-updater"` | Docker image name for the `repo-updater` image |
| repoUpdater.name | string | `"repo-updater"` | Name used by resources. Does not affect service names or PVCs. |
| repoUpdater.podSecurityContext | object | `{}` | Security context for the `repo-updater` pod, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod) |
| repoUpdater.resources | object | `{"limits":{"cpu":"1","memory":"2Gi"},"requests":{"cpu":"1","memory":"500Mi"}}` | Resource requests & limits for the `repo-updater` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) |
| repoUpdater.serviceAccount.create | bool | `false` | Enable creation of ServiceAccount for `repo-updater` |
| repoUpdater.serviceAccount.name | string | `""` | Name of the ServiceAccount to be created or an existing ServiceAccount |
| searcher.containerSecurityContext | object | `{"allowPrivilegeEscalation":false,"readOnlyRootFilesystem":true,"runAsGroup":101,"runAsUser":100}` | Security context for the `searcher` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container) |
| searcher.image.defaultTag | string | `"6.0.0@sha256:c7508abda2202d4a33400ce23a95dd8d59fe6220d85d7fbee6fb186c55931336"` | Docker image tag for the `searcher` image |
| searcher.image.name | string | `"searcher"` | Docker image name for the `searcher` image |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,15 +171,6 @@ redisStore:
memory: 7Gi
storageSize: 100Gi

repoUpdater:
resources:
limits:
cpu: "1"
memory: 2Gi
requests:
cpu: "1"
memory: 500Mi

searcher:
replicaCount: 2
resources:
Expand Down
5 changes: 0 additions & 5 deletions charts/sourcegraph/examples/gcp/override.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,6 @@ preciseCodeIntel:
SRC_LOG_FORMAT:
value: json_gcp

repoUpdater:
env:
SRC_LOG_FORMAT:
value: json_gcp

searcher:
env:
SRC_LOG_FORMAT:
Expand Down
113 changes: 0 additions & 113 deletions charts/sourcegraph/templates/repo-updater/repo-updater.Deployment.yaml

This file was deleted.

This file was deleted.

This file was deleted.

33 changes: 0 additions & 33 deletions charts/sourcegraph/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1035,39 +1035,6 @@ redisStore:
# -- PVC Storage Request for `redis-store` data volume
storageSize: 100Gi

repoUpdater:
image:
# -- Docker image tag for the `repo-updater` image
defaultTag: 6.0.0@sha256:238702dde17eaa41f9dc5b5f379c08a9e57940587128ceda6008d7f06e72cccc
# -- Docker image name for the `repo-updater` image
name: "repo-updater"
# -- Security context for the `repo-updater` container,
# learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container)
containerSecurityContext:
allowPrivilegeEscalation: false
runAsUser: 100
runAsGroup: 101
readOnlyRootFilesystem: true
# -- Name used by resources. Does not affect service names or PVCs.
name: "repo-updater"
# -- Security context for the `repo-updater` pod,
# learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod)
podSecurityContext: {}
# -- Resource requests & limits for the `repo-updater` container,
# learn more from the [Kubernetes documentation](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/)
resources:
limits:
cpu: "1"
memory: 2Gi
requests:
cpu: "1"
memory: 500Mi
serviceAccount:
# -- Enable creation of ServiceAccount for `repo-updater`
create: false
# -- Name of the ServiceAccount to be created or an existing ServiceAccount
name: ""

searcher:
image:
# -- Docker image tag for the `searcher` image
Expand Down
Loading