diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6b60b35f102a..9bf188fd326f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 }} @@ -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] diff --git a/spartan/aztec-network/values/ci-smoke.yaml b/spartan/aztec-network/values/ci-smoke.yaml new file mode 100644 index 000000000000..4d6cc4ad481b --- /dev/null +++ b/spartan/aztec-network/values/ci-smoke.yaml @@ -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" diff --git a/spartan/aztec-network/values/ci.yaml b/spartan/aztec-network/values/ci.yaml index 500b73076c82..caedad70d8aa 100644 --- a/spartan/aztec-network/values/ci.yaml +++ b/spartan/aztec-network/values/ci.yaml @@ -5,6 +5,10 @@ aztec: ethereum: blockTime: 8sec + resources: + requests: + memory: "2Gi" + cpu: "200m" telemetry: enabled: true @@ -32,6 +36,7 @@ validator: resources: requests: memory: "512Mi" + cpu: "200m" validator: disabled: false sequencer: @@ -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"