Support running e2e tests on AWS #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: E2E Tests | |
on: | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
run-e2e-tests: | |
name: Run E2E Tests | |
runs-on: [self-hosted, large, X64, linux, jammy] | |
strategy: | |
matrix: | |
ginkgo_focus: | |
#- "KCP remediation" | |
#- "MachineDeployment remediation" | |
- "Workload cluster creation" | |
#- "Workload cluster scaling" | |
#- "Workload cluster upgrade" | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v4 | |
- name: Setup tmate session | |
uses: mxschmitt/action-tmate@v3 | |
with: | |
detached: true | |
- name: Install requirements | |
run: | | |
sudo apt install make | |
sudo apt install wget | |
- name: Increase inotify watches | |
run: | | |
# Prevents https://cluster-api.sigs.k8s.io/user/troubleshooting#cluster-api-with-docker----too-many-open-files | |
sudo sysctl fs.inotify.max_user_watches=1048576 | |
sudo sysctl fs.inotify.max_user_instances=8192 | |
- name: Run e2e tests | |
run: | | |
sudo -E ./hack/ci-e2e-tests.sh true aws v0.1.2 | |
env: | |
GOPROXY: direct | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} | |
AWS_B64ENCODED_CREDENTIALS: ${{ secrets.AWS_B64ENCODED_CREDENTIALS }} | |
AWS_REGION: us-east-2 |