traefik/pkg/provider/kubernetes/crd/traefikio/v1alpha1/objectreference.go
2023-03-20 15:38:08 +01:00

10 lines
323 B
Go

package v1alpha1
// ObjectReference is a generic reference to a Traefik resource.
type ObjectReference struct {
// Name defines the name of the referenced Traefik resource.
Name string `json:"name"`
// Namespace defines the namespace of the referenced Traefik resource.
Namespace string `json:"namespace,omitempty"`
}