Skip to content

Commit d16a5a3

Browse files
Merge branch 'main' into test/manage-columns-cypress-coverage
2 parents e5c04ff + 86eb885 commit d16a5a3

85 files changed

Lines changed: 4343 additions & 2972 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitattributes

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,9 @@ catalog/clients/python/src/catalog_openapi/models/model_preview_result.py lingui
6868
catalog/clients/python/src/catalog_openapi/models/order_by_field.py linguist-generated=true
6969
catalog/clients/python/src/catalog_openapi/models/sort_order.py linguist-generated=true
7070
catalog/clients/python/src/catalog_openapi/rest.py linguist-generated=true
71-
catalog/internal/server/openapi/api.go linguist-generated=true
71+
catalog/internal/server/openapi/api_mcp.go linguist-generated=true
7272
catalog/internal/server/openapi/api_mcp_catalog_service.go linguist-generated=true
73+
catalog/internal/server/openapi/api_model.go linguist-generated=true
7374
catalog/internal/server/openapi/api_model_catalog_service.go linguist-generated=true
7475
catalog/internal/server/openapi/error.go linguist-generated=true
7576
catalog/internal/server/openapi/helpers.go linguist-generated=true

.github/workflows/build-and-push-async-upload.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ jobs:
4141
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4
4242

4343
- name: Set up Docker Buildx
44-
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4
44+
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4
4545

4646
- name: Log in to the Container registry
47-
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4
47+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4
4848
with:
4949
registry: ${{ env.IMG_REGISTRY }}
5050
username: ${{ env.REGISTRY_USER }}
@@ -64,7 +64,7 @@ jobs:
6464
6565
- name: Extract metadata (tags, labels) for Docker
6666
id: meta
67-
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
67+
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6.1.0
6868
with:
6969
images: "${{ env.IMG_REGISTRY }}/${{ env.IMG_ORG }}/${{ env.IMG_NAME }}"
7070
tags: |
@@ -74,7 +74,7 @@ jobs:
7474
7575
- name: Build and push Docker image
7676
id: build-push
77-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7
77+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7
7878
with:
7979
context: ./jobs/async-upload
8080
platforms: ${{ env.PLATFORMS }}
@@ -86,7 +86,7 @@ jobs:
8686
provenance: mode=max
8787

8888
- name: Install Cosign
89-
uses: sigstore/cosign-installer@cad07c2e89fa2edd6e2d7bab4c1aa38e53f76003 # v3
89+
uses: sigstore/cosign-installer@6f9f17788090df1f26f669e9d70d6ae9567deba6 # v3
9090

9191
- name: Sign image with cosign
9292
run: |

.github/workflows/build-and-push-controller-image.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Set up QEMU
4444
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4
4545
- name: Set up Docker Buildx
46-
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4
46+
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4
4747
# set image version
4848
- name: Set main-branch environment
4949
if: env.BUILD_CONTEXT == 'main'
@@ -57,14 +57,14 @@ jobs:
5757
echo "VERSION=${{ github.ref_name }}" >> $GITHUB_ENV
5858
# docker login
5959
- name: Log in to the Container registry
60-
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4
60+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4
6161
with:
6262
registry: ${{ env.IMG_REGISTRY }}
6363
username: ${{ env.DOCKER_USER }}
6464
password: ${{ env.DOCKER_PWD }}
6565
- name: Extract metadata (tags, labels) for Docker
6666
id: meta
67-
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
67+
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6.1.0
6868
with:
6969
images: "${{ env.IMG_REGISTRY }}/${{ env.IMG_ORG }}/${{ env.IMG_REPO }}"
7070
tags: |
@@ -73,7 +73,7 @@ jobs:
7373
type=raw,value=main,enable=${{ env.BUILD_CONTEXT == 'main' }}
7474
- name: Build and push Docker image
7575
id: build-push
76-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7
76+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7
7777
with:
7878
context: .
7979
file: ./cmd/controller/Dockerfile.controller
@@ -85,7 +85,7 @@ jobs:
8585
cache-to: type=gha,mode=max
8686
provenance: mode=max
8787
- name: Install Cosign
88-
uses: sigstore/cosign-installer@cad07c2e89fa2edd6e2d7bab4c1aa38e53f76003 # v3
88+
uses: sigstore/cosign-installer@6f9f17788090df1f26f669e9d70d6ae9567deba6 # v3
8989
- name: Sign image with cosign
9090
run: |
9191
cosign sign --yes "${{ env.IMG_REGISTRY }}/${{ env.IMG_ORG }}/${{ env.IMG_REPO }}@${{ steps.build-push.outputs.digest }}"

