The autoscaler does not scale node groups on non-amd64 clusters when pods explicitly require non-amd64 nodes in node affinity #5005
Workflow file for this run
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: Tests | |
on: | |
- push | |
- pull_request | |
env: | |
GOPATH: ${{ github.workspace }}/go | |
permissions: | |
contents: read | |
jobs: | |
test-and-verify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '>=1.20.0' | |
- uses: actions/checkout@v2 | |
with: | |
path: ${{ env.GOPATH }}/src/k8s.io/autoscaler | |
- name: Apt-get | |
run: sudo apt-get install libseccomp-dev -qq | |
- name: Prepare | |
working-directory: ${{ env.GOPATH }}/src/k8s.io/autoscaler | |
run: hack/install-verify-tools.sh | |
env: | |
GO111MODULE: auto | |
- name: Verify | |
working-directory: ${{ env.GOPATH }}/src/k8s.io/autoscaler | |
run: hack/verify-all.sh -v | |
env: | |
GO111MODULE: auto | |
- name: Test | |
working-directory: ${{ env.GOPATH }}/src/k8s.io/autoscaler | |
run: hack/for-go-proj.sh test | |
env: | |
GO111MODULE: auto |