Documentation ¶
Index ¶
- Variables
- func FindRetryNode(nodes wfv1.Nodes, nodeID string) *wfv1.NodeStatus
- type RetryTweak
- type TaskResults
- type WorkflowController
- func (wfc *WorkflowController) GetContainerRuntimeExecutor(labels labels.Labels) string
- func (wfc *WorkflowController) GetManagedNamespace() string
- func (wfc *WorkflowController) Healthz(w http.ResponseWriter, r *http.Request)
- func (wfc *WorkflowController) Run(ctx context.Context, ...)
- func (wfc *WorkflowController) UpdateConfig(ctx context.Context)
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrDeadlineExceeded indicates the operation exceeded its deadline for execution ErrDeadlineExceeded = errors.New(errors.CodeTimeout, "Deadline exceeded") // ErrParallelismReached indicates this workflow reached its parallelism limit ErrParallelismReached = errors.New(errors.CodeForbidden, "Max parallelism reached") ErrResourceRateLimitReached = errors.New(errors.CodeForbidden, "resource creation rate-limit reached") // ErrTimeout indicates a specific template timed out ErrTimeout = errors.New(errors.CodeTimeout, "timeout") )
Functions ¶
func FindRetryNode ¶ added in v3.1.6
func FindRetryNode(nodes wfv1.Nodes, nodeID string) *wfv1.NodeStatus
FindRetryNode locates the closes retry node ancestor to nodeID
Types ¶
type RetryTweak ¶
RetryTweak is a 2nd order function interface for tweaking the retry
func RetryOnDifferentHost ¶
func RetryOnDifferentHost(retryNodeName string) RetryTweak
RetryOnDifferentHost append affinity with fail host to pod
type TaskResults ¶
type WorkflowController ¶
type WorkflowController struct { // Config is the workflow controller's configuration Config config.Config // contains filtered or unexported fields }
WorkflowController is the controller for workflow resources
func NewWorkflowController ¶
func NewWorkflowController(ctx context.Context, restConfig *rest.Config, kubeclientset kubernetes.Interface, wfclientset wfclientset.Interface, namespace, managedNamespace, executorImage, executorImagePullPolicy, containerRuntimeExecutor, configMap string) (*WorkflowController, error)
NewWorkflowController instantiates a new WorkflowController
func (*WorkflowController) GetContainerRuntimeExecutor ¶
func (wfc *WorkflowController) GetContainerRuntimeExecutor(labels labels.Labels) string
func (*WorkflowController) GetManagedNamespace ¶
func (wfc *WorkflowController) GetManagedNamespace() string
func (*WorkflowController) Healthz ¶ added in v3.0.5
func (wfc *WorkflowController) Healthz(w http.ResponseWriter, r *http.Request)
https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#define-a-liveness-http-request If we are in a state where there are any workflows that have not been reconciled in the last 2m, we've gone wrong.
func (*WorkflowController) Run ¶
func (wfc *WorkflowController) Run(ctx context.Context, wfWorkers, workflowTTLWorkers, podWorkers, podCleanupWorkers int)
Run starts an Workflow resource controller
func (*WorkflowController) UpdateConfig ¶
func (wfc *WorkflowController) UpdateConfig(ctx context.Context)
Source Files ¶
Click to show internal directories.
Click to hide internal directories.