k3s/pkg/cluster/etcd.go
Darren Shepherd 6b5b69378f Add embedded etcd support
This is replaces dqlite with etcd.  The each same UX of dqlite is
followed so there is no change to the CLI args for this.
2020-06-06 16:39:41 -07:00

13 lines
184 B
Go

// +build !no_etcd
package cluster
import (
"github.com/rancher/k3s/pkg/cluster/managed"
"github.com/rancher/k3s/pkg/etcd"
)
func init() {
managed.RegisterDriver(&etcd.ETCD{})
}