-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor!: remove experimental features from release builds #9222
base: main
Are you sure you want to change the base?
Changes from all commits
cf01e90
ce353bb
7d43d74
56aed85
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -17,8 +17,6 @@ If you want to preserve Zebra's state, you can create a Docker volume: | |||||||
docker volume create zebrad-cache | ||||||||
``` | ||||||||
|
||||||||
And mount it before you start the container: | ||||||||
|
||||||||
```shell | ||||||||
docker run \ | ||||||||
--mount source=zebrad-cache,target=/home/zebra/.cache/zebra \ | ||||||||
|
@@ -54,10 +52,34 @@ docker build \ | |||||||
. | ||||||||
``` | ||||||||
|
||||||||
### Alternatives | ||||||||
|
||||||||
See [Building Zebra](https://github.com/ZcashFoundation/zebra#building-zebra) for more information. | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Invalid link
Suggested change
|
||||||||
|
||||||||
## Advanced usage | ||||||||
|
||||||||
You're able to specify various parameters when building or launching the Docker image, which are meant to be used by developers and CI pipelines. For example, specifying the Network where Zebra will run (Mainnet, Testnet, etc), or enabling features like metrics with Prometheus. | ||||||||
Comment on lines
+59
to
+61
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd say selecting between Mainnet and Testnet and monitoring is basic functionality for all users. I'd rather avoid orienting it at advanced users or devs.
Suggested change
|
||||||||
|
||||||||
### Building with Custom Features | ||||||||
|
||||||||
Zebra supports various features that can be enabled during build time using the `FEATURES` build argument: | ||||||||
|
||||||||
For example, if we'd like to enable metrics on the image, we'd build it using the following `build-arg`: | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This will become outdated once we enable the |
||||||||
|
||||||||
> [!IMPORTANT] | ||||||||
> To fully use and display the metrics, you'll need to run a Prometheus and Grafana server, and configure it to scrape and visualize the metrics endpoint. This is explained in more detailed in the [Metrics](https://zebra.zfnd.org/user/metrics.html#zebra-metrics) section of the User Guide. | ||||||||
|
||||||||
```shell | ||||||||
# Build with specific features | ||||||||
docker build -f ./docker/Dockerfile --target runtime \ | ||||||||
--build-arg FEATURES="default-release-binaries prometheus" \ | ||||||||
--tag zebra:metrics . | ||||||||
``` | ||||||||
|
||||||||
All available Cargo features are listed at | ||||||||
<https://docs.rs/zebrad/latest/zebrad/index.html#zebra-feature-flags>. | ||||||||
|
||||||||
## Configuring Zebra | ||||||||
## Configuring Zebra with Docker Compose | ||||||||
|
||||||||
To configure Zebra, edit the `docker/default-zebra-config.toml` config file and | ||||||||
uncomment the `configs` mapping in `docker/docker-compose.yml` so your config | ||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't a breaking change because the last experimental build we published was 1.8, which was 9 months ago.