Versions in this module Expand all Collapse all v0 v0.0.2 Mar 25, 2024 v0.0.1 Jan 11, 2024 Changes in this version + type ObjectByGK map[schema.GroupKind]map[ObjectKey]runtime.Object + func (o ObjectByGK) Add(obj runtime.Object) (schema.GroupKind, error) + type ObjectByGVK map[schema.GroupVersionKind]map[ObjectKey]runtime.Object + func (o ObjectByGVK) Add(obj runtime.Object) (schema.GroupVersionKind, error) + type ObjectByKey map[ObjectKey]runtime.Object + func (o ObjectByKey) Namespaces() []string + type ObjectKey struct + Name string + Namespace string + func NewObjectKey(obj v1.Object) ObjectKey + func (o ObjectKey) String() string + type ObjectKeyByGVK map[schema.GroupVersionKind][]ObjectKey + type ObjectSet struct + func NewObjectSet(objs ...runtime.Object) *ObjectSet + func (o *ObjectSet) Add(objs ...runtime.Object) *ObjectSet + func (o *ObjectSet) AddErr(err error) + func (o *ObjectSet) All() []runtime.Object + func (o *ObjectSet) Contains(gk schema.GroupKind, key ObjectKey) bool + func (o *ObjectSet) Err() error + func (o *ObjectSet) GVKOrder(known ...schema.GroupVersionKind) []schema.GroupVersionKind + func (o *ObjectSet) GVKs() []schema.GroupVersionKind + func (o *ObjectSet) Len() int + func (o *ObjectSet) Namespaces() []string + func (o *ObjectSet) ObjectsByGVK() ObjectByGVK