update examples

This commit is contained in:
Christian Lempa 2024-04-19 15:28:52 +02:00
parent 050b157cda
commit b33494f574
2 changed files with 19 additions and 1 deletions

View File

@ -59,4 +59,6 @@ inputs:
type: STRING
tasks:
# your-tasks
- id: using_inputs
type: io.kestra.core.tasks.log.Log
message: "{{ inputs.string }}"

16
kestra/variables.yaml Normal file
View File

@ -0,0 +1,16 @@
# Kestra Variable Template
# ---
#
#
#
id: variables
namespace: # your-namespace
variables:
variable-name: "variable-value"
tasks:
- id: using_variables
type: io.kestra.core.tasks.log.Log
message: "{{ vars.variable-name }}"