Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
crd: fix gateway-api standard channel path
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemorris committed Jun 15, 2022
1 parent 30560ab commit 900d52e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/crd/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

resources:
- github.com/kubernetes-sigs/gateway-api/config/crd/standard?ref=v0.5.0-rc1
- github.com/kubernetes-sigs/gateway-api/config/crd?ref=v0.5.0-rc1
- github.com/kubernetes-sigs/gateway-api/config/crd/experimental?ref=v0.5.0-rc1
- bases/api-gateway.consul.hashicorp.com_gatewayclassconfigs.yaml
- bases/api-gateway.consul.hashicorp.com_meshservices.yaml
2 changes: 1 addition & 1 deletion dev/run
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ createCluster() {

installGatewayCRDs() {
echo "Installing Gateway CRDs"
kubectl apply -k "github.com/kubernetes-sigs/gateway-api/config/crd/standard?ref=v0.5.0-rc1" 2>&1 > /dev/null
kubectl apply -k "github.com/kubernetes-sigs/gateway-api/config/crd?ref=v0.5.0-rc1" 2>&1 > /dev/null
kubectl apply -k "github.com/kubernetes-sigs/gateway-api/config/crd/experimental?ref=v0.5.0-rc1" 2>&1 > /dev/null
}

Expand Down
2 changes: 1 addition & 1 deletion internal/testing/e2e/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ type k8sTokenContext struct{}

var k8sTokenContextKey = k8sTokenContext{}

const gatewayCRDsStandard = "github.com/kubernetes-sigs/gateway-api/config/crd/standard?ref=v0.5.0-rc1"
const gatewayCRDsStandard = "github.com/kubernetes-sigs/gateway-api/config/crd?ref=v0.5.0-rc1"
const gatewayCRDsExperimental = "github.com/kubernetes-sigs/gateway-api/config/crd/experimental?ref=v0.5.0-rc1"

func installKustomizedCRDs(ctx context.Context, cfg *envconf.Config, path string) error {
Expand Down

0 comments on commit 900d52e

Please sign in to comment.