2023-10-12 14:03:03 -04:00
|
|
|
# spry
|
|
|
|
|
2023-10-13 09:13:18 -04:00
|
|
|
Basic [Sprig](https://masterminds.github.io/sprig/) Template Rendering.
|
|
|
|
|
|
|
|
## Usage Examples
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ ./spry
|
2023-10-13 09:51:56 -04:00
|
|
|
Usage of ./spry [Options] [Template Files]:
|
2023-10-13 09:13:18 -04:00
|
|
|
-d string
|
|
|
|
Output delimiter between template files rendered (default "---")
|
|
|
|
-f value
|
|
|
|
Specify a values file (JSON or YAML)
|
2023-10-13 09:26:16 -04:00
|
|
|
-helm
|
2023-10-13 09:51:56 -04:00
|
|
|
Helm compatibility: provided values will be nested under .Values
|
2023-10-13 09:13:18 -04:00
|
|
|
-set value
|
|
|
|
Set a specific value (foo.bar=spam)
|
2023-10-13 09:51:56 -04:00
|
|
|
|
|
|
|
Template Files can also be directories to recurse for templates.
|
|
|
|
|
|
|
|
If no template files are provided it will attempt read from STDIN.
|
|
|
|
If no input is available from STDIN it will print this usage message instead.
|
|
|
|
Pass only '-' to Template Files to force waiting for input.
|
2023-10-13 09:13:18 -04:00
|
|
|
```
|