Pipeline Policy
These rules are applied to Tekton pipeline definitions.
1. Pipeline definition Task bundle policies
To be able to reproduce and audit builds accurately it’s important to know exactly what happens during the build. To do this Enterprise Contract requires that all tasks are defined in a set of known and trusted task bundles. This package includes rules to confirm that the tasks in a Pipeline definition are defined in task bundles, and that the task bundles are from the list of known and trusted bundles.
-
Package name:
task_bundle
1.1. Missing required data
Confirm the trusted_tasks
rule data was provided, since it’s required by the policy rules in this package.
-
Rule type: FAILURE
-
FAILURE message:
Missing required trusted_tasks data
-
Code:
task_bundle.missing_required_data
1.2. Task bundle is not trusted
For each Task in the Pipeline definition, check if the Tekton Bundle used is a trusted task.
-
Rule type: FAILURE
-
FAILURE message:
Pipeline task '%s' uses an untrusted task bundle '%s'
-
Code:
task_bundle.untrusted_task_bundle
1.3. Task bundle is out of date
For each Task in the Pipeline definition, check if the Tekton Bundle used is the most recent.
-
Rule type: WARNING
-
WARNING message:
Pipeline task '%s' uses an out of date task bundle '%s'
-
Code:
task_bundle.out_of_date_task_bundle
1.4. Task bundle reference is empty
Check that a valid task bundle reference is being used.
-
Rule type: FAILURE
-
FAILURE message:
Pipeline task '%s' uses an empty bundle image reference
-
Code:
task_bundle.empty_task_bundle_reference
1.5. Task bundle was not used or is not defined
Check for the existence of a task bundle. This rule will fail if the task is not called from a bundle.
-
Rule type: FAILURE
-
FAILURE message:
Pipeline task '%s' does not contain a bundle reference
-
Code:
task_bundle.disallowed_task_reference
1.6. Unpinned task bundle reference
Check if the Tekton Bundle used for the Tasks in the Pipeline definition is pinned to a digest.
-
Rule type: WARNING
-
WARNING message:
Pipeline task '%s' uses an unpinned task bundle reference '%s'
-
Code:
task_bundle.unpinned_task_bundle
2. Pipeline definition sanity checks
Policies to confirm the Tekton Pipeline definition has the expected kind.
-
Package name:
basic
2.1. Pipeline definition has expected kind
Confirm that the pipeline definition has the kind "Pipeline".
-
Rule type: FAILURE
-
FAILURE message:
Unexpected kind '%s' for pipeline definition
-
Code:
basic.expected_kind
3. Required tasks
Konflux expects that certain Tekton tasks are executed during image builds. This package includes policy rules to confirm that the pipeline definition includes those required tasks.
-
Package name:
required_tasks
3.1. Missing future required task
Produce a warning when a task that will be required in the future is not currently included in the Pipeline definition.
-
Rule type: WARNING
-
WARNING message:
%s is missing and will be required on %s
-
Code:
required_tasks.missing_future_required_task
3.2. Missing required task
Ensure that the set of required tasks is included in the Pipeline definition.
-
Rule type: FAILURE
-
FAILURE message:
%s is missing
-
Code:
required_tasks.missing_required_task
3.3. Pipeline contains tasks
Confirm at least one task is present in the pipeline definition.
-
Rule type: FAILURE
-
FAILURE message:
No tasks found in pipeline
-
Code:
required_tasks.tasks_found
3.4. Required task list is present in rule data
Confirm the required-tasks
rule data was provided, since it’s required by the policy rules in this package.
-
Rule type: FAILURE
-
FAILURE message:
The required tasks list is missing from the rule data
-
Code:
required_tasks.required_tasks_list_present
3.5. Required tasks found in pipeline definition
Produce a warning if a list of current or future required tasks does not exist in the rule data.
-
Rule type: WARNING
-
WARNING message:
Required tasks do not exist for pipeline %q
-
Code:
required_tasks.required_tasks_found