mirror of
https://github.com/k3s-io/k3s.git
synced 2026-02-03 20:39:49 -05:00
Better isolates the K3s implementation from the interface, and aligns
the package path with other projects executors. This should also remove
the indirect flannel dep from other projects that don't use the embedded
executor.
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
(cherry picked from commit c3ca02aa75)
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
13 lines
293 B
Go
13 lines
293 B
Go
//go:build linux && !no_embedded_executor
|
|
// +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
|
|
}
|