-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Description
What is the issue?
If you do this:
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.0.0/experimental-install.yaml
linkerd install --crds | kubectl apply -f -the linkerd install ends up removing httproutes.gateway.networking.k8s.io v1. This is a problem for things that are trying to use the v1 Gateway API CRDs.
How can it be reproduced?
See above.
Logs, error output, etc
(base) …/gamma-workshop [☸ k3d-gateway-api-workshop] on main [!?] took 14s
:; kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.0.0/experimental-install.yaml
customresourcedefinition.apiextensions.k8s.io/backendtlspolicies.gateway.networking.k8s.io created
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
customresourcedefinition.apiextensions.k8s.io/tcproutes.gateway.networking.k8s.io created
customresourcedefinition.apiextensions.k8s.io/tlsroutes.gateway.networking.k8s.io created
customresourcedefinition.apiextensions.k8s.io/udproutes.gateway.networking.k8s.io created
(base) …/gamma-workshop [☸ k3d-gateway-api-workshop] on main [!?] took 920ms
:; k get crd httproutes.gateway.networking.k8s.io -o yaml | grep 'name: v'
name: v1
name: v1beta1
(base) …/gamma-workshop [☸ k3d-gateway-api-workshop] on main [!?] took 1s
:; linkerd install --crds | kubectl apply -f -
Rendering Linkerd CRDs...
Next, run `linkerd install | kubectl apply -f -` to install the control plane.
customresourcedefinition.apiextensions.k8s.io/authorizationpolicies.policy.linkerd.io created
customresourcedefinition.apiextensions.k8s.io/httproutes.policy.linkerd.io created
customresourcedefinition.apiextensions.k8s.io/meshtlsauthentications.policy.linkerd.io created
customresourcedefinition.apiextensions.k8s.io/networkauthentications.policy.linkerd.io created
customresourcedefinition.apiextensions.k8s.io/serverauthorizations.policy.linkerd.io created
customresourcedefinition.apiextensions.k8s.io/servers.policy.linkerd.io created
customresourcedefinition.apiextensions.k8s.io/serviceprofiles.linkerd.io created
customresourcedefinition.apiextensions.k8s.io/httproutes.gateway.networking.k8s.io configured
customresourcedefinition.apiextensions.k8s.io/externalworkloads.workload.linkerd.io created
(base) …/gamma-workshop [☸ k3d-gateway-api-workshop] on main [!?] took 504ms
:; k get crd httproutes.gateway.networking.k8s.io -o yaml | grep 'name: v'
name: v1alpha2
name: v1beta1
output of linkerd check -o short
This is with edge-24.2.3, but I imagine it extends to other versions.
Environment
Anything using Gateway API.
Possible solution
It's possible to work around this by installing the Gateway API CRDs after LInkerd.
Additional context
No response
Would you like to work on fixing this bug?
None
FredrikAugust and n-oden