mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
17 lines
315 B
Go
17 lines
315 B
Go
package cmds
|
|
|
|
import (
|
|
"github.com/rancher/spur/cli"
|
|
)
|
|
|
|
var (
|
|
DefaultConfig = "/etc/rancher/k3s/flags.conf"
|
|
ConfigFlag = cli.StringFlag{
|
|
Name: "config",
|
|
Aliases: []string{"c"},
|
|
Usage: "(config) Load configuration from `FILE`",
|
|
EnvVars: []string{"K3S_CONFIG_FILE"},
|
|
Value: DefaultConfig,
|
|
}
|
|
)
|