Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions spartan/aztec-network/templates/transaction-bot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ metadata:
name: {{ include "aztec-network.fullname" . }}-bot
labels:
app: {{- include "aztec-network.labels" . | nindent 4 }}
{{- if .Values.network.setupL2Contracts }}
annotations:
"helm.sh/hook": post-install
"helm.sh/hook-weight": "10"
"helm.sh/hook-delete-policy": before-hook-creation
{{- end }}
spec:
replicas: {{ .Values.bot.replicas }}
selector:
Expand Down
2 changes: 1 addition & 1 deletion spartan/aztec-network/values/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ethereum:
cpu: "200m"

telemetry:
enabled: true
enabled: false

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ahh I've been using ci.yaml locally for its metrics


validator:
replicas: 4
Expand Down
6 changes: 1 addition & 5 deletions spartan/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,19 +119,15 @@ case "$cmd" in
./scripts/test_kind.sh src/spartan/smoke.test.ts ci-smoke.yaml smoke${NAME_POSTFIX:-}
;;
"test-kind-4epochs")
# TODO(#12163) reenable bot once not conflicting with transfer
OVERRIDES="bot.enabled=false" \
FRESH_INSTALL=${FRESH_INSTALL:-true} INSTALL_METRICS=false \
./scripts/test_kind.sh src/spartan/4epochs.test.ts ci.yaml four-epochs${NAME_POSTFIX:-}
;;
"test-kind-transfer")
# TODO(#12163) reenable bot once not conflicting with transfer
OVERRIDES="blobSink.enabled=true,bot.enabled=false" \
FRESH_INSTALL=${FRESH_INSTALL:-true} INSTALL_METRICS=false \
./scripts/test_kind.sh src/spartan/transfer.test.ts ci.yaml transfer${NAME_POSTFIX:-}
;;
"test-kind-upgrade-rollup-version")
OVERRIDES="bot.enabled=false,ethereum.acceleratedTestDeployments=false" \
OVERRIDES="ethereum.acceleratedTestDeployments=false" \
FRESH_INSTALL=${FRESH_INSTALL:-true} INSTALL_METRICS=false \
./scripts/test_kind.sh src/spartan/upgrade_rollup_version.test.ts ci.yaml upgrade-rollup-version${NAME_POSTFIX:-}
;;
Expand Down