Currently, EG API types reside in 2 locations:
- Envoy Gateway and Envoy Proxy configuration:
api/config/v1alpha1.
- Extended functionality:
api/v1alpha1.
This makes imports a bit confusing:
import (
egv1a1 "github.com/envoyproxy/gateway/api/v1alpha1"
egcfgv1a1 "github.com/envoyproxy/gateway/api/config/v1alpha1"
)
It's unclear what API types are being imported from github.com/envoyproxy/gateway/api/v1alpha1.
Currently, EG API types reside in 2 locations:
api/config/v1alpha1.api/v1alpha1.This makes imports a bit confusing:
It's unclear what API types are being imported from
github.com/envoyproxy/gateway/api/v1alpha1.