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 @@ -9,6 +9,7 @@ Use `**BREAKING**:` to denote a breaking change
## Unreleased

- 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

## 5.10.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,14 @@ spec:
{{- end }}
{{- include "sourcegraph.openTelemetryEnv" . | nindent 8 }}
terminationMessagePolicy: FallbackToLogsOnError
# Temporary: when migrating from repo names to repo IDs on disk,
# gitserver can take a little while to start up. To avoid killing the
# pod because of a failed liveness probe, we give it 2 minutes to start up.
startupProbe:
tcpSocket:
port: rpc
failureThreshold: 120
periodSeconds: 1
livenessProbe:
initialDelaySeconds: 5
tcpSocket:
Expand Down
Loading