File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments