Fix: Fix a bug when the hostname label of a node does not match the node name, pods bound to a PV with nodeAffinity using the hostname may be scheduled to the wrong node or experience scheduling failures. #7310
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: FOSSA | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: 1.22.x | |
- run: go version | |
# Runs a set of commands to initialize and analyze with FOSSA | |
- name: run FOSSA analysis | |
env: | |
# FOSSA Push-Only API Token | |
FOSSA_API_KEY: '1a92b8d8ee4304c0ad85a726b9e9acab' | |
BINDIR: /home/runner/work/volcano/volcano | |
run: | | |
export GOPATH=$HOME/go | |
export PATH=$PATH:$(go env GOPATH)/bin | |
curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | bash -s -- -b /home/runner/work/volcano/volcano | |
/home/runner/work/volcano/volcano/fossa init | |
/home/runner/work/volcano/volcano/fossa analyze |