github.com/openshift/installer@v1.4.17/pkg/asset/agent/workflow/commons.go (about) 1 package workflow 2 3 // AgentWorkflowType defines the supported 4 // agent workflows. 5 type AgentWorkflowType string 6 7 const ( 8 // AgentWorkflowTypeInstall identifies the install workflow. 9 AgentWorkflowTypeInstall AgentWorkflowType = "install" 10 // AgentWorkflowTypeAddNodes identifies the add nodes workflow. 11 AgentWorkflowTypeAddNodes AgentWorkflowType = "addnodes" 12 13 agentWorkflowFilename = ".agentworkflow" 14 )