Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions conformance/reports/v1.0.0/gateway/kgateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,33 +45,39 @@ In order to run the conformance tests, the following prerequisites must be met:
make kind-setup
```

4. Install the kgateway CRDs:
4. Build and load the images:

```sh
make kind-build-and-load
```

5. Install the kgateway CRDs:

```sh
helm upgrade -i --create-namespace --namespace kgateway-system \
--version $VERSION kgateway-crds oci://cr.kgateway.dev/kgateway-dev/charts/kgateway-crds
```

5. Install kgateway with Inference Extension enabled:
6. Install kgateway with Inference Extension enabled:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you switch these all to 1 ? Markdown convert them to the proper number for you so then with edits like these, theres no need to backfill


```sh
helm upgrade -i --namespace kgateway-system --version $VERSION \
kgateway oci://cr.kgateway.dev/kgateway-dev/charts/kgateway --set inferenceExtension.enabled=true
```

6. Wait for the kgateway rollout to complete:
7. Wait for the kgateway rollout to complete:

```sh
kubectl rollout status deploy/kgateway -n kgateway-system
```

7. Run the conformance tests:
8. Run the conformance tests:

```sh
make gie-conformance
```

8. View and verify the conformance report:
9. View and verify the conformance report:

```sh
cat _test/conformance/inference-$VERSION-report.yaml
Expand Down