Skip to content

Commit 23179e6

Browse files
committed
Add manifest outputs that split v1 and experimental
1 parent e812885 commit 23179e6

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,8 @@ artifacts: kustomize
353353
if [ -d artifacts ]; then rm -rf artifacts; fi
354354
mkdir -p artifacts
355355
$(KUSTOMIZE) build config/crd -o artifacts/manifests.yaml
356+
$(YQ) -P 'select(.spec.versions[].name == "v1")' artifacts/manifests.yaml > artifacts/v1-manifests.yaml
357+
$(YQ) -P 'select(.spec.versions[].name != "v1")' artifacts/manifests.yaml > artifacts/experimental-manifests.yaml
356358
@$(call clean-manifests)
357359

358360
.PHONY: release

site-src/guides/index.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,15 @@ Tooling:
7878
```
7979

8080
### Install the Inference Extension CRDs
81-
81+
82+
#### All IGW CRDs of all versions
8283
```bash
8384
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api-inference-extension/releases/latest/download/manifests.yaml
8485
```
86+
#### All graduated & approved CRDs
87+
```bash
88+
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api-inference-extension/releases/latest/download/v1-manifests.yaml
89+
```
8590

8691
### Deploy the InferencePool and Endpoint Picker Extension
8792

0 commit comments

Comments
 (0)