1
0
mirror of https://github.com/rancher/norman.git synced 2025-08-20 08:13:00 +00:00
norman/pkg/kwrapper/k8s/k3s.go

15 lines
245 B
Go
Raw Normal View History

2019-08-19 16:20:04 +00:00
// +build !linux
package k8s
import (
"context"
2019-08-19 22:40:03 +00:00
"fmt"
2020-02-12 22:26:14 +00:00
"k8s.io/client-go/tools/clientcmd"
)
2020-02-12 22:26:14 +00:00
func getEmbedded(ctx context.Context) (bool, clientcmd.ClientConfig, error) {
return false, nil, fmt.Errorf("embedded only supported on linux")
}