Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cmd: crictl: add a config command #194

Merged
merged 1 commit into from
Nov 19, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 83 additions & 0 deletions cmd/crictl/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,13 @@ limitations under the License.
package main

import (
"fmt"
"io/ioutil"
"os"
"strconv"

"github.com/Sirupsen/logrus"
"github.com/urfave/cli"
"gopkg.in/yaml.v2"
)

Expand All @@ -45,3 +50,81 @@ func ReadConfig(filepath string) (*Config, error) {
}
return &config, err
}

func writeConfig(c *Config, filepath string) error {
data, err := yaml.Marshal(c)
if err != nil {
return err
}
return ioutil.WriteFile(filepath, data, 0644)
}

var configCommand = cli.Command{
Name: "config",
Usage: "Get and set crictl options",
ArgsUsage: "[<options>]",
Flags: []cli.Flag{
cli.StringFlag{
Name: "get",
Usage: "get value: name",
},
},
Action: func(context *cli.Context) error {
configFile := context.GlobalString("config")
if _, err := os.Stat(configFile); err != nil {
if err := writeConfig(nil, configFile); err != nil {
return err
}
}
// Get config from file.
config, err := ReadConfig(configFile)
if err != nil {
return fmt.Errorf("Failed to load config file: %v", err)
}
if context.IsSet("get") {
get := context.String("get")
switch get {
case "runtime-endpoint":
fmt.Println(config.RuntimeEndpoint)
case "image-endpoint":
fmt.Println(config.ImageEndpoint)
case "timeout":
fmt.Println(config.Timeout)
case "debug":
fmt.Println(config.Debug)
default:
logrus.Fatalf("No section named %s", get)
}
return nil
}
key := context.Args().First()
if key == "" {
return cli.ShowSubcommandHelp(context)
}
value := context.Args().Get(1)
switch key {
case "runtime-endpoint":
config.RuntimeEndpoint = value
case "image-endpoint":
config.ImageEndpoint = value
case "timeout":
n, err := strconv.Atoi(value)
if err != nil {
logrus.Fatal(err)
}
config.Timeout = n
case "debug":
var debug bool
if value == "true" {
debug = true
} else {
logrus.Fatal("use true|false for debug")
}
config.Debug = debug
default:
logrus.Fatalf("No section named %s", key)
}

return writeConfig(config, configFile)
},
}
1 change: 1 addition & 0 deletions cmd/crictl/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ func main() {
stopContainerCommand,
stopPodSandboxCommand,
updateContainerCommand,
configCommand,
}

app.Flags = []cli.Flag{
Expand Down