Commit 3ff4c194 authored by Gyanendra Mishra's avatar Gyanendra Mishra Committed by GitHub

Merge pull request #39 from kurtosis-tech/gyani/clean-args

removed the args flag in favor of args arg
parents d2a813e2 f088de83
...@@ -29,7 +29,7 @@ Quickstart ...@@ -29,7 +29,7 @@ Quickstart
1. Run the package, passing in the params from the file: 1. Run the package, passing in the params from the file:
```bash ```bash
kurtosis run --enclave-id eth2 github.com/kurtosis-tech/eth2-package --args "$(cat ~/eth2-package-params.json)" kurtosis run --enclave-id eth2 github.com/kurtosis-tech/eth2-package "$(cat ~/eth2-package-params.json)"
``` ```
Management Management
...@@ -180,10 +180,10 @@ Then, run the dev loop: ...@@ -180,10 +180,10 @@ Then, run the dev loop:
1. Make your code changes 1. Make your code changes
1. Rebuild and re-run the package by running the following from the root of the repo: 1. Rebuild and re-run the package by running the following from the root of the repo:
```bash ```bash
kurtosis run . --args "{}" kurtosis run . "{}"
``` ```
NOTE 1: You can change the value of the `--args` flag to pass in extra configuration to the package per the "Configuration" section above! NOTE 1: You can change the value of the second positional argument flag to pass in extra configuration to the package per the "Configuration" section above!
NOTE 2: The `--args` flag accepts JSON. NOTE 2: The second positional argument accepts JSON.
To get detailed information about the structure of the package, visit [the architecture docs](./docs/architecture.md). To get detailed information about the structure of the package, visit [the architecture docs](./docs/architecture.md).
...@@ -207,4 +207,4 @@ When you're happy with your changes: ...@@ -207,4 +207,4 @@ When you're happy with your changes:
[starlark-docs]: https://docs.kurtosis.com/explanations/starlark [starlark-docs]: https://docs.kurtosis.com/explanations/starlark
[using-the-cli]: https://docs.kurtosis.com/cli [using-the-cli]: https://docs.kurtosis.com/cli
[prysm-issue]: https://github.com/prysmaticlabs/prysm/issues/11508 [prysm-issue]: https://github.com/prysmaticlabs/prysm/issues/11508
[erigon-issue]: https://github.com/kurtosis-tech/eth2-merge-kurtosis-module/issues/154 [erigon-issue]: https://github.com/kurtosis-tech/eth2-merge-kurtosis-module/issues/154
\ No newline at end of file
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
- Removed `print(output)` at the end as it is now printed by the framework - Removed `print(output)` at the end as it is now printed by the framework
- Updates nimbus default docker image - Updates nimbus default docker image
- Updates `genesis-generator` image to include a fix for nimbus post-merge genesis - Updates `genesis-generator` image to include a fix for nimbus post-merge genesis
- Use the `args` argument instead of flags
# 0.0.4 # 0.0.4
### Changes ### Changes
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment