Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix our install doc on gw API #16162

Open
linsun opened this issue Jan 10, 2025 · 0 comments
Open

Fix our install doc on gw API #16162

linsun opened this issue Jan 10, 2025 · 0 comments

Comments

@linsun
Copy link
Member

linsun commented Jan 10, 2025

Ran into this today while following the doc:

 ~/Downloads/ kubectl get crd gateways.gateway.networking.k8s.io &> /dev/null ||
{ kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.2.0/standard-install.yaml\; }

error: unable to read URL "https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.2.0/standard-install.yaml;", server reported 404 Not Found, status code=404

Fixed by this:

 ~/Downloads/ kubectl get crd gateways.gateway.networking.k8s.io &> /dev/null ||
{ kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.2.0/standard-install.yaml }

customresourcedefinition.apiextensions.k8s.io/gatewayclasses.gateway.networking.k8s.io created
customresourcedefinition.apiextensions.k8s.io/gateways.gateway.networking.k8s.io created
customresourcedefinition.apiextensions.k8s.io/grpcroutes.gateway.networking.k8s.io created
customresourcedefinition.apiextensions.k8s.io/httproutes.gateway.networking.k8s.io created
customresourcedefinition.apiextensions.k8s.io/referencegrants.gateway.networking.k8s.io created

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant