Skip to content

Commit 8d713c9

Browse files
committed
Merge remote-tracking branch 'upstream/main' into rhoai-3.5-ea.2
2 parents 1e1726d + 1dab6cc commit 8d713c9

101 files changed

Lines changed: 9230 additions & 762 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/workflows/ci-integration-tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ permissions:
1919

2020
jobs:
2121
integration-tests:
22-
name: Integration Tests (${{ matrix.file_client_type }}, ${{ matrix.db_client_type }}, ${{ matrix.exchange_client_type }})
22+
name: Integration Tests (${{ matrix.file_client_type }}, ${{ matrix.db_client_type }}, ${{ matrix.exchange_client_type }}${{ matrix.enable_gie == 'true' && ', gie' || '' }})
2323
runs-on: ubuntu-latest
2424
timeout-minutes: 30
2525
strategy:
@@ -41,6 +41,10 @@ jobs:
4141
- file_client_type: s3
4242
db_client_type: valkey
4343
exchange_client_type: valkey
44+
- file_client_type: s3
45+
db_client_type: postgresql
46+
exchange_client_type: redis
47+
enable_gie: "true"
4448
steps:
4549
- uses: actions/checkout@v6
4650

@@ -60,6 +64,7 @@ jobs:
6064
FILE_CLIENT_TYPE: ${{ matrix.file_client_type }}
6165
DB_CLIENT_TYPE: ${{ matrix.db_client_type }}
6266
EXCHANGE_CLIENT_TYPE: ${{ matrix.exchange_client_type }}
67+
ENABLE_GIE: ${{ matrix.enable_gie || 'false' }}
6368

6469
- name: Run integration tests
6570
run: make test-e2e

.github/workflows/ci-signed-commits.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on: pull_request_target
33

44
jobs:
55
signed-commits:
6-
uses: llm-d/llm-d-infra/.github/workflows/reusable-signed-commits.yml@main
6+
uses: llm-d/llm-d-infra/.github/workflows/reusable-signed-commits.yaml@main
77
permissions:
88
contents: read
99
pull-requests: write

.github/workflows/non-main-gatekeeper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ permissions:
99

1010
jobs:
1111
gatekeeper:
12-
uses: llm-d/llm-d-infra/.github/workflows/reusable-non-main-gatekeeper.yml@main
12+
uses: llm-d/llm-d-infra/.github/workflows/reusable-non-main-gatekeeper.yaml@main

.github/workflows/pre-commit.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
go-version-file: go.mod
2929
cache: true
3030

31+
- name: Install Helm
32+
uses: azure/setup-helm@v5
33+
3134
- name: Install Go tools (goimports, gosec, ruleguard)
3235
run: make install-pre-commit-tools
3336

@@ -38,3 +41,6 @@ jobs:
3841

3942
- name: Run pre-commit hooks
4043
uses: pre-commit/action@v3.0.1
44+
45+
- name: Lint Helm chart
46+
run: helm lint charts/batch-gateway

.github/workflows/prow-github.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ permissions:
99

1010
jobs:
1111
prow:
12-
uses: llm-d/llm-d-infra/.github/workflows/reusable-prow-commands.yml@main
12+
uses: llm-d/llm-d-infra/.github/workflows/reusable-prow-commands.yaml@main

.github/workflows/prow-pr-automerge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ permissions:
1010

1111
jobs:
1212
auto-merge:
13-
uses: llm-d/llm-d-infra/.github/workflows/reusable-prow-automerge.yml@main
13+
uses: llm-d/llm-d-infra/.github/workflows/reusable-prow-automerge.yaml@main

.github/workflows/prow-pr-remove-lgtm.yml

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

77
jobs:
88
remove-lgtm:
9-
uses: llm-d/llm-d-infra/.github/workflows/reusable-prow-remove-lgtm.yml@main
9+
uses: llm-d/llm-d-infra/.github/workflows/reusable-prow-remove-lgtm.yaml@main

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
stale:
8-
uses: llm-d/llm-d-infra/.github/workflows/reusable-stale.yml@main
8+
uses: llm-d/llm-d-infra/.github/workflows/reusable-stale.yaml@main
99
permissions:
1010
issues: write
1111
pull-requests: write

.github/workflows/unstale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ on:
77

88
jobs:
99
unstale:
10-
uses: llm-d/llm-d-infra/.github/workflows/reusable-unstale.yml@main
10+
uses: llm-d/llm-d-infra/.github/workflows/reusable-unstale.yaml@main
1111
permissions:
1212
issues: write

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,7 @@ install-pre-commit-tools:
233233
$(GO) install github.com/quasilyte/go-ruleguard/cmd/ruleguard@v0.4.5
234234
@if command -v helm >/dev/null 2>&1; then \
235235
helm plugin list | grep -q unittest || \
236-
helm plugin install https://github.com/helm-unittest/helm-unittest.git || \
237-
helm plugin install --verify=false https://github.com/helm-unittest/helm-unittest.git; \
236+
helm plugin install --verify=false --version v1.0.3 https://github.com/helm-unittest/helm-unittest.git; \
238237
else \
239238
echo "helm not found, skipping helm-unittest plugin install"; \
240239
fi
@@ -327,6 +326,10 @@ KIND_CLUSTER_NAME ?= batch-gateway-dev
327326
dev-deploy:
328327
@bash scripts/dev-deploy.sh
329328

329+
## dev-deploy-gie: Deploy with GIE integration (per-model EPP + InferenceObjectives)
330+
dev-deploy-gie:
331+
@ENABLE_GIE=true bash scripts/dev-deploy.sh
332+
330333
## dev-clean: Clean up dev deployment (removes all resources but keeps the kind cluster)
331334
dev-clean:
332335
@bash scripts/dev-clean.sh

0 commit comments

Comments
 (0)