diff --git a/manifests/kcover/values.schema.json b/manifests/kcover/values.schema.json new file mode 100644 index 0000000..786963c --- /dev/null +++ b/manifests/kcover/values.schema.json @@ -0,0 +1,19 @@ +{ + "$schema": "https://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "agent": { + "type": "object", + "properties": { + "flavor": { + "type": "string", + "enum": [ + "base", + "metax" + ], + "default": "base" + } + } + } + } +}