mirror of
https://github.com/k3s-io/k3s.git
synced 2026-02-03 20:39:49 -05:00
12 lines
255 B
Go
12 lines
255 B
Go
//go:build linux && !no_embedded_executor
|
|
|
|
package embed
|
|
|
|
import (
|
|
daemonconfig "github.com/k3s-io/k3s/pkg/daemons/config"
|
|
)
|
|
|
|
func platformKubeProxyArgs(nodeConfig *daemonconfig.Node) map[string]string {
|
|
argsMap := map[string]string{}
|
|
return argsMap
|
|
}
|