| 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 | |
| } |