fix ks account options
This commit is contained in:
11
cmd/ks-iam/app/options/validation.go
Normal file
11
cmd/ks-iam/app/options/validation.go
Normal file
@@ -0,0 +1,11 @@
|
||||
package options
|
||||
|
||||
func (s *ServerRunOptions) Validate() []error {
|
||||
errs := []error{}
|
||||
|
||||
errs = append(errs, s.KubernetesOptions.Validate()...)
|
||||
errs = append(errs, s.GenericServerRunOptions.Validate()...)
|
||||
errs = append(errs, s.LdapOptions.Validate()...)
|
||||
|
||||
return errs
|
||||
}
|
||||
Reference in New Issue
Block a user