[Snyk] Fix for 4 vulnerabilities #143
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: KFP Samples | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| paths: | |
| - '.github/resources/**' | |
| - '.github/workflows/kfp-samples.yml' | |
| - '.github/workflows/kubeflow-pipelines-integration-v2.yml' | |
| - 'api/**' | |
| - 'backend/**' | |
| - 'samples/**' | |
| - 'samples/core/dataflow/**' | |
| - 'samples/core/parameterized_tfx_oss/**' | |
| - '!**/*.md' | |
| - '!**/OWNERS' | |
| jobs: | |
| samples: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| k8s_version: [ "v1.29.2", "v1.31.0" ] | |
| name: KFP Samples - K8s ${{ matrix.k8s_version }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.9 | |
| - name: Free up space in /dev/root | |
| run: | | |
| echo "Disk usage before clean up:" | |
| df -h | |
| sudo rm -rf /usr/share/dotnet | |
| sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
| sudo rm -rf /usr/share/dotnet | |
| sudo rm -rf /opt/ghc | |
| sudo rm -rf /usr/local/share/boost | |
| sudo rm -rf /usr/local/lib/android | |
| sudo rm -rf /usr/local/.ghcup | |
| sudo rm -rf /usr/share/swift | |
| sudo rm -rf /opt/hostedtoolcache/CodeQL || true | |
| sudo rm -rf /opt/hostedtoolcache/Java_* || true | |
| sudo rm -rf /opt/hostedtoolcache/Ruby || true | |
| sudo rm -rf /opt/hostedtoolcache/PyPy || true | |
| sudo rm -rf /opt/hostedtoolcache/boost || true | |
| docker system prune -af --volumes | |
| docker image prune -af | |
| echo "Disk usage after clean up:" | |
| df -h | |
| - name: Create KFP cluster | |
| id: create-kfp-cluster | |
| uses: ./.github/actions/kfp-cluster | |
| with: | |
| k8s_version: ${{ matrix.k8s_version }} | |
| continue-on-error: true | |
| - name: Build and upload the sample Modelcar image to Kind | |
| id: build-sample-modelcar-image | |
| if: ${{ steps.create-kfp-cluster.outcome == 'success' }} | |
| run: | | |
| docker build -f samples/v2/modelcar/Dockerfile -t registry.domain.local/modelcar:test . | |
| kind --name kfp load docker-image registry.domain.local/modelcar:test | |
| continue-on-error: true | |
| - name: Forward API port | |
| id: forward-api-port | |
| if: ${{ steps.build-sample-modelcar-image.outcome == 'success' }} | |
| run: ./.github/resources/scripts/forward-port.sh "kubeflow" "ml-pipeline" 8888 8888 | |
| continue-on-error: true | |
| - name: Install protobuf dependencies & kfp-pipeline-spec | |
| id: install-protobuf-deps | |
| uses: ./.github/actions/protobuf | |
| - name: Install kfp & kfp-kubernetes from source | |
| id: install-kfp-k8s-deps | |
| uses: ./.github/actions/kfp-k8s | |
| - name: Run Samples Tests | |
| id: tests | |
| if: ${{ steps.forward-api-port.outcome == 'success' }} | |
| run: | | |
| python3 -u ./samples/v2/sample_test.py | |
| continue-on-error: true | |
| - name: Collect failed logs | |
| if: ${{ steps.create-kfp-cluster.outcome != 'success' || steps.forward-api-port.outcome != 'success' || steps.tests.outcome != 'success' }} | |
| run: | | |
| ./.github/resources/scripts/collect-logs.sh --ns kubeflow --output /tmp/tmp_pod_log.txt | |
| exit 1 | |
| - name: Collect test results | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: kfp-samples-tests-artifacts-k8s-${{ matrix.k8s_version }} | |
| path: /tmp/tmp*/* |