UNCLASSIFIED - NO CUI

Add Gateway API CRDs to new BB Istio Package

The Istio Gateway API requires CRDs that are not present in default k8s. So, bring these CRDs under the new merged Istio package to support using the Gateway API.

See: https://istio.io/latest/docs/setup/getting-started/#gateway-api

The below command pulls these in manually, but we want them to be included with our new istio package.

kubectl get crd gateways.gateway.networking.k8s.io &> /dev/null || \
  { kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd?ref=v1.1.0" | kubectl apply -f -; }
Edited by kipten