Add Ingress and Storage test slides with Vagrant instructions

This commit is contained in:
jon brookes 2025-08-27 10:54:58 +01:00
parent 09f01d409f
commit f3d077e3c4
19 changed files with 319 additions and 38 deletions

View file

@ -2,9 +2,9 @@
level: 2
---
# Plugins
# RunCommand plugins
Plugins are any script or executable that print output and exit with a number.
Plugins are any script or executable that print output and exit with a system code of 0 (OK) or greater (error).
````md magic-move {lines: true}
```bash
@ -28,3 +28,21 @@ exit 1
````
<!--
RunCommand plugins are scripts or executables that do two things
1. print some output that can be seen and logged
2. exit with a system code
The example is of a bash script but it could be any scripting language that can do the same.
It could be a compiled program, so long as it also outputs logging information to the terminal and exits with a system code of [0|1 or greater]
Long running scripts or commands are expected
exiting with 1 or greater will signify a failure of some kind
-->