From 5ca90d70ffcfab131f79d942d84f1cad04b26f10 Mon Sep 17 00:00:00 2001 From: "M. Mert Yildiran" Date: Wed, 9 Aug 2023 20:16:49 +0300 Subject: [PATCH] :zap: Have consistent case style in `values.yaml` --- config/configStructs/scriptingConfig.go | 2 +- helm-chart/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/configStructs/scriptingConfig.go b/config/configStructs/scriptingConfig.go index deb61e298..5e3bc1d8c 100644 --- a/config/configStructs/scriptingConfig.go +++ b/config/configStructs/scriptingConfig.go @@ -12,7 +12,7 @@ import ( type ScriptingConfig struct { Env map[string]interface{} `yaml:"env" json:"env"` Source string `yaml:"source" json:"source" default:""` - WatchScripts bool `yaml:"watchScripts" json:"watchScripts" default:"true"` + WatchScripts bool `yaml:"watchscripts" json:"watchscripts" default:"true"` } func (config *ScriptingConfig) GetScripts() (scripts []*misc.Script, err error) { diff --git a/helm-chart/values.yaml b/helm-chart/values.yaml index eed3e5e53..8f1deccbe 100644 --- a/helm-chart/values.yaml +++ b/helm-chart/values.yaml @@ -70,4 +70,4 @@ license: "" scripting: env: {} source: "" - watchScripts: true + watchscripts: true