2022-10-13 22:00:22 +08:00
|
|
|
package integration
|
|
|
|
|
2022-10-23 18:41:35 +08:00
|
|
|
import (
|
|
|
|
v1 "github.com/juanfont/headscale/gen/go/headscale/v1"
|
|
|
|
)
|
2022-10-13 22:00:22 +08:00
|
|
|
|
|
|
|
type ControlServer interface {
|
|
|
|
Shutdown() error
|
2022-10-24 22:40:49 +08:00
|
|
|
Execute(command []string) (string, error)
|
2022-10-13 22:00:22 +08:00
|
|
|
GetHealthEndpoint() string
|
|
|
|
GetEndpoint() string
|
|
|
|
WaitForReady() error
|
|
|
|
CreateNamespace(namespace string) error
|
|
|
|
CreateAuthKey(namespace string) (*v1.PreAuthKey, error)
|
2022-10-23 18:41:35 +08:00
|
|
|
ListMachinesInNamespace(namespace string) ([]*v1.Machine, error)
|
2022-10-13 22:00:22 +08:00
|
|
|
}
|