Skip to content
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

fix: CI kind test fix #10932

Merged
merged 2 commits into from
Dec 22, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,8 @@ jobs:
with:
runner_type: builder-x86
username: ${{ needs.configure.outputs.username }}
run: scripts/earthly-ci +docs-with-cache --ENV=staging --PR=${{ github.event.number }} \
run:
scripts/earthly-ci +docs-with-cache --ENV=staging --PR=${{ github.event.number }} \
--AZTEC_BOT_COMMENTER_GITHUB_TOKEN=${{ secrets.AZTEC_BOT_GITHUB_TOKEN }} \
--NETLIFY_AUTH_TOKEN=${{ secrets.NETLIFY_AUTH_TOKEN }} \
--NETLIFY_SITE_ID=${{ secrets.NETLIFY_SITE_ID }}
Expand Down Expand Up @@ -402,7 +403,7 @@ jobs:
docker pull aztecprotocol/end-to-end:${{ env.GIT_COMMIT }}
echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u aztecprotocolci --password-stdin
cd yarn-project/end-to-end
NAMESPACE=smoke FRESH_INSTALL=true VALUES_FILE=default.yaml ./scripts/network_test.sh ./src/spartan/smoke.test.ts
NAMESPACE=smoke FRESH_INSTALL=true VALUES_FILE=ci-smoke.yaml ./scripts/network_test.sh ./src/spartan/smoke.test.ts

kind-network-test:
needs: [images-e2e, configure]
Expand Down
47 changes: 47 additions & 0 deletions spartan/aztec-network/values/ci-smoke.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
bootNode:
resources:
requests:
memory: "2Gi"
cpu: "200m"

validator:
resources:
requests:
memory: "512Mi"
cpu: "200m"

proverNode:
resources:
requests:
memory: "2Gi"
cpu: "200m"

pxe:
resources:
requests:
memory: "2Gi"
cpu: "200m"

bot:
resources:
requests:
memory: "2Gi"
cpu: "200m"

ethereum:
resources:
requests:
memory: "2Gi"
cpu: "200m"

proverAgent:
resources:
requests:
memory: "2Gi"
cpu: "200m"

proverBroker:
resources:
requests:
memory: "2Gi"
cpu: "200m"
27 changes: 27 additions & 0 deletions spartan/aztec-network/values/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ aztec:

ethereum:
blockTime: 8sec
resources:
requests:
memory: "2Gi"
cpu: "200m"

telemetry:
enabled: true
Expand Down Expand Up @@ -32,6 +36,7 @@ validator:
resources:
requests:
memory: "512Mi"
cpu: "200m"
validator:
disabled: false
sequencer:
Expand All @@ -45,3 +50,25 @@ bot:
bootNode:
validator:
disabled: true
resources:
requests:
memory: "2Gi"
cpu: "200m"

proverAgent:
resources:
requests:
memory: "2Gi"
cpu: "200m"

proverBroker:
resources:
requests:
memory: "2Gi"
cpu: "200m"

proverNode:
resources:
requests:
memory: "2Gi"
cpu: "200m"
Loading