Skip to content

Commit 99eedcf

Browse files
learner0810BenjaminBraunDev
authored andcommitted
Add manifest outputs that split v1 and experimental (kubernetes-sigs#1644)
1 parent 2654d19 commit 99eedcf

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,8 @@ artifacts: kustomize
374374
if [ -d artifacts ]; then rm -rf artifacts; fi
375375
mkdir -p artifacts
376376
$(KUSTOMIZE) build config/crd -o artifacts/manifests.yaml
377+
$(YQ) -P 'select(.spec.versions[].name == "v1")' artifacts/manifests.yaml > artifacts/v1-manifests.yaml
378+
$(YQ) -P 'select(.spec.versions[].name != "v1")' artifacts/manifests.yaml > artifacts/experimental-manifests.yaml
377379
@$(call clean-manifests)
378380

379381
.PHONY: release

site-src/guides/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
### Install the Inference Extension CRDs
3535

3636
```bash
37-
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api-inference-extension/releases/download/v1.0.1/manifests.yaml
37+
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api-inference-extension/releases/download/v1.0.1/v1-manifests.yaml
3838
```
3939

4040
### Deploy the InferencePool and Endpoint Picker Extension

0 commit comments

Comments
 (0)