github.com/redhat-appstudio/release-service@v0.0.0-20240507143925-083712697924/api/v1alpha1/match_conditions.go (about)

     1  package v1alpha1
     2  
     3  import "github.com/konflux-ci/operator-toolkit/conditions"
     4  
     5  const (
     6  	// matchedConditionType is the type used to track the status of the ReleasePlan being matched to a
     7  	// ReleasePlanAdmission or vice versa
     8  	MatchedConditionType conditions.ConditionType = "Matched"
     9  )
    10  
    11  const (
    12  	// MatchedReason is the reason set when a resource is matched
    13  	MatchedReason conditions.ConditionReason = "Matched"
    14  )