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
8 changes: 4 additions & 4 deletions base/sourcegraph/searcher/searcher.Service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ metadata:
spec:
clusterIP: None
ports:
- name: http
- name: grpc
port: 3181
targetPort: http
- name: debug
targetPort: grpc
- name: http-debug
port: 6060
targetPort: debug
targetPort: http-debug
selector:
app: searcher
type: ClusterIP
8 changes: 4 additions & 4 deletions base/sourcegraph/searcher/searcher.StatefulSet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ spec:
terminationMessagePolicy: FallbackToLogsOnError
ports:
- containerPort: 3181
name: http
name: grpc
- containerPort: 6060
name: debug
name: http-debug
readinessProbe:
failureThreshold: 3
httpGet:
path: /healthz
port: http
path: /ready
port: http-debug
scheme: HTTP
periodSeconds: 5
timeoutSeconds: 5
Expand Down
Loading