We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cfb5c3 commit 0d900dfCopy full SHA for 0d900df
1 file changed
pkg/qsealrc/models.go
@@ -9,10 +9,10 @@ import (
9
const QsealrcFileName = "qsealrc.yaml"
10
11
type Qsealrc struct {
12
- Version string `yaml:"version"`
13
- Namespace string `yaml:"namespace"`
14
- ControllerName string `yaml:"controller_name"`
15
- ControllerNamespace string `yaml:"controller_namespace"`
+ Version string `yaml:"version" default:"1"`
+ Namespace string `yaml:"namespace" required:"true"`
+ ControllerName string `yaml:"controller_name" required:"true"`
+ ControllerNamespace string `yaml:"controller_namespace" required:"true"`
16
Secrets []Secret `yaml:"secrets"`
17
}
18
0 commit comments