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

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