feat: enable kueue integration by ensuing that labels added to Notebooks are propogated to the underlying StatefulSet #76
Workflow file for this run
This file contains hidden or 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: Notebook Controller Multi-Arch Build Test | |
| on: | |
| pull_request: | |
| paths: | |
| - components/notebook-controller/** | |
| - releasing/version/VERSION | |
| branches: | |
| - main | |
| - notebooks-v1 | |
| - v*-branch | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.number }} | |
| cancel-in-progress: true | |
| env: | |
| IMG: ghcr.io/kubeflow/notebooks/notebook-controller | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Setup Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build multi-arch Image | |
| run: | | |
| cd components/notebook-controller | |
| ARCH=linux/amd64 make docker-build-multi-arch | |
| ARCH=linux/ppc64le make docker-build-multi-arch | |
| ARCH=linux/arm64/v8 make docker-build-multi-arch |