Skip to content

feat(sks): add kubelet-max-pods support to nodepools #384

feat(sks): add kubelet-max-pods support to nodepools

feat(sks): add kubelet-max-pods support to nodepools #384

Workflow file for this run

name: CI
on:
pull_request:
workflow_dispatch:
jobs:
test-e2e-without-api:
name: Run E2E (Testscript) Tests / Without API
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Set up Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: "go.mod"
- name: Build binary
run: make build
- name: Run E2E (Testscript) Tests / Without API
run: |
cd tests/e2e
go test -v
test-e2e-with-api:
name: Run E2E (Testscript) Tests / With API / ${{ matrix.suite }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- suite: compute
run: TestScriptsAPICompute
- suite: dbaas
run: TestScriptsAPIDBaaS
- suite: storage
run: TestScriptsAPIStorage
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Set up Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: "go.mod"
- name: Build binary
run: make build
- name: Run E2E (Testscript) Tests / With API / ${{ matrix.suite }}
env:
EXOSCALE_API_KEY: ${{ secrets.EXOSCALE_API_KEY }}
EXOSCALE_API_SECRET: ${{ secrets.EXOSCALE_API_SECRET }}
EXOSCALE_ZONE: ch-gva-2
run: |
cd tests/e2e
go test -v -tags=api -timeout 30m -run "${{ matrix.run }}" 2>&1