1
0
mirror of https://github.com/rancher/norman.git synced 2025-08-19 15:57:09 +00:00
norman/pkg/kwrapper/k8s/k3s.go
2020-02-12 15:26:36 -07:00

15 lines
245 B
Go

// +build !linux
package k8s
import (
"context"
"fmt"
"k8s.io/client-go/tools/clientcmd"
)
func getEmbedded(ctx context.Context) (bool, clientcmd.ClientConfig, error) {
return false, nil, fmt.Errorf("embedded only supported on linux")
}