Spinnaker Pipeline SpEL Expressions: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 23: Line 23:
</syntaxhighlight>
</syntaxhighlight>
returns the selected judgment value from the specified Manual Judgment stage. <code><stage-name></code> should be replaced with the actual name of the Manual Judgment stage
returns the selected judgment value from the specified Manual Judgment stage. <code><stage-name></code> should be replaced with the actual name of the Manual Judgment stage
Example:
<syntaxhighlight lang='groovy'>
${#judgment("<stage-name>")}
</syntaxhighlight>
execution.stages[n].context.judgmentInput=="rollback"


=Displaying Pipeline State at Runtime=
=Displaying Pipeline State at Runtime=

Revision as of 03:18, 24 March 2022

External

Internal

Overview

The Spinnaker pipeline expression language is based on Spring Expression Language (SpEL).

Accessing Pipeline Element State

A Tag set by a Trigger

The tag set by a trigger can be accessed with the following expression:

- image: "something/something-else:${trigger['tag']}"

The Judgment Value set by a Manual Judgment Stage

https://spinnaker.io/docs/reference/pipeline/expressions/#judgmentstring
${#judgment("<stage-name>")}

returns the selected judgment value from the specified Manual Judgment stage. <stage-name> should be replaced with the actual name of the Manual Judgment stage Example:

${#judgment("<stage-name>")}

execution.stages[n].context.judgmentInput=="rollback"

Displaying Pipeline State at Runtime

Conditional Expressions

https://spinnaker.io/docs/reference/pipeline/expressions/#comparisons
 ${ execution.stages.?[ name == 'Rollback Decision' ][0].judgementInput == 'Rollback' }