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

16 lines
247 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"
"k8s.io/client-go/rest"
)
func getEmbedded(ctx context.Context) (bool, context.Context, *rest.Config, error) {
2019-08-19 22:40:03 +00:00
return false, ctx, nil, fmt.Errorf("embedded only supported on linux")
2018-10-24 23:21:28 +00:00
}