Skip to content
This repository has been archived by the owner on Dec 15, 2021. It is now read-only.

Update gRPC health check endpoints #21

Merged
merged 1 commit into from
Feb 27, 2020
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Fixed

* The default tracing rule error for the incorrect parsed type in the rule expression is resolved. [#14](https://github.com/newrelic/newrelic-istio-adapter/issues/14)
* The gRPC health check endpoint is now specified to be targeted at `localhost` instead of just the port. [#16](https://github.com/newrelic/newrelic-istio-adapter/issues/16)

## 2.0.1

Expand Down
4 changes: 2 additions & 2 deletions helm-charts/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ spec:
- $(NEW_RELIC_API_KEY)
readinessProbe:
exec:
command: ["/bin/grpc_health_probe", "-addr=:55912"]
command: ["/bin/grpc_health_probe", "-addr=localhost:55912"]
initialDelaySeconds: 5
livenessProbe:
exec:
command: ["/bin/grpc_health_probe", "-addr=:55912"]
command: ["/bin/grpc_health_probe", "-addr=localhost:55912"]
initialDelaySeconds: 10
{{- with .Values.resources }}
resources:
Expand Down