mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
17 lines
377 B
Go
17 lines
377 B
Go
|
//go:build linux && !no_embedded_executor
|
||
|
// +build linux,!no_embedded_executor
|
||
|
|
||
|
package executor
|
||
|
|
||
|
import (
|
||
|
daemonconfig "github.com/k3s-io/k3s/pkg/daemons/config"
|
||
|
|
||
|
// registering k3s cloud provider
|
||
|
_ "github.com/k3s-io/k3s/pkg/cloudprovider"
|
||
|
)
|
||
|
|
||
|
func platformKubeProxyArgs(nodeConfig *daemonconfig.Node) map[string]string {
|
||
|
argsMap := map[string]string{}
|
||
|
return argsMap
|
||
|
}
|