mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-20 22:41:18 +00:00
11 lines
423 B
Makefile
11 lines
423 B
Makefile
include ../../../scripts/package.mk
|
|
|
|
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", "talos"]' | \
|
|
jq '.properties.resources.properties.memory["x-display"] = "slider"' | \
|
|
jq '.properties.externalPorts.items.type = "integer"' \
|
|
> values.schema.json
|
|
rm -f values.schema.json.tmp
|