16 lines
588 B
Go
16 lines
588 B
Go
package state
|
|
|
|
type EnvironmentSpec struct {
|
|
Values []interface{} `yaml:"values"`
|
|
Secrets []string `yaml:"secrets"`
|
|
|
|
// MissingFileHandler instructs helmfile to fail when unable to find a environment values file listed
|
|
// under `environments.NAME.values`.
|
|
//
|
|
// Possible values are "Error", "Warn", "Info", "Debug". The default is "Error".
|
|
//
|
|
// Use "Warn", "Info", or "Debug" if you want helmfile to not fail when a values file is missing, while just leaving
|
|
// a message about the missing file at the log-level.
|
|
MissingFileHandler *string `yaml:"missingFileHandler"`
|
|
}
|