-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2f88471
commit a4bb621
Showing
27 changed files
with
538 additions
and
205 deletions.
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
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
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
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,23 @@ | ||
backends: | ||
{{ range $elem := until .Values.scaling.deployments }} | ||
{{ $scalingIndex := (add $elem 1) }} | ||
arbitrum-nitro-{{ $scalingIndex }}: | ||
enabled: true | ||
# -- Define the RPC URL for the backend | ||
rpcUrl: http://arbitrum-nitro-{{ $scalingIndex }}:8547 | ||
# -- Define additional configuration keys for the backend (see [proxyd config](https://github.com/ethereum-optimism/optimism/blob/5d309e6a6d5e1ef6a88c1ce827b7e6d47f033bbb/proxyd/example.config.toml#L47)) | ||
extraConfig: | ||
consensus_skip_peer_count: true | ||
# -- Define which backend groups the backend is part of | ||
groups: | ||
- pruned | ||
- archive | ||
- archive-trace | ||
{{ end }} | ||
|
||
prometheus: | ||
serviceMonitors: | ||
enabled: true | ||
|
||
grafana: | ||
dashboards: true |
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,19 @@ | ||
nitro: | ||
config: | ||
parentChainUrl: http://your-eth-goerli-url:8545 ## changeme | ||
chain: 421613 # determines Arbitrum network - 421613 Goerli | ||
|
||
# -- [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for Erigon storage | ||
volumeClaimSpec: | ||
resources: | ||
requests: | ||
# -- The amount of disk space to provision for Erigon | ||
storage: 3Ti | ||
|
||
extraLabels: | ||
app.kubernetes.io/workload-type: blockchain-stateful | ||
app.kubernetes.io/blockchain: arbitrum-goerli-nitro | ||
|
||
restoreSnapshot: | ||
enabled: true | ||
snapshotUrl: "https://snapshot.arbitrum.foundation/goerli/nitro-archive.tar" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{{ $scalingIndex := splitList "-" .Release.Name | last }} | ||
nitro: | ||
config: | ||
parentChainUrl: http://your-eth-mainnet-url:8545 ## changeme | ||
classicUrl: http://arbitrum-classic-{{ $scalingIndex }}-0:8547 | ||
chain: 42161 | ||
|
||
restoreSnapshot: | ||
enabled: true | ||
snapshotUrl: "https://snapshot.arbitrum.foundation/arb1/nitro-archive.tar" |
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,18 @@ | ||
nitro: | ||
config: | ||
chain: 421614 # determines Arbitrum network - 421614 Sepolia | ||
parentChainUrl: http://your-eth-sepolia-url:8545 ## changeme | ||
|
||
# -- [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for Erigon storage | ||
volumeClaimSpec: | ||
resources: | ||
requests: | ||
# -- The amount of disk space to provision for Erigon | ||
storage: 1Ti | ||
|
||
extraLabels: | ||
app.kubernetes.io/workload-type: blockchain-stateful | ||
app.kubernetes.io/blockchain: arbitrum-sepolia-nitro | ||
|
||
restoreSnapshot: | ||
enabled: false |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.