Some checks failed
Build and Publish / build-release (push) Failing after 26s
14 lines
261 B
Go
14 lines
261 B
Go
package masterkey
|
|
|
|
import (
|
|
zitadelv1alpha1 "gitea.corredorconect.com/software-engineering/zitadel-k8s-operator/api/v1alpha1"
|
|
)
|
|
|
|
const (
|
|
Key = "key"
|
|
)
|
|
|
|
func MasterKeyName(zitadel *zitadelv1alpha1.Cluster) string {
|
|
return zitadel.Name + "-masterkey-secret"
|
|
}
|