.github/workflows/build-and-push-csi-image.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Set up QEMU
4444
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4
4545
- name: Set up Docker Buildx
46-
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4
46+
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4
4747
# set image version
4848
- name: Set main-branch environment
4949
if: env.BUILD_CONTEXT == 'main'
@@ -57,14 +57,14 @@ jobs:
5757
echo "VERSION=${{ github.ref_name }}" >> $GITHUB_ENV
5858
# docker login
5959
- name: Log in to the Container registry
60-
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4
60+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4
6161
with:
6262
registry: ${{ env.IMG_REGISTRY }}
6363
username: ${{ env.DOCKER_USER }}
6464
password: ${{ env.DOCKER_PWD }}
6565
- name: Extract metadata (tags, labels) for Docker
6666
id: meta
67-
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
67+
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6.1.0
6868
with:
6969
images: "${{ env.IMG_REGISTRY }}/${{ env.IMG_ORG }}/${{ env.IMG_REPO }}"
7070
tags: |
@@ -73,7 +73,7 @@ jobs:
7373
type=raw,value=main,enable=${{ env.BUILD_CONTEXT == 'main' }}
7474
- name: Build and push Docker image
7575
id: build-push
76-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7
76+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7
7777
with:
7878
context: .
7979
file: ./cmd/csi/Dockerfile.csi
@@ -85,7 +85,7 @@ jobs:
8585
cache-to: type=gha,mode=max
8686
provenance: mode=max
8787
- name: Install Cosign
88-
uses: sigstore/cosign-installer@cad07c2e89fa2edd6e2d7bab4c1aa38e53f76003 # v3
88+
uses: sigstore/cosign-installer@6f9f17788090df1f26f669e9d70d6ae9567deba6 # v3
8989
- name: Sign image with cosign
9090
run: |
9191
cosign sign --yes "${{ env.IMG_REGISTRY }}/${{ env.IMG_ORG }}/${{ env.IMG_REPO }}@${{ steps.build-push.outputs.digest }}"

.github/workflows/build-and-push-image.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4
5151
# Set up Docker Buildx
5252
- name: Set up Docker Buildx
53-
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4
53+
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4
5454
# set image version
5555
- name: Set main-branch environment
5656
if: env.BUILD_CONTEXT == 'main'
@@ -63,14 +63,14 @@ jobs:
6363
run: |
6464
echo "VERSION=${{ github.ref_name }}" >> $GITHUB_ENV
6565
- name: Log in to the Container registry
66-
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4
66+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4
6767
with:
6868
registry: ${{ env.IMG_REGISTRY }}
6969
username: ${{ env.DOCKER_USER }}
7070
password: ${{ env.DOCKER_PWD }}
7171
- name: Extract metadata (tags, labels) for Docker
7272
id: meta
73-
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
73+
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6.1.0
7474
with:
7575
images: "${{ env.IMG_REGISTRY }}/${{ env.IMG_ORG }}/${{ env.IMG_REPO }}"
7676
tags: |
@@ -79,7 +79,7 @@ jobs:
7979
type=raw,value=main,enable=${{ env.BUILD_CONTEXT == 'main' }}
8080
- name: Build and push Docker image
8181
id: build-push
82-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7
82+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7
8383
with:
8484
context: .
8585
platforms: ${{ env.PLATFORMS }}
@@ -90,7 +90,7 @@ jobs:
9090
cache-to: type=gha,mode=max
9191
provenance: mode=max
9292
- name: Install Cosign
93-
uses: sigstore/cosign-installer@cad07c2e89fa2edd6e2d7bab4c1aa38e53f76003 # v3
93+
uses: sigstore/cosign-installer@6f9f17788090df1f26f669e9d70d6ae9567deba6 # v3
9494
- name: Sign image with cosign
9595
run: |
9696
cosign sign --yes "${{ env.IMG_REGISTRY }}/${{ env.IMG_ORG }}/${{ env.IMG_REPO }}@${{ steps.build-push.outputs.digest }}"

.github/workflows/build-and-push-ui-images-standalone.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ jobs:
3737
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4
3838

3939
- name: Set up Docker Buildx
40-
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4
40+
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4
4141

4242
- name: Log in to the Container registry
43-
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4
43+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4
4444
with:
4545
registry: ${{ env.IMG_REGISTRY }}
4646
username: ${{ env.DOCKER_USER }}
@@ -60,7 +60,7 @@ jobs:
6060
6161
- name: Extract metadata (tags, labels) for Docker
6262
id: meta
63-
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
63+
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6.1.0
6464
with:
6565
images: "${{ env.IMG_REGISTRY }}/${{ env.IMG_ORG }}/${{ env.IMG_UI_REPO }}"
6666
tags: |
@@ -74,7 +74,7 @@ jobs:
7474
7575
- name: Build and push Docker image
7676
id: build-push
77-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7
77+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7
7878
with:
7979
context: ./clients/ui
8080
file: ./clients/ui/Dockerfile.standalone
@@ -91,7 +91,7 @@ jobs:
9191
provenance: mode=max
9292

9393
- name: Install Cosign
94-
uses: sigstore/cosign-installer@cad07c2e89fa2edd6e2d7bab4c1aa38e53f76003 # v3
94+
uses: sigstore/cosign-installer@6f9f17788090df1f26f669e9d70d6ae9567deba6 # v3
9595

9696
- name: Sign image with cosign
9797
run: |

.github/workflows/build-and-push-ui-images.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ jobs:
3737
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4
3838

3939
- name: Set up Docker Buildx
40-
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4
40+
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4
4141

4242
- name: Log in to the Container registry
43-
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4
43+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4
4444
with:
4545
registry: ${{ env.IMG_REGISTRY }}
4646
username: ${{ env.DOCKER_USER }}
@@ -60,7 +60,7 @@ jobs:
6060
6161
- name: Extract metadata (tags, labels) for Docker
6262
id: meta
63-
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
63+
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6.1.0
6464
with:
6565
images: "${{ env.IMG_REGISTRY }}/${{ env.IMG_ORG }}/${{ env.IMG_UI_REPO }}"
6666
tags: |
@@ -74,7 +74,7 @@ jobs:
7474
7575
- name: Build and push Docker image
7676
id: build-push
77-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7
77+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7
7878
with:
7979
context: ./clients/ui
8080
platforms: ${{ env.PLATFORMS }}
@@ -89,7 +89,7 @@ jobs:
8989
provenance: mode=max
9090

9191
- name: Install Cosign
92-
uses: sigstore/cosign-installer@cad07c2e89fa2edd6e2d7bab4c1aa38e53f76003 # v3
92+
uses: sigstore/cosign-installer@6f9f17788090df1f26f669e9d70d6ae9567deba6 # v3
9393

9494
- name: Sign image with cosign
9595
run: |

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,6 @@ jobs:
6666

6767
# Upload the results to GitHub's code scanning dashboard.
6868
- name: "Upload to code-scanning"
69-
uses: github/codeql-action/upload-sarif@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4.35.4
69+
uses: github/codeql-action/upload-sarif@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4.36.0
7070
with:
7171
sarif_file: results.sarif

.github/workflows/trivy-image-scanning.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
timeout: 30m0s
4646

4747
- name: Upload Trivy scan results to GitHub Security tab
48-
uses: github/codeql-action/upload-sarif@b62aaa99a566b376e9c7086e9e5e951f17f53488 # v4
48+
uses: github/codeql-action/upload-sarif@0e150e40762c1253b364a04b0fc9f2cc14effff2 # v4
4949
if: always()
5050
with:
5151
sarif_file: 'trivy-results-${{ env.SANITIZED_IMAGE_NAME }}.sarif'

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The contributor's guide:
1414
* and [describes](https://www.kubeflow.org/docs/about/contributing/#owners-files-and-pr-workflow) the pull request and review workflow in detail, including the
1515
OWNERS files and automated workflow tool
1616

17-
The [Kubeflow Community calendar](https://www.kubeflow.org/docs/about/community/#kubeflow-community-calendar) provides an overview of the community calls and specifically the bi-weekly Kubeflow Model Registry meeting.
17+
The [Kubeflow Community calendar](https://www.kubeflow.org/docs/about/community/#kubeflow-community-calendar) provides an overview of the community calls and specifically the bi-weekly Kubeflow Hub meeting.
1818

1919
<hr/>
2020

0 commit comments

Comments
 (0)