mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-31 07:49:59 +00:00
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.
13 lines
184 B
Go
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{})
|
|
}
|