mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
32086717fc
* Convert all flags to pointers for consistency Signed-off-by: Derek Nola <derek.nola@suse.com>
18 lines
437 B
Go
18 lines
437 B
Go
package cmds
|
|
|
|
import (
|
|
"github.com/k3s-io/k3s/pkg/version"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
var (
|
|
// ConfigFlag is here to show to the user, but the actually processing is done by configfileargs before
|
|
// call urfave
|
|
ConfigFlag = &cli.StringFlag{
|
|
Name: "config,c",
|
|
Usage: "(config) Load configuration from `FILE`",
|
|
EnvVar: version.ProgramUpper + "_CONFIG_FILE",
|
|
Value: "/etc/rancher/" + version.Program + "/config.yaml",
|
|
}
|
|
)
|