mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-21 15:41:17 +00:00
* Add schema generation and remove default values * fix monitoring schema generation * fix default values Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
8 lines
317 B
Makefile
8 lines
317 B
Makefile
generate:
|
|
readme-generator -v values.yaml -s values.schema.json.tmp -r README.md
|
|
cat values.schema.json.tmp | \
|
|
jq '.properties.image.enum = ["ubuntu", "cirros", "alpine", "fedora"]' | \
|
|
jq '.properties.resources.properties.memory["x-display"] = "slider"' \
|
|
> values.schema.json
|
|
rm -f values.schema.json.tmp
|