mirror of
https://github.com/siderolabs/kres.git
synced 2026-02-05 09:45:35 +01:00
- Add valuesFiles option to HelmTemplate config for passing additional values files to helm template command - Remove redundant -f values.yaml flag from helm template (chart's default values.yaml is used automatically) - Remove --template-files flag with typo from helm-docs (default README.md.gotmpl is correct) - Add buildx setup step to helm workflow to fix CI hang (was missing remote buildkit driver) - Extract SetupBuildxStep() to avoid code duplication - Add test helm chart to validate helm CI flow - Fix the workdir of helm-docs Signed-off-by: Utku Ozdemir <utku.ozdemir@siderolabs.com>
19 lines
395 B
JSON
19 lines
395 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"apiKey": {
|
|
"description": "Required API key (must be provided)",
|
|
"type": "string"
|
|
},
|
|
"fullnameOverride": {
|
|
"description": "Fullname override",
|
|
"type": "string"
|
|
},
|
|
"nameOverride": {
|
|
"description": "Name override",
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|