mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
97eb28a01a
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
40 lines
913 B
Go
40 lines
913 B
Go
package managed
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"github.com/rancher/k3s/pkg/clientaccess"
|
|
"github.com/rancher/k3s/pkg/daemons/config"
|
|
)
|
|
|
|
var (
|
|
defaultDriver string
|
|
drivers []Driver
|
|
)
|
|
|
|
type Driver interface {
|
|
IsInitialized(ctx context.Context, config *config.Control) (bool, error)
|
|
Register(ctx context.Context, config *config.Control, handler http.Handler) (http.Handler, error)
|
|
Reset(ctx context.Context, clientAccessInfo *clientaccess.Info) error
|
|
Start(ctx context.Context, clientAccessInfo *clientaccess.Info) error
|
|
Test(ctx context.Context, clientAccessInfo *clientaccess.Info) error
|
|
Restore(ctx context.Context) error
|
|
EndpointName() string
|
|
}
|
|
|
|
func RegisterDriver(d Driver) {
|
|
drivers = append(drivers, d)
|
|
}
|
|
|
|
func Registered() []Driver {
|
|
return drivers
|
|
}
|
|
|
|
func Default() string {
|
|
if defaultDriver == "" && len(drivers) == 1 {
|
|
return drivers[0].EndpointName()
|
|
}
|
|
return defaultDriver
|
|
}
|