mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-03-05 19:21:29 +00:00
11 lines
270 B
Go
11 lines
270 B
Go
// Copyright 2020-2021 Clastix Labs
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package utils
|
|
|
|
import "github.com/clastix/capsule/api/v1alpha1"
|
|
|
|
func GetOwnerWithKind(tenant *v1alpha1.Tenant) string {
|
|
return tenant.Spec.Owner.Kind.String() + ":" + tenant.Spec.Owner.Name
|
|
}
|