Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Command = cli.Command{ Name: "version", Usage: "print the client and server versions", Action: func(context *cli.Context) error { fmt.Println("Client:") fmt.Println(" Version: ", version.Version) fmt.Println(" Revision:", version.Revision) fmt.Println("") client, ctx, cancel, err := commands.NewClient(context) if err != nil { return err } defer cancel() v, err := client.Version(ctx) if err != nil { return err } fmt.Println("Server:") fmt.Println(" Version: ", v.Version) fmt.Println(" Revision:", v.Revision) di, err := client.Server(ctx) if err != nil { return err } fmt.Println(" UUID:", di.UUID) if v.Version != version.Version { fmt.Fprintln(os.Stderr, "WARNING: version mismatch") } if v.Revision != version.Revision { fmt.Fprintln(os.Stderr, "WARNING: revision mismatch") } return nil }, }
Command is a cli command to output the client and containerd server version
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.