-
Notifications
You must be signed in to change notification settings - Fork 296
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(dev): add grpcui to nix dev env
Adds a version of grpcui to the local nix dev env. Includes logic to build the go binary from source, via nix, because the released version of grpcui upstream still uses the old v1alpha reflection API, which is incompatible with current versions of `pd`. Refs #4392.
- Loading branch information
Showing
3 changed files
with
58 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
# A process-compose configuration for running a dev-centric debugging and introspection | ||
# tooling for Penumbra, such as gRPC UI, for exploring protobuf interfaces. | ||
version: "0.5" | ||
log_level: info | ||
is_strict: true | ||
|
||
processes: | ||
# Run gRPC UI for interactive protobuf exploration in a web UI: http://localhost:8100 | ||
grpcui: | ||
command: grpcui -v -open-browser=false -port 8100 -plaintext localhost:8080 | ||
readiness_probe: | ||
http_get: | ||
host: 127.0.0.1 | ||
scheme: http | ||
path: "/" | ||
port: 8100 | ||
initial_delay_seconds: 10 | ||
period_seconds: 5 | ||
failure_threshold: 3 | ||
availability: | ||
restart: exit_on_failure | ||
depends_on: | ||
pd: | ||
condition: process_healthy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters