mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-11 01:53:39 +00:00
14 lines
278 B
Go
14 lines
278 B
Go
|
package orb
|
||
|
|
||
|
import "github.com/caos/orbos/pkg/labels"
|
||
|
|
||
|
func mustDatabaseOperator(binaryVersion *string) *labels.Operator {
|
||
|
|
||
|
version := "unknown"
|
||
|
if binaryVersion != nil {
|
||
|
version = *binaryVersion
|
||
|
}
|
||
|
|
||
|
return labels.MustForOperator("ZITADEL", "database.caos.ch", version)
|
||
|
}
|