Files
capsule/pkg/utils/owner.go
2021-06-03 19:46:20 +02:00

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
}