1
0
mirror of https://github.com/rancher/norman.git synced 2025-09-14 06:12:33 +00:00
Files
norman/pkg/kwrapper/k8s/k3s.go

15 lines
245 B
Go
Raw Normal View History

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