forked from kserve/kserve
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #421 from israel-hdez/j9436-kserve014-upgrade
Code sync for upstream v0.14.0
- Loading branch information
Showing
523 changed files
with
242,684 additions
and
35,090 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,16 +7,14 @@ runs: | |
- name: Install kubectl | ||
uses: azure/[email protected] | ||
with: | ||
version: 'v1.27.4' | ||
version: 'v1.29.7' | ||
|
||
- name: Setup Minikube | ||
uses: medyagh/setup-minikube@latest | ||
with: | ||
minikube-version: '1.32.0' | ||
kubernetes-version: 'v1.27.4' | ||
minikube-version: '1.33.1' | ||
kubernetes-version: 'v1.29.7' | ||
driver: 'none' | ||
network-plugin: 'cni' | ||
cni: 'calico' | ||
wait: 'all' | ||
start-args: --wait-timeout=6m0s | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Labels for labeling issues and pull requests using GitHub prow action. | ||
kind: | ||
- 'bug' | ||
- 'discussion' | ||
- 'feature' | ||
- 'process' | ||
- 'question' | ||
|
||
area: | ||
- 'api' | ||
- 'azure' | ||
- 'docs' | ||
- 'example' | ||
- 'gcp' | ||
- 'inference' | ||
- 'infrastructure-feature' | ||
- 'logging' | ||
- 'operator' | ||
- 'performance' | ||
- 'testing' | ||
- 'project-health' | ||
- 'servingruntime' | ||
- 'inferencegraph' | ||
- 'storage' | ||
- 'inferenceservice' | ||
- 'control-plane' | ||
|
||
priority: | ||
- 'p0' | ||
- 'p1' | ||
- 'p2' |
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
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
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
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
95 changes: 95 additions & 0 deletions
95
.github/workflows/kserve-localmodel-controller-docker-publish.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
name: Kserve localmodel controller Docker Publisher | ||
|
||
on: | ||
push: | ||
# Publish `master` as Docker `latest` image. | ||
branches: | ||
- master | ||
|
||
# Publish `v1.2.3` tags as releases. | ||
tags: | ||
- v* | ||
|
||
# Run tests for any PRs. | ||
pull_request: | ||
|
||
env: | ||
IMAGE_NAME: kserve-localmodel-controller | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
# Run tests. | ||
# See also https://docs.docker.com/docker-hub/builds/automated-testing/ | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout source | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run tests | ||
run: | | ||
if [ -f docker-compose.test.yml ]; then | ||
docker-compose --file docker-compose.test.yml build | ||
docker-compose --file docker-compose.test.yml run sut | ||
else | ||
docker buildx build . --file localmodel.Dockerfile | ||
fi | ||
# Push image to GitHub Packages. | ||
# See also https://docs.docker.com/docker-hub/builds/ | ||
push: | ||
# Ensure test job passes before pushing image. | ||
needs: test | ||
|
||
runs-on: ubuntu-latest | ||
if: github.event_name == 'push' | ||
|
||
steps: | ||
- name: Checkout source | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Setup Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKER_USER }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: export version variable | ||
run: | | ||
IMAGE_ID=kserve/$IMAGE_NAME | ||
# Change all uppercase to lowercase | ||
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]') | ||
# Strip git ref prefix from version | ||
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,') | ||
# Strip "v" prefix from tag name | ||
# [[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//') | ||
# Use Docker `latest` tag convention | ||
[ "$VERSION" == "master" ] && VERSION=latest | ||
echo VERSION=$VERSION >> $GITHUB_ENV | ||
echo IMAGE_ID=$IMAGE_ID >> $GITHUB_ENV | ||
- name: Build and push | ||
uses: docker/build-push-action@v5 | ||
with: | ||
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8,linux/ppc64le,linux/s390x | ||
context: . | ||
file: localmodel.Dockerfile | ||
push: true | ||
tags: ${{ env.IMAGE_ID }}:${{ env.VERSION }} | ||
# https://github.com/docker/buildx/issues/1533 | ||
provenance: false |
Oops, something went wrong.