Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,8 @@ artifacts: kustomize
if [ -d artifacts ]; then rm -rf artifacts; fi
mkdir -p artifacts
$(KUSTOMIZE) build config/crd -o artifacts/manifests.yaml
$(YQ) -P 'select(.spec.versions[].name == "v1")' artifacts/manifests.yaml > artifacts/v1-manifests.yaml
$(YQ) -P 'select(.spec.versions[].name != "v1")' artifacts/manifests.yaml > artifacts/experimental-manifests.yaml
@$(call clean-manifests)

.PHONY: release
Expand Down
7 changes: 6 additions & 1 deletion site-src/guides/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,15 @@ Tooling:
```

### Install the Inference Extension CRDs


Copy link
Contributor

Choose a reason for hiding this comment

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

We should explain when do you need which CRD.

@kfswain I know GKE has docs on this. Do we have docs of other gateway providers that we can reference here?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

For the guides documentation, we only prompt users to install the GA CRDs. Developers and testers with a deeper understanding of IGW can opt to install experimental CRDs. Therefore, prompting users to install the v1 CRDs here is sufficient. What do you think? cc @liu-cong @kfswain

#### All IGW CRDs of all versions
```bash
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api-inference-extension/releases/latest/download/manifests.yaml
```
#### All graduated & approved CRDs
```bash
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api-inference-extension/releases/latest/download/v1-manifests.yaml
```

### Deploy the InferencePool and Endpoint Picker Extension

Expand Down