internal/k8sCommon/k8sclient/replicaset_info.go (9 lines of code) (raw):
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: MIT
package k8sclient
type replicaSetInfo struct {
name string
owners []*replicaSetOwner
}
type replicaSetOwner struct {
kind string
name string
}