-
Notifications
You must be signed in to change notification settings - Fork 609
chore: values for sepolia deployment #10362
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
Merged
Merged
Changes from 10 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
c33c122
squash commits
spypsy d9cab7b
resolve conflicts
spypsy d049c0e
some missed changes
spypsy 02fcc11
update network_test
spypsy 6141a50
Merge branch 'master' into spy/sepolia-spartan-updates
spypsy 97d1248
apparently conflicts
spypsy c5e0e7c
undo irrelevant changes
spypsy 9633ab9
undo change
spypsy b9dc642
merge conflicts
spypsy 9cc7cc9
github actions
spypsy fe15b83
revert comment
spypsy 9216a74
formatting ig
spypsy 44c375c
set externalHost + 20sec bot interval
spypsy cb9f57e
merge conflicts
spypsy 37d3d38
correctly pass list to helm release
spypsy 1eca57d
Merge branch 'master' into spy/sepolia-spartan-updates
spypsy 6e08c18
sepolia-exp-1
spypsy afefb5f
bootstrap sepolia
spypsy 3717fb1
quote-wrap mnemonic
spypsy dc983f9
safer quote wrapping
spypsy bf04092
use eval
spypsy 6ab38e3
Merge branch 'master' into spy/sepolia-spartan-updates
spypsy ca4e910
just check for externalHost
spypsy 5debe14
PR Fixes
spypsy e3b8a7d
consider more empty sepolia vars
spypsy 281ce7e
restore default prover publisher pk
spypsy be47200
exp-2.yaml
spypsy 21bce8c
guard all pk & mnemonic vars
spypsy d72d954
more tf var defaults
spypsy 2be454b
Merge branch 'master' into spy/sepolia-spartan-updates
spypsy 49ee379
Merge branch 'master' into spy/sepolia-spartan-updates
spypsy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -322,4 +322,4 @@ | |
| "flagWords": [ | ||
| "anonymous" | ||
| ] | ||
| } | ||
| } | ||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| {{- if not .Values.network.disableEthNode }} | ||
|
Collaborator
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. instead of adding a new flag, could this be replaced by checking if .Values.ethereum.externalHost is set? If we wanted a flag, we could create a helper based off checking that value? |
||
| apiVersion: apps/v1 | ||
| kind: Deployment | ||
| metadata: | ||
|
|
@@ -135,4 +136,5 @@ spec: | |
| requests: | ||
| storage: {{ .Values.ethereum.storage }} | ||
| {{- end }} | ||
| --- | ||
| --- | ||
| {{ end }} | ||
This file contains hidden or 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 hidden or 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
30 changes: 30 additions & 0 deletions
30
spartan/aztec-network/values/sepolia-3-validators-with-metrics.yaml
This file contains hidden or 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,30 @@ | ||
| telemetry: | ||
| enabled: true | ||
| otelCollectorEndpoint: http://metrics-opentelemetry-collector.metrics:4318 | ||
|
|
||
| network: | ||
| setupL2Contracts: false | ||
| disableEthNode: true | ||
| public: false | ||
|
|
||
| ethereum: | ||
| externalHost: "https://sepolia.infura.io/v3/${INFURA_API_KEY}" | ||
| chainId: "11155111" | ||
|
|
||
| validator: | ||
| replicas: 3 | ||
| validatorKeys: | ||
| validatorAddresses: | ||
| - 0xB5221f3FA03acDEA5A68e355CcDed3f76847F375 | ||
| - 0x226E9D4c69525884b0A52C1E9E4C11054729223e | ||
| - 0xA33Fa6E2890C37C42CFC0875B86462E73885e02b | ||
| validator: | ||
| disabled: false | ||
|
|
||
| bootNode: | ||
| seqPublisherPrivateKey: | ||
| validator: | ||
| disabled: true | ||
|
|
||
| proverNode: | ||
| proverPublisherPrivateKey: |
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Sorry about this one. Hope you didn't lose much time.