mirror of
https://github.com/rancher/k3k.git
synced 2026-04-06 02:36:55 +00:00
12 lines
214 B
Go
12 lines
214 B
Go
package util
|
|
|
|
import "github.com/galal-hussein/k3k/pkg/apis/k3k.io/v1alpha1"
|
|
|
|
const (
|
|
NamespacePrefix = "k3k-"
|
|
)
|
|
|
|
func ClusterNamespace(cluster *v1alpha1.Cluster) string {
|
|
return NamespacePrefix + cluster.Name
|
|
}
|