volcano.sh/apis@v1.8.2/pkg/apis/flow/v1alpha1/actions.go (about)

     1  package v1alpha1
     2  
     3  // Action is the action that JobFlow controller will take according to the event.
     4  type Action string
     5  
     6  const (
     7  	// SyncJobFlowAction is the action to sync JobFlow status.
     8  	SyncJobFlowAction Action = "SyncJobFlow"
     9  	// SyncJobTemplateAction is the action to sync JobTemplate status.
    10  	SyncJobTemplateAction Action = "SyncJobTemplate"
    11  )