Skip to content

Commit

Permalink
fix: CI kind test fix (#10932)
Browse files Browse the repository at this point in the history
Please read [contributing guidelines](CONTRIBUTING.md) and remove this
line.
  • Loading branch information
PhilWindle authored Dec 22, 2024
1 parent 145122b commit bda1ac7
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 2 deletions.
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"

0 comments on commit bda1ac7

Please sign in to comment.