1
0
mirror of https://github.com/rancher/norman.git synced 2025-09-13 05:42:37 +00:00
Files
norman/pkg/kwrapper/k8s/k3s.go
2019-08-19 16:42:53 -07:00

16 lines
247 B
Go

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