14 lines
292 B
Go
14 lines
292 B
Go
package machinekey
|
|
|
|
import (
|
|
zitadelv1alpha1 "bitbucket.org/topmanage-software-engineering/zitadel-k8s-operator/src/api/v1alpha1"
|
|
)
|
|
|
|
const (
|
|
Key = "machinekey.json"
|
|
)
|
|
|
|
func MachineKeySecretName(zitadel *zitadelv1alpha1.ZitadelCluster) string {
|
|
return zitadel.Name + "-machinekey-secret"
|
|
}
|