Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/linkerd-crds/values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -- Controls if Linkerd should install the Gateway API CRDs. This value acts
# as a default and can be overridden by the more specific `enable*Routes`
# values.
installGatewayAPI: true
installGatewayAPI: false
# -- Controls if Linkerd should install the Gateway API HTTPRoutes and
# GRPCRoutes CRDs. If unspecified, the value of `installGatewayAPI` is used.
# enableHttpRoutes: false
Expand Down
20 changes: 10 additions & 10 deletions cli/cmd/install_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@ const (
installProxyVersion = "install-proxy-version"
installControlPlaneVersion = "install-control-plane-version"
installDebugVersion = "install-debug-version"

externalGatewayAPIManifest = `---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: httproutes.gateway.networking.k8s.io
spec:
versions:
- name: v1
`
)

func TestRender(t *testing.T) {
Expand Down Expand Up @@ -300,16 +310,6 @@ func TestIgnoreCluster(t *testing.T) {
}

func TestGWApi(t *testing.T) {
externalGatewayAPIManifest := `---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: httproutes.gateway.networking.k8s.io
spec:
versions:
- name: v1
`

unsupportedGatewayAPIVersionManifest := `---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
Expand Down
Loading