1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-09 09:26:54 +00:00
kyverno/pkg/annotations/utils.go

17 lines
308 B
Go
Raw Normal View History

package annotations
const annotationQueueName = "annotation-queue"
const workerThreadCount = 1
2019-07-19 15:10:40 -07:00
const workQueueRetryLimit = 3
2019-07-19 15:10:40 -07:00
func getStatus(status bool) string {
if status {
return "Success"
}
return "Failure"
}
2019-07-19 15:10:40 -07:00
func BuildKey(policyName string) string {
return "policies.kyverno.io." + policyName
}