Documentation ¶
Index ¶
- func LintWorkflowDir(wfClientset wfclientset.Interface, namespace, dirPath string, strict bool) error
- func LintWorkflowFile(wfClientset wfclientset.Interface, namespace, filePath string, strict bool) error
- func LintWorkflowTemplateDir(wfClientset wfclientset.Interface, namespace, dirPath string, strict bool) error
- func LintWorkflowTemplateFile(wfClientset wfclientset.Interface, namespace, filePath string, strict bool) error
- func ValidateWorkflow(wfClientset wfclientset.Interface, namespace string, wf *wfv1.Workflow, ...) error
- func ValidateWorkflowTemplate(wfClientset wfclientset.Interface, namespace string, ...) error
- type FakeArguments
- type ValidateOpts
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func LintWorkflowDir ¶
func LintWorkflowDir(wfClientset wfclientset.Interface, namespace, dirPath string, strict bool) error
LintWorkflowDir validates all workflow manifests in a directory. Ignores non-workflow manifests
func LintWorkflowFile ¶
func LintWorkflowFile(wfClientset wfclientset.Interface, namespace, filePath string, strict bool) error
LintWorkflowFile lints a json file, or multiple workflow manifest in a single yaml file. Ignores non-workflow manifests
func LintWorkflowTemplateDir ¶
func LintWorkflowTemplateDir(wfClientset wfclientset.Interface, namespace, dirPath string, strict bool) error
LintWorkflowTemplateDir validates all workflow manifests in a directory. Ignores non-workflow template manifests
func LintWorkflowTemplateFile ¶
func LintWorkflowTemplateFile(wfClientset wfclientset.Interface, namespace, filePath string, strict bool) error
LintWorkflowTemplateFile lints a json file, or multiple workflow template manifest in a single yaml file. Ignores non-workflow template manifests
func ValidateWorkflow ¶
func ValidateWorkflow(wfClientset wfclientset.Interface, namespace string, wf *wfv1.Workflow, opts ValidateOpts) error
ValidateWorkflow accepts a workflow and performs validation against it.
func ValidateWorkflowTemplate ¶
func ValidateWorkflowTemplate(wfClientset wfclientset.Interface, namespace string, wftmpl *wfv1.WorkflowTemplate) error
ValidateWorkflow accepts a workflow template and performs validation against it.
Types ¶
type FakeArguments ¶
type FakeArguments struct{}
func (*FakeArguments) GetArtifactByName ¶
func (args *FakeArguments) GetArtifactByName(name string) *wfv1.Artifact
func (*FakeArguments) GetParameterByName ¶
func (args *FakeArguments) GetParameterByName(name string) *wfv1.Parameter
type ValidateOpts ¶
type ValidateOpts struct { // Lint indicates if this is performing validation in the context of linting. If true, will // skip some validations which is permissible during linting but not submission (e.g. missing // input parameters to the workflow) Lint bool // ContainerRuntimeExecutor will trigger additional validation checks specific to different // types of executors. For example, the inability of kubelet/k8s executors to copy artifacts // out of the base image layer. If unspecified, will use docker executor validation ContainerRuntimeExecutor string }
ValidateOpts provides options when linting