You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
550 B
16 lines
550 B
2 years ago
|
package framework
|
||
|
|
||
|
import "k8s.io/client-go/rest"
|
||
|
|
||
|
type ClusterConfig struct {
|
||
|
Name string // 存储名字,这个名字在使用 kind create cluster 的时候 --name 传入
|
||
|
Rest *rest.Config `json:"-"` // 链接创建的 k8s 的 client。这个client比较低级。
|
||
|
MasterIP string // 集群的 master ip。方便在一些需要直接和集群通讯的测试的时候使用。
|
||
|
}
|
||
|
|
||
|
type ClusterProvider interface {
|
||
|
Validate(config *Config) error
|
||
|
Deploy(config *Config) (ClusterConfig, error)
|
||
|
Destroy(config *Config) error
|
||
|
}
|