-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add more kind readme, added example values for optimism goerli, updat…
…e version for helm
- Loading branch information
Showing
12 changed files
with
83 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Settings for Optimism Goerli | ||
image: | ||
repository: testinprod/op-erigon | ||
tag: latest | ||
|
||
importTarURL: https://op-erigon-backup.goerli.testinprod.io | ||
maxPeers: 0 | ||
networkID: 420 | ||
|
||
# op-erigon specific | ||
args: ["--rollup.historicalrpc=https://goerli.optimism.io", | ||
"--rollup.sequencerhttp=https://goerli-sequencer.optimism.io", | ||
"--nodiscover", "--externalcl"] | ||
|
||
authrpc: | ||
jwtSecret: | ||
file: # TODO: generate a jwtSecret for the EngineAPI with the following command: `openssl rand -hex 32`. | ||
|
||
persistence: | ||
size: 100Gi | ||
predefinedNetwork: | ||
|
||
resources: {"requests": {"cpu": 2, "memory": "4Gi"}} |
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 @@ | ||
# optimism goerli | ||
image: | ||
repository: ethereumoptimism/op-geth | ||
tag: latest | ||
|
||
importTarURL: https://storage.googleapis.com/oplabs-goerli-data/goerli-bedrock.tar | ||
syncMode: full | ||
maxPeers: 0 | ||
networkID: | ||
|
||
# op-geth specific | ||
args: ["--rollup.disabletxpoolgossip=true", "--rollup.sequencerhttp=https://goerli-sequencer.optimism.io", | ||
"--nodiscover", "--allow-insecure-unlock"] | ||
|
||
authrpc: | ||
jwtSecret: | ||
file: # TODO: generate a jwtSecret for the EngineAPI with the following command: `openssl rand -hex 32`. | ||
|
||
persistence: | ||
size: 300Gi | ||
predefinedNetwork: | ||
|
||
resources: {"requests": {"cpu": 2, "memory": "4Gi"}} |
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,15 @@ | ||
l2: | ||
rpcAddr: # TODO: place your execution client's RPC address including https:// or wss:// | ||
jwtSecret: | ||
file: # TODO: place your execution client's jwtSecret here | ||
|
||
p2p: | ||
priv: | ||
file: # TODO: generate your private key for p2p communication with other clients with the following command: `openssl rand -hex 32`. | ||
|
||
l1: | ||
rpcAddr: # TODO: place the L1 RPC address including https:// or wss:// | ||
|
||
resources: {"requests": {"cpu": 2, "memory": "4Gi"}} | ||
|
||
args: ["--p2p.sync.req-resp"] # This is an experimental p2p sync feature. It helps blazing-fast node sync. |
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