blob: 9007f1978e0d7ed8b2485759844bb0d8f0b6a786 [file] [log] [blame]
package status
type OwnerReference struct {
APIVersion string `json:"apiVersion"`
Kind string `json:"kind"`
Name string `json:"name"`
}
type Metadata struct {
Name string `json:"name"`
Namespace string `json:"namespace"`
Annotations map[string]string `json:"annotations"`
OwnerReferences []OwnerReference `json:"ownerReferences"`
}
type ResourceWithOwnerReferences interface {
OwnerReferences() []OwnerReference
}