mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-16 14:18:42 +00:00
12 lines
636 B
Go
12 lines
636 B
Go
package controllers
|
|
|
|
const (
|
|
// ManifestWorkFinalizer is the name of the finalizer added to manifestworks. It is used to ensure
|
|
// related appliedmanifestwork of a manifestwork are deleted before the manifestwork itself is deleted
|
|
ManifestWorkFinalizer = "cluster.open-cluster-management.io/manifest-work-cleanup"
|
|
// AppliedManifestWorkFinalizer is the name of the finalizer added to appliedmanifestwork. It is to
|
|
// ensure all resource relateds to appliedmanifestwork is deleted before appliedmanifestwork itself
|
|
// is deleted.
|
|
AppliedManifestWorkFinalizer = "cluster.open-cluster-management.io/applied-manifest-work-cleanup"
|
|
)
|