Skip to content

Commit 996d921

Browse files
authored
chore: faucet LB if public, proving devnet (#10665)
1 parent eb5f18a commit 996d921

File tree

3 files changed

+25
-15
lines changed

3 files changed

+25
-15
lines changed

spartan/aztec-network/templates/faucet.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,12 @@ metadata:
114114
labels:
115115
{{- include "aztec-network.labels" . | nindent 4 }}
116116
spec:
117+
{{- if .Values.network.public }}
118+
type: LoadBalancer
119+
{{- else }}
117120
type: ClusterIP
121+
clusterIP: None
122+
{{- end }}
118123
selector:
119124
{{- include "aztec-network.selectorLabels" . | nindent 4 }}
120125
app: faucet

spartan/aztec-network/values/release-devnet.yaml

+10-12
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
1-
##########
2-
# BEWARE #
3-
##########
4-
# You need to deploy the metrics helm chart before using this values file.
5-
# head to spartan/metrics and run `./install.sh`
6-
# (then `./forward.sh` if you want to see it)
71
telemetry:
82
enabled: true
3+
otelCollectorEndpoint: http://35.197.100.168:4318
94

105
validator:
116
replicas: 1
@@ -20,13 +15,16 @@ bootNode:
2015
validator:
2116
disabled: true
2217

23-
# use small provers to produce fake proofs
2418
proverAgent:
25-
replicas: 1
19+
replicas: 24
20+
bb:
21+
hardwareConcurrency: 31
22+
gke:
23+
spotEnabled: true
2624
resources:
2725
requests:
28-
memory: "4Gi"
29-
cpu: "1"
26+
memory: "116Gi"
27+
cpu: "31"
3028

3129
bot:
3230
followChain: "PENDING"
@@ -43,8 +41,8 @@ images:
4341
aztec:
4442
slotDuration: 36
4543
epochDuration: 32
46-
realProofs: false # devnet does not use real proofs
44+
realProofs: true
4745

4846
jobs:
4947
deployL1Verifier:
50-
enable: false
48+
enable: true

yarn-project/cli/src/cmds/devnet/bootstrap_network.ts

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
import { getSchnorrAccount } from '@aztec/accounts/schnorr';
2-
import { BatchCall, type PXE, type WaitOpts, type Wallet, createCompatibleClient, retryUntil } from '@aztec/aztec.js';
3-
import { L1FeeJuicePortalManager } from '@aztec/aztec.js';
2+
import {
3+
BatchCall,
4+
L1FeeJuicePortalManager,
5+
type PXE,
6+
type WaitOpts,
7+
type Wallet,
8+
createCompatibleClient,
9+
retryUntil,
10+
} from '@aztec/aztec.js';
411
import { type AztecAddress, type EthAddress, FEE_FUNDING_FOR_TESTER_ACCOUNT, Fq, Fr } from '@aztec/circuits.js';
512
import {
613
type ContractArtifacts,
@@ -22,7 +29,7 @@ type ContractDeploymentInfo = {
2229

2330
const waitOpts: WaitOpts = {
2431
timeout: 120,
25-
provenTimeout: 1200,
32+
provenTimeout: 2400,
2633
interval: 1,
2734
};
2835

0 commit comments

Comments
 (0)