mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +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)
|
|||
}
|