github.com/caos/orbos@v1.5.14-0.20221103111702-e6cd0cea7ad4/internal/operator/boom/application/applications/metriccollection/info/info.go (about) 1 package info 2 3 import "github.com/caos/orbos/internal/operator/boom/name" 4 5 const ( 6 applicationName name.Application = "prometheus-operator" 7 namespace string = "caos-system" 8 ) 9 10 func GetName() name.Application { 11 return applicationName 12 } 13 14 func GetNamespace() string { 15 return namespace 16 }