mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-17 14:48:49 +00:00
17 lines
691 B
Go
17 lines
691 B
Go
package v1
|
|
|
|
const (
|
|
// TemplateInstanceFinalizer is used to clean up the objects created by the template instance,
|
|
// when the template instance is deleted.
|
|
TemplateInstanceFinalizer = "template.openshift.io/finalizer"
|
|
|
|
// TemplateInstanceOwner is a label applied to all objects created from a template instance
|
|
// which contains the uid of the template instance.
|
|
TemplateInstanceOwner = "template.openshift.io/template-instance-owner"
|
|
|
|
// WaitForReadyAnnotation indicates that the TemplateInstance controller
|
|
// should wait for the object to be ready before reporting the template
|
|
// instantiation complete.
|
|
WaitForReadyAnnotation = "template.alpha.openshift.io/wait-for-ready"
|
|
)
|