...

Source file src/github.com/openshift/api/template/v1/consts.go

Documentation: github.com/openshift/api/template/v1

     1  package v1
     2  
     3  const (
     4  	// TemplateInstanceFinalizer is used to clean up the objects created by the template instance,
     5  	// when the template instance is deleted.
     6  	TemplateInstanceFinalizer = "template.openshift.io/finalizer"
     7  
     8  	// TemplateInstanceOwner is a label applied to all objects created from a template instance
     9  	// which contains the uid of the template instance.
    10  	TemplateInstanceOwner = "template.openshift.io/template-instance-owner"
    11  
    12  	// WaitForReadyAnnotation indicates that the TemplateInstance controller
    13  	// should wait for the object to be ready before reporting the template
    14  	// instantiation complete.
    15  	WaitForReadyAnnotation = "template.alpha.openshift.io/wait-for-ready"
    16  )
    17  

View as plain text