mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-26 01:22:51 +00:00
Signed-off-by: joyceliu <joyceliu@yunify.com> Co-authored-by: joyceliu <joyceliu@yunify.com>
100 lines
2.6 KiB
Go
100 lines
2.6 KiB
Go
/*
|
|
Copyright 2023 The KubeSphere Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package v1
|
|
|
|
import (
|
|
"github.com/cockroachdb/errors"
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
// Play defined in project.
|
|
type Play struct {
|
|
ImportPlaybook string `yaml:"import_playbook,omitempty"`
|
|
|
|
Base `yaml:",inline"`
|
|
Taggable `yaml:",inline"`
|
|
CollectionSearch `yaml:",inline"`
|
|
|
|
PlayHost PlayHost `yaml:"hosts,omitempty"`
|
|
|
|
// Facts
|
|
GatherFacts bool `yaml:"gather_facts,omitempty"`
|
|
|
|
// defaults to be deprecated, should be 'None' in future
|
|
//GatherSubset []GatherSubset
|
|
//GatherTimeout int
|
|
//FactPath string
|
|
|
|
// Variable Attribute
|
|
VarsFiles []string `yaml:"vars_files,omitempty"`
|
|
//VarsPrompt []string `yaml:"vars_prompt,omitempty"`
|
|
|
|
// Role Attributes
|
|
Roles []Role `yaml:"roles,omitempty"`
|
|
|
|
// Block (Task) Lists Attributes
|
|
Handlers []Block `yaml:"handlers,omitempty"`
|
|
PreTasks []Block `yaml:"pre_tasks,omitempty"`
|
|
PostTasks []Block `yaml:"post_tasks,omitempty"`
|
|
Tasks []Block `yaml:"tasks,omitempty"`
|
|
|
|
// Flag/Setting Attributes
|
|
ForceHandlers bool `yaml:"force_handlers,omitempty"`
|
|
MaxFailPercentage float32 `yaml:"percent,omitempty"`
|
|
Serial PlaySerial `yaml:"serial,omitempty"`
|
|
Strategy string `yaml:"strategy,omitempty"`
|
|
Order string `yaml:"order,omitempty"`
|
|
}
|
|
|
|
// PlaySerial defined in project.
|
|
type PlaySerial struct {
|
|
Data []any
|
|
}
|
|
|
|
// UnmarshalYAML yaml string to serial.
|
|
func (s *PlaySerial) UnmarshalYAML(node *yaml.Node) error {
|
|
switch node.Kind {
|
|
case yaml.ScalarNode:
|
|
s.Data = []any{node.Value}
|
|
|
|
return nil
|
|
case yaml.SequenceNode:
|
|
return node.Decode(&s.Data)
|
|
default:
|
|
return errors.New("unsupported type, excepted any or array")
|
|
}
|
|
}
|
|
|
|
// PlayHost defined in project.
|
|
type PlayHost struct {
|
|
Hosts []string
|
|
}
|
|
|
|
// UnmarshalYAML yaml string to play
|
|
func (p *PlayHost) UnmarshalYAML(node *yaml.Node) error {
|
|
switch node.Kind {
|
|
case yaml.ScalarNode:
|
|
p.Hosts = []string{node.Value}
|
|
|
|
return nil
|
|
case yaml.SequenceNode:
|
|
return node.Decode(&p.Hosts)
|
|
default:
|
|
return errors.New("unsupported type, excepted string or string array")
|
|
}
|
|
}
|