forked from kubeflow/model-registry
-
Notifications
You must be signed in to change notification settings - Fork 8
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 #99 from tarilabs/tarilabs-20240725-periodicSync
periodic sync upstream KF to midstream ODH
- Loading branch information
Showing
22 changed files
with
1,215 additions
and
503 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 |
---|---|---|
@@ -0,0 +1,82 @@ | ||
name: CSI container image build and tag | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
tags: | ||
- 'v*' | ||
paths-ignore: | ||
- 'LICENSE*' | ||
- '**.gitignore' | ||
- '**.md' | ||
- '**.txt' | ||
- '.github/ISSUE_TEMPLATE/**' | ||
- '.github/dependabot.yml' | ||
- 'docs/**' | ||
env: | ||
IMG_ORG: opendatahub | ||
IMG_REPO: model-registry-storage-initializer | ||
DOCKER_USER: ${{ secrets.DOCKERHUB_USERNAME }} | ||
DOCKER_PWD: ${{ secrets.DOCKERHUB_TOKEN }} | ||
PUSH_IMAGE: true | ||
jobs: | ||
build-csi-image: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Assign context variable for various action contexts (tag, main, CI) | ||
- name: Assigning tag context | ||
if: github.head_ref == '' && startsWith(github.ref, 'refs/tags/v') | ||
run: echo "BUILD_CONTEXT=tag" >> $GITHUB_ENV | ||
- name: Assigning main context | ||
if: github.head_ref == '' && github.ref == 'refs/heads/main' | ||
run: echo "BUILD_CONTEXT=main" >> $GITHUB_ENV | ||
# checkout branch | ||
- uses: actions/checkout@v4 | ||
# set image version | ||
- name: Set main-branch environment | ||
if: env.BUILD_CONTEXT == 'main' | ||
run: | | ||
commit_sha=${{ github.event.after }} | ||
tag=main-${commit_sha:0:7} | ||
echo "VERSION=${tag}" >> $GITHUB_ENV | ||
- name: Set tag environment | ||
if: env.BUILD_CONTEXT == 'tag' | ||
run: | | ||
echo "VERSION=${{ github.ref_name }}" >> $GITHUB_ENV | ||
# docker login | ||
- name: Docker login | ||
shell: bash | ||
run: make docker/login | ||
# build & push | ||
- name: Build CSI Image | ||
working-directory: ./csi | ||
shell: bash | ||
env: | ||
IMG_ORG: ${{ env.IMG_ORG }} | ||
IMG_REPO: ${{ env.IMG_REPO }} | ||
IMG_VERSION: ${{ env.VERSION }} | ||
run: | | ||
make docker-build-dev | ||
- name: Push CSI Image | ||
if: env.PUSH_IMAGE == 'true' | ||
shell: bash | ||
env: | ||
IMG: quay.io/${{ env.IMG_ORG }}/${{ env.IMG_REPO }} | ||
run: IMG=${{ env.IMG }} IMG_VERSION=${{ env.VERSION }} make image/push | ||
# Tag latest and main | ||
- name: Tag Latest | ||
if: env.BUILD_CONTEXT == 'main' && env.PUSH_IMAGE == 'true' | ||
shell: bash | ||
env: | ||
IMG: quay.io/${{ env.IMG_ORG }}/${{ env.IMG_REPO }} | ||
run: | | ||
docker tag ${{ env.IMG }}:$VERSION ${{ env.IMG }}:latest | ||
IMG=${{ env.IMG }} IMG_VERSION=latest make image/push | ||
- name: Tag Main | ||
if: env.BUILD_CONTEXT == 'main' && env.PUSH_IMAGE == 'true' | ||
shell: bash | ||
env: | ||
IMG: quay.io/${{ env.IMG_ORG }}/${{ env.IMG_REPO }} | ||
run: | | ||
docker tag ${{ env.IMG }}:$VERSION ${{ env.IMG }}:main | ||
IMG=${{ env.IMG }} IMG_VERSION=main make image/push |
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,74 @@ | ||
name: Test CSI | ||
on: | ||
push: | ||
branches: | ||
- "main" | ||
paths-ignore: | ||
- 'LICENSE*' | ||
- '**.gitignore' | ||
- '**.md' | ||
- '**.txt' | ||
- '.github/ISSUE_TEMPLATE/**' | ||
- '.github/dependabot.yml' | ||
- 'docs/**' | ||
pull_request: | ||
paths: | ||
- "csi/**" | ||
- "internal/server/openapi/api_model_registry_service*" | ||
- "pkg/openapi/**" | ||
|
||
env: | ||
IMG_ORG: opendatahub | ||
MODEL_REGISTRY_IMG: model-registry | ||
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@v4 | ||
|
||
- 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 | ||
|
||
- 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 | ||
working-directory: ./csi | ||
shell: bash | ||
env: | ||
IMG_REPO: ${{ env.MODEL_REGISTRY_CSI_IMG }} | ||
IMG_VERSION: ${{ steps.tags.outputs.tag }} | ||
run: make docker-build-dev | ||
|
||
- name: Start KinD cluster | ||
uses: helm/kind-action@v1.10.0 | ||
with: | ||
node_image: "kindest/node:v1.27.11" | ||
|
||
- name: Install kustomize | ||
run: ./csi/scripts/install_kustomize.sh | ||
|
||
- name: Run tests | ||
working-directory: ./csi | ||
shell: bash | ||
env: | ||
MR_IMG: "quay.io/${{ env.IMG_ORG }}/${{ env.MODEL_REGISTRY_IMG }}:${{ steps.tags.outputs.tag }}" | ||
MR_CSI_IMG: "quay.io/${{ env.IMG_ORG }}/${{ env.MODEL_REGISTRY_CSI_IMG }}:${{ steps.tags.outputs.tag }}" | ||
CLUSTER: chart-testing | ||
run: ./test/e2e_test.sh |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.