traefik/pkg/provider/kubernetes/crd/traefikcontainous/v1alpha1/objectreference.go

10 lines
323 B
Go
Raw Normal View History

2021-06-11 13:30:05 +00:00
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.
2021-06-11 13:30:05 +00:00
Namespace string `json:"namespace,omitempty"`
}