Add workload type characteristics and default max latency values (#1889) #2060
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: Test CSI | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| paths-ignore: | |
| - "LICENSE*" | |
| - "**.gitignore" | |
| - "**.md" | |
| - "**.txt" | |
| - ".github/ISSUE_TEMPLATE/**" | |
| - ".github/dependabot.yml" | |
| - "docs/**" | |
| pull_request: | |
| paths: | |
| - "cmd/csi/**" | |
| - ".github/workflows/**" | |
| - "internal/csi/**" | |
| - "internal/server/openapi/api_model_registry_service*" | |
| - "pkg/openapi/**" | |
| # csi build depends on base go.mod https://github.com/kubeflow/model-registry/issues/311 | |
| - "go.mod" | |
| permissions: # set contents: read at top-level, per OpenSSF ScoreCard rule TokenPermissionsID | |
| contents: read | |
| env: | |
| IMG_REGISTRY: ghcr.io | |
| IMG_ORG: kubeflow | |
| MODEL_REGISTRY_IMG: model-registry/server | |
| MODEL_REGISTRY_CSI_IMG: model-registry/storage-initializer | |
| PUSH_IMAGE: false | |
| BRANCH: ${{ github.base_ref }} | |
| jobs: | |
| build-and-test-csi-image: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Generate tag | |
| shell: bash | |
| id: tags | |
| run: | | |
| commit_sha=${{ github.event.after }} | |
| tag=main-${commit_sha:0:7} | |
| echo "tag=${tag}" >> $GITHUB_OUTPUT | |
| - name: Install network tools | |
| run: sudo apt-get update && sudo apt-get install -y netcat-openbsd jq | |
| - name: Install Helm | |
| uses: azure/setup-helm@v4 | |
| with: | |
| version: 'v3.14.0' | |
| - name: Build local model registry image | |
| shell: bash | |
| env: | |
| IMG_REPO: ${{ env.MODEL_REGISTRY_IMG }} | |
| VERSION: ${{ steps.tags.outputs.tag }} | |
| PUSH_IMAGE: false | |
| run: ./scripts/build_deploy.sh | |
| - name: Build local custom storage initializer | |
| shell: bash | |
| env: | |
| IMG_REPO: ${{ env.MODEL_REGISTRY_CSI_IMG }} | |
| IMG_VERSION: ${{ steps.tags.outputs.tag }} | |
| run: make image/build | |
| - name: Start KinD cluster | |
| uses: helm/[email protected] | |
| with: | |
| node_image: "kindest/node:v1.31.0" | |
| - name: Remove AppArmor profile for mysql in KinD on GHA # https://github.com/kubeflow/manifests/issues/2507 | |
| run: | | |
| set -x | |
| sudo apparmor_parser -R /etc/apparmor.d/usr.sbin.mysqld | |
| - name: Install kustomize | |
| run: ./test/scripts/install_kustomize.sh | |
| - name: Run tests | |
| shell: bash | |
| env: | |
| MR_IMG: "${{ env.IMG_REGISTRY }}/${{ env.IMG_ORG }}/${{ env.MODEL_REGISTRY_IMG }}:${{ steps.tags.outputs.tag }}" | |
| MR_CSI_IMG: "${{ env.IMG_REGISTRY }}/${{ env.IMG_ORG }}/${{ env.MODEL_REGISTRY_CSI_IMG }}:${{ steps.tags.outputs.tag }}" | |
| CLUSTER: chart-testing | |
| run: ./test/csi/e2e_test.sh |