Files
meshbook/examples/echo.yaml

13 lines
276 B
YAML
Raw Normal View History

2024-11-28 09:44:35 +01:00
---
2024-11-29 09:27:47 +01:00
name: Echo some text in the terminal of the device
group: "Kubernetes"
2024-11-28 09:44:35 +01:00
variables:
- name: var1
value: "Testing"
- name: var2
value: "with a slash!"
tasks:
- name: Echo!
command: "echo {{ var1 }}/{{ var2 }}"
- name: Echo 2!
command: "echo womp womp"