Skip to content

Commit 56fa4f8

Browse files
Merge pull request #1436 from pierDipi/sync-upstream-20260423-0828
Sync upstream 20260423 0828
2 parents d581a18 + 745375e commit 56fa4f8

190 files changed

Lines changed: 934724 additions & 20956 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.

.github/agents/release-orchestrator.agent.md

Lines changed: 476 additions & 0 deletions
Large diffs are not rendered by default.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,6 @@ test/scripts/openshift-ci/tls/certs
8686
# Claude code
8787
.claude/
8888

89+
# bkit
90+
.bkit/
91+

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ COPY cmd/${CMD}/ cmd/${CMD}/
1818
COPY pkg/ pkg/
1919
RUN --mount=type=cache,target=/go/pkg/mod \
2020
--mount=type=cache,target=/root/.cache/go-build \
21-
CGO_ENABLED=0 GOOS=linux GOFLAGS=-mod=readonly go build -a -tags "${GOTAGS}" -o manager ./cmd/${CMD}
21+
CGO_ENABLED=0 GOOS=linux GOFLAGS=-mod=readonly go build -tags "${GOTAGS}" -a -o manager ./cmd/${CMD}
2222

2323
# ---- License stage (parallel with build on BuildKit) ----
2424
FROM deps AS license

OWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ reviewers:
2626
- spolti
2727
- terrytangyuan
2828
- VedantMahabaleshwarkar
29-
- vivekk16
29+
- vivekk16

agent.Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ RUN --mount=type=cache,target=/go/pkg/mod \
1313
FROM deps AS builder
1414

1515
ARG CMD=agent
16+
ARG GOTAGS=""
1617
COPY cmd/${CMD}/ cmd/${CMD}/
1718
COPY pkg/ pkg/
1819
RUN --mount=type=cache,target=/go/pkg/mod \
1920
--mount=type=cache,target=/root/.cache/go-build \
20-
CGO_ENABLED=0 GOOS=linux GOFLAGS=-mod=readonly go build -a -o agent ./cmd/${CMD}
21+
CGO_ENABLED=0 GOOS=linux GOFLAGS=-mod=readonly go build -tags "${GOTAGS}" -a -o agent ./cmd/${CMD}
2122

2223
# ---- License stage (parallel with build on BuildKit) ----
2324
FROM deps AS license

charts/_common/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ The specific values override/extend common values when keys overlap.
112112
```yaml
113113
# charts/_common/common-sections.yaml
114114
kserve:
115-
version: v0.17.0
115+
version: v0.18.0-rc1
116116
newCommonField: value # Add here
117117
agent:
118118
image: kserve/agent

charts/_common/common-sections.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
kserve:
2-
version: v0.17.0
2+
version: v0.18.0-rc1
33
createSharedResources: true
44
inferenceServiceConfig:
55
enabled: ''

charts/kserve-crd-minimal/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: kserve-crd-minimal
3-
version: v0.17.0
4-
appVersion: v0.17.0
3+
version: v0.18.0-rc1
4+
appVersion: v0.18.0-rc1
55
description: Helm chart for deploying minimal kserve crds without validation
66
type: application
77
keywords:

charts/kserve-crd-minimal/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
Helm chart for deploying minimal kserve crds without validation
44

5-
![Version: v0.17.0](https://img.shields.io/badge/Version-v0.17.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.17.0](https://img.shields.io/badge/AppVersion-v0.17.0-informational?style=flat-square)
5+
![Version: v0.18.0-rc1](https://img.shields.io/badge/Version-v0.18.0--rc1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.18.0-rc1](https://img.shields.io/badge/AppVersion-v0.18.0--rc1-informational?style=flat-square)
66

77
## Installing the Chart
88

99
To install the chart, run the following:
1010

1111
```console
12-
$ helm install kserve-crd-minimal oci://ghcr.io/kserve/charts/kserve-crd-minimal --version v0.17.0
12+
$ helm install kserve-crd-minimal oci://ghcr.io/kserve/charts/kserve-crd-minimal --version v0.18.0-rc1
1313
```

charts/kserve-crd/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: kserve-crd
3-
version: v0.17.0
4-
appVersion: v0.17.0
3+
version: v0.18.0-rc1
4+
appVersion: v0.18.0-rc1
55
description: Helm chart for deploying kserve crds
66
type: application
77
keywords:

0 commit comments

Comments
 (0)