Files
k3s/pkg/cluster/etcd.go
Brian Downs 7807d8117a delete nocluster file and remove build tag
Signed-off-by: Brian Downs <brian.downs@gmail.com>
2021-04-12 11:07:02 -07:00

11 lines
166 B
Go

package cluster
import (
"github.com/rancher/k3s/pkg/cluster/managed"
"github.com/rancher/k3s/pkg/etcd"
)
func init() {
managed.RegisterDriver(etcd.NewETCD())
}