Documentation
This is the documentation for the latest development version of Cartographer. Both code and docs may be unstable and these docs are not guaranteed to be up to date or correct. See the latest version.
Architecture and Concepts
Overview
Runnable is a component of Cartographer. The Runnable
CRD provides an intermediate layer to update immutable
resources. For example, Tekton does not allow updating TaskRuns and PipelineRuns, so we’ll update Runnable to test new
commits.
Concepts
[comment]: <> (### Edge vs level-driven triggers) [comment]: <> (TODO)
ClusterRunTemplate
With the addition of Runnable, there is a new template, ClusterRunTemplate
. A ClusterRunTemplate
will always
create resources (i.e. kubectl create
).
ClusterRunTemplate consists of:
- The Kubernetes resource yaml as
spec.template
- Output paths which tell Cartographer where to find the output of the Kubernetes resource
- The outputs will be added to
runnable.status.outputs
- The outputs will be added to
Runnable
Runnables consist of:
- RunTemplateRef: a reference to a
ClusterRunTemplate
which contains the yaml of the immutable resource to be created - Selector: used to dynamically discover a resource that is needed in the
ClusterRunTemplate
. The matching resource is available in the template data asselected
. - Inputs: arbitrary key, value pairs that are passed along to the
ClusterRunTemplate
.
Template Data
See Template Data for templating in Cartographer.
The ClusterRunTemplate is provided a data structure that contains:
- runnable
- selected
Runnable
The entire Runnable resource is available for retrieving values. To use a Runnable value, use the format:
- Simple template:
$(runnable.<field-name>.(...))$
- ytt: not currently supported, see issue
Runnable Examples
Simple template | ytt |
---|---|
$(runnable.metadata.name)$ |
N/A |
$(runnable.spec.inputs)$ |
N/A |
Selected
The entire selected resource is available for retrieving values. To use selected value, use the format:
- Simple template:
$(selected.<field-name>.(...))$
- ytt: not currently supported, see issue
Selected Examples
Simple template | ytt |
---|---|
$(selected.metadata.name)$ |
N/A |
Theory of Operation
When Cartographer reconciles a Runnable, the resource in the specified ClusterRunTemplate
is applied:
- Resolve Selector: attempt to find a resource that matches the selector
- Generate and apply resource spec: Apply the result of interpolating
spec.template
in theClusterRunTemplate
, selected, and the runnable spec. - Retrieve Output: The output to use is specified in the template output path
- Get the output from the most recently created resource, where
status.conditions[?(@.type=="Succeeded")].status == True
. - Store the output in
runnable.status.outputs
.
- Get the output from the most recently created resource, where
Runnable In Action
Using Runnable with a Supply Chain
To see an example of the rest of the supply chain, see ClusterSupplyChain.