Skip to content

Commit d402413

Browse files
authored
chore: fix next rc 1 (#17040)
<img width="889" height="110" alt="image" src="https://github.com/user-attachments/assets/0ce6fa57-0ae1-41a8-8856-e550b742bab8" />
2 parents 9e0ce5a + 1d16f76 commit d402413

File tree

14 files changed

+8
-187
lines changed

14 files changed

+8
-187
lines changed

.github/workflows/nightly-nextnet-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
needs: get-latest-tag
4141
uses: ./.github/workflows/network-deploy.yml
4242
with:
43-
ref: next
43+
ref: ${{ github.ref }}
4444
cluster: aztec-gke-private
4545
namespace: next-rc-1
4646
values_file: rc-1.yaml

spartan/aztec-network/files/config/deploy-l1-contracts.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ FLUSH_ENTRY_QUEUE_ARG="--flush-entry-queue"
7171

7272
for attempt in $(seq 1 $MAX_RETRIES); do
7373
# Construct base command
74-
base_cmd="LOG_LEVEL=debug node --no-warnings /usr/src/yarn-project/aztec/dest/bin/index.js deploy-l1-contracts $TEST_ACCOUNTS_ARG $ACCELERATED_TEST_DEPLOYMENTS_ARG $SPONSORED_FPC_ARG $REAL_VERIFIER_ARG $FLUSH_ENTRY_QUEUE"
74+
base_cmd="LOG_LEVEL=debug node --no-warnings /usr/src/yarn-project/aztec/dest/bin/index.js deploy-l1-contracts $TEST_ACCOUNTS_ARG $ACCELERATED_TEST_DEPLOYMENTS_ARG $SPONSORED_FPC_ARG $REAL_VERIFIER_ARG $FLUSH_ENTRY_QUEUE_ARG"
7575

7676
# Add account - use private key if set, otherwise use mnemonic
7777
if [ -n "${L1_DEPLOYMENT_PRIVATE_KEY:-}" ]; then

spartan/aztec-network/files/config/setup-attester-keystore.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,9 @@ publishers=()
6565
if [ -n "$WEB3_SIGNER_URL" ]; then
6666
remoteSigner=$(jq -n '{remoteSignerUrl: $url}' --arg url "$WEB3_SIGNER_URL")
6767
attesters=(${addresses[*]})
68-
# With web3signer, use addresses for publishers too
69-
publishers=(${publisher_addresses[*]})
68+
# TODO: use addresses here when web3signer supports EIP-4844 txs. See PR https://github.com/Consensys/web3signer/pull/1096
69+
# publishers=(${publisher_addresses[*]})
70+
publishers=(${publisher_private_keys[*]})
7071
else
7172
remoteSigner="null"
7273
attesters=(${private_keys[*]})

spartan/aztec-network/resources/default.yaml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,6 @@ blobSink:
7171
memory: "512Mi"
7272
cpu: "500m"
7373

74-
faucet:
75-
resources:
76-
requests:
77-
memory: "512Mi"
78-
cpu: "200m"
79-
limits:
80-
memory: "512Mi"
81-
cpu: "200m"
82-
8374
ethereum:
8475
execution:
8576
resources:

spartan/aztec-network/resources/gcloud.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,6 @@ proverBroker:
4444
blobSink:
4545
resources:
4646

47-
faucet:
48-
resources:
49-
requests:
50-
memory: "2Gi"
51-
cpu: "200m"
52-
5347
ethereum:
5448
execution:
5549
resources:

spartan/aztec-network/resources/mainframe.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,6 @@ proverBroker:
4343
blobSink:
4444
resources:
4545

46-
faucet:
47-
resources:
48-
requests:
49-
memory: "2Gi"
50-
cpu: "200m"
51-
5246
ethereum:
5347
execution:
5448
resources:

spartan/aztec-network/templates/faucet.yaml

Lines changed: 0 additions & 138 deletions
This file was deleted.

spartan/aztec-network/values.yaml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -423,12 +423,3 @@ blobSink:
423423
storageSize: "8Gi"
424424
dataStoreMapSize: "134217728" # 128 GB
425425

426-
faucet:
427-
enabled: true
428-
replicas: 1
429-
service:
430-
nodePort: 8085
431-
apiServerPort: 8086
432-
addressIndex: 0
433-
l1Assets: ""
434-
logLevel: ""

spartan/aztec-network/values/archival-node.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,5 @@ proverBroker:
6868
pxe:
6969
enabled: false
7070

71-
faucet:
72-
enabled: false
73-
7471
bot:
7572
enabled: false

spartan/aztec-network/values/ignition-reth.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ bot:
1010
pxe:
1111
enabled: false
1212

13-
faucet:
14-
enabled: false
15-
1613
validator:
1714
replicas: 3
1815
sequencer:

0 commit comments

Comments
 (0)