mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-03 15:20:04 +00:00
* Add functionality for etcd snapshot/restore to and from S3 compatible backends.
* Update etcd restore functionality to extract and write certificates and configs from snapshot.
Signed-off-by: Brian Downs <brian.downs@gmail.com>
(cherry picked from commit 4d1f9eda9d)
10 lines
165 B
Go
10 lines
165 B
Go
// +build !darwin,!linux,!freebsd,!windows
|
|
|
|
package xid
|
|
|
|
import "errors"
|
|
|
|
func readPlatformMachineID() (string, error) {
|
|
return "", errors.New("not implemented")
|
|
}
|