owner_references.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. Copyright 2018 The Knative Authors
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package kmeta
  14. import (
  15. metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
  16. "k8s.io/apimachinery/pkg/runtime/schema"
  17. )
  18. // OwnerRefable indicates that a particular type has sufficient
  19. // information to produce a metav1.OwnerReference to an object.
  20. type OwnerRefable interface {
  21. metav1.ObjectMetaAccessor
  22. // GetGroupVersionKind returns a GroupVersionKind. The name is chosen
  23. // to avoid collision with TypeMeta's GroupVersionKind() method.
  24. // See: https://issues.k8s.io/3030
  25. GetGroupVersionKind() schema.GroupVersionKind
  26. }
  27. // NewControllerRef creates an OwnerReference pointing to the given controller.
  28. func NewControllerRef(obj OwnerRefable) *metav1.OwnerReference {
  29. return metav1.NewControllerRef(obj.GetObjectMeta(), obj.GetGroupVersionKind())
  30. }