Initial commit

[ZITADOPER-1]
This commit is contained in:
Haim Kortovich
2024-04-15 14:44:46 -05:00
parent 95e7d1cb69
commit e4eef2928a
121 changed files with 9053 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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"
}