Skip to content

Commit

Permalink
Add commands README
Browse files Browse the repository at this point in the history
  • Loading branch information
Smorci committed Sep 3, 2024
1 parent 8d340a4 commit 978f576
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,40 @@
# ethereum-node-automation
Automated solution to setup a local network of at least three ethereum nodes

```
kind create cluster --name ethereum-nodes
```

```
flux bootstrap github \
--owner=$GITHUB_USER \
--repository=ethereum-node-automation \
--branch=main \
--path=./clusters/ethereum-node-automation \
--personal
```

```
flux create source git ethereum-node-automation \
--url=https://github.com/Smorci/ethereum-node-automation \
--branch=main \
--interval=1m \
--export > ./clusters/ethereum-node-automation/ethereum-node-automation-source.yaml
```

```
flux create kustomization ethereum-node-automation \
--target-namespace=ethereum-node-automation \
--source=ethereum-node-automation \
--path="./kustomize" \
--prune=true \
--wait=true \
--interval=30m \
--retry-interval=2m \
--health-check-timeout=3m \
--export > ./clusters/ethereum-node-automation/ethereum-node-automation-kustomization.yaml
```

```
flux get kustomizations --watch
```

0 comments on commit 978f576

Please sign in to comment.