2016-09-23 07:50:05 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2016-10-17 19:25:30 +00:00
|
|
|
"log"
|
2016-11-02 06:36:42 +00:00
|
|
|
"sort"
|
2016-10-17 19:25:30 +00:00
|
|
|
"strings"
|
2016-09-26 18:28:03 +00:00
|
|
|
"time"
|
2016-09-23 07:50:05 +00:00
|
|
|
|
|
|
|
"github.com/urfave/cli"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
pb "k8s.io/kubernetes/pkg/kubelet/api/v1alpha1/runtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
var podSandboxCommand = cli.Command{
|
|
|
|
Name: "pod",
|
|
|
|
Subcommands: []cli.Command{
|
2016-09-26 08:07:46 +00:00
|
|
|
runPodSandboxCommand,
|
2016-09-23 07:50:05 +00:00
|
|
|
stopPodSandboxCommand,
|
|
|
|
removePodSandboxCommand,
|
|
|
|
podSandboxStatusCommand,
|
2016-09-26 19:21:37 +00:00
|
|
|
listPodSandboxCommand,
|
2016-09-23 07:50:05 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-09-26 08:07:46 +00:00
|
|
|
var runPodSandboxCommand = cli.Command{
|
2016-12-14 17:15:37 +00:00
|
|
|
Name: "run",
|
|
|
|
Usage: "run a pod",
|
2016-09-23 07:50:05 +00:00
|
|
|
Flags: []cli.Flag{
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "config",
|
2016-12-14 17:15:37 +00:00
|
|
|
Value: "",
|
2016-09-23 07:50:05 +00:00
|
|
|
Usage: "the path of a pod sandbox config file",
|
|
|
|
},
|
2016-09-26 21:50:34 +00:00
|
|
|
cli.StringFlag{
|
|
|
|
Name: "name",
|
|
|
|
Value: "",
|
|
|
|
Usage: "the name of the pod sandbox",
|
|
|
|
},
|
2016-10-17 19:33:48 +00:00
|
|
|
cli.StringSliceFlag{
|
|
|
|
Name: "label",
|
|
|
|
Usage: "add key=value labels to the container",
|
|
|
|
},
|
2016-09-23 07:50:05 +00:00
|
|
|
},
|
|
|
|
Action: func(context *cli.Context) error {
|
|
|
|
// Set up a connection to the server.
|
|
|
|
conn, err := getClientConnection(context)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to connect: %v", err)
|
|
|
|
}
|
|
|
|
defer conn.Close()
|
|
|
|
client := pb.NewRuntimeServiceClient(conn)
|
|
|
|
|
2016-10-17 19:33:48 +00:00
|
|
|
opts := createOptions{
|
|
|
|
configPath: context.String("config"),
|
|
|
|
name: context.String("name"),
|
|
|
|
labels: make(map[string]string),
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, l := range context.StringSlice("label") {
|
|
|
|
pair := strings.Split(l, "=")
|
|
|
|
if len(pair) != 2 {
|
|
|
|
return fmt.Errorf("incorrectly specified label: %v", l)
|
|
|
|
}
|
|
|
|
opts.labels[pair[0]] = pair[1]
|
|
|
|
}
|
|
|
|
|
2016-09-26 08:07:46 +00:00
|
|
|
// Test RuntimeServiceClient.RunPodSandbox
|
2016-10-17 19:33:48 +00:00
|
|
|
err = RunPodSandbox(client, opts)
|
2016-09-23 07:50:05 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Creating the pod sandbox failed: %v", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
var stopPodSandboxCommand = cli.Command{
|
|
|
|
Name: "stop",
|
|
|
|
Usage: "stop a pod sandbox",
|
|
|
|
Flags: []cli.Flag{
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "id",
|
|
|
|
Value: "",
|
|
|
|
Usage: "id of the pod sandbox",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Action: func(context *cli.Context) error {
|
|
|
|
// Set up a connection to the server.
|
|
|
|
conn, err := getClientConnection(context)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to connect: %v", err)
|
|
|
|
}
|
|
|
|
defer conn.Close()
|
|
|
|
client := pb.NewRuntimeServiceClient(conn)
|
|
|
|
|
|
|
|
err = StopPodSandbox(client, context.String("id"))
|
|
|
|
if err != nil {
|
2016-09-27 08:14:46 +00:00
|
|
|
return fmt.Errorf("stopping the pod sandbox failed: %v", err)
|
2016-09-23 07:50:05 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
var removePodSandboxCommand = cli.Command{
|
|
|
|
Name: "remove",
|
|
|
|
Usage: "remove a pod sandbox",
|
|
|
|
Flags: []cli.Flag{
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "id",
|
|
|
|
Value: "",
|
|
|
|
Usage: "id of the pod sandbox",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Action: func(context *cli.Context) error {
|
|
|
|
// Set up a connection to the server.
|
|
|
|
conn, err := getClientConnection(context)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to connect: %v", err)
|
|
|
|
}
|
|
|
|
defer conn.Close()
|
|
|
|
client := pb.NewRuntimeServiceClient(conn)
|
|
|
|
|
|
|
|
err = RemovePodSandbox(client, context.String("id"))
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("removing the pod sandbox failed: %v", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
var podSandboxStatusCommand = cli.Command{
|
|
|
|
Name: "status",
|
|
|
|
Usage: "return the status of a pod",
|
|
|
|
Flags: []cli.Flag{
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "id",
|
|
|
|
Value: "",
|
|
|
|
Usage: "id of the pod",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Action: func(context *cli.Context) error {
|
|
|
|
// Set up a connection to the server.
|
|
|
|
conn, err := getClientConnection(context)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to connect: %v", err)
|
|
|
|
}
|
|
|
|
defer conn.Close()
|
|
|
|
client := pb.NewRuntimeServiceClient(conn)
|
|
|
|
|
|
|
|
err = PodSandboxStatus(client, context.String("id"))
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("getting the pod sandbox status failed: %v", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-09-26 19:21:37 +00:00
|
|
|
var listPodSandboxCommand = cli.Command{
|
|
|
|
Name: "list",
|
|
|
|
Usage: "list pod sandboxes",
|
2016-10-08 12:07:12 +00:00
|
|
|
Flags: []cli.Flag{
|
2016-10-17 19:25:30 +00:00
|
|
|
cli.StringFlag{
|
|
|
|
Name: "id",
|
|
|
|
Value: "",
|
|
|
|
Usage: "filter by pod sandbox id",
|
|
|
|
},
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "state",
|
|
|
|
Value: "",
|
|
|
|
Usage: "filter by pod sandbox state",
|
|
|
|
},
|
|
|
|
cli.StringSliceFlag{
|
|
|
|
Name: "label",
|
|
|
|
Usage: "filter by key=value label",
|
|
|
|
},
|
2016-10-08 12:07:12 +00:00
|
|
|
cli.BoolFlag{
|
|
|
|
Name: "quiet",
|
|
|
|
Usage: "list only pod IDs",
|
|
|
|
},
|
|
|
|
},
|
2016-09-26 19:21:37 +00:00
|
|
|
Action: func(context *cli.Context) error {
|
|
|
|
// Set up a connection to the server.
|
|
|
|
conn, err := getClientConnection(context)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to connect: %v", err)
|
|
|
|
}
|
|
|
|
defer conn.Close()
|
|
|
|
client := pb.NewRuntimeServiceClient(conn)
|
|
|
|
|
2016-10-17 19:25:30 +00:00
|
|
|
opts := listOptions{
|
|
|
|
id: context.String("id"),
|
|
|
|
state: context.String("state"),
|
|
|
|
quiet: context.Bool("quiet"),
|
|
|
|
labels: make(map[string]string),
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, l := range context.StringSlice("label") {
|
|
|
|
pair := strings.Split(l, "=")
|
|
|
|
if len(pair) != 2 {
|
|
|
|
return fmt.Errorf("incorrectly specified label: %v", l)
|
|
|
|
}
|
|
|
|
opts.labels[pair[0]] = pair[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
err = ListPodSandboxes(client, opts)
|
2016-09-26 19:21:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("listing pod sandboxes failed: %v", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-09-26 08:07:46 +00:00
|
|
|
// RunPodSandbox sends a RunPodSandboxRequest to the server, and parses
|
|
|
|
// the returned RunPodSandboxResponse.
|
2016-10-17 19:33:48 +00:00
|
|
|
func RunPodSandbox(client pb.RuntimeServiceClient, opts createOptions) error {
|
|
|
|
config, err := loadPodSandboxConfig(opts.configPath)
|
2016-09-23 07:50:05 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-09-26 21:50:34 +00:00
|
|
|
// Override the name by the one specified through CLI
|
2016-10-17 19:33:48 +00:00
|
|
|
if opts.name != "" {
|
2017-02-03 14:41:28 +00:00
|
|
|
config.Metadata.Name = opts.name
|
2016-10-17 19:33:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for k, v := range opts.labels {
|
|
|
|
config.Labels[k] = v
|
2016-09-26 21:50:34 +00:00
|
|
|
}
|
|
|
|
|
2016-09-26 08:07:46 +00:00
|
|
|
r, err := client.RunPodSandbox(context.Background(), &pb.RunPodSandboxRequest{Config: config})
|
2016-09-23 07:50:05 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-02-03 14:41:28 +00:00
|
|
|
fmt.Println(r.PodSandboxId)
|
2016-09-23 07:50:05 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// StopPodSandbox sends a StopPodSandboxRequest to the server, and parses
|
|
|
|
// the returned StopPodSandboxResponse.
|
|
|
|
func StopPodSandbox(client pb.RuntimeServiceClient, ID string) error {
|
|
|
|
if ID == "" {
|
|
|
|
return fmt.Errorf("ID cannot be empty")
|
|
|
|
}
|
2017-02-03 14:41:28 +00:00
|
|
|
_, err := client.StopPodSandbox(context.Background(), &pb.StopPodSandboxRequest{PodSandboxId: ID})
|
2016-09-23 07:50:05 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Println(ID)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemovePodSandbox sends a RemovePodSandboxRequest to the server, and parses
|
|
|
|
// the returned RemovePodSandboxResponse.
|
|
|
|
func RemovePodSandbox(client pb.RuntimeServiceClient, ID string) error {
|
|
|
|
if ID == "" {
|
|
|
|
return fmt.Errorf("ID cannot be empty")
|
|
|
|
}
|
2017-02-03 14:41:28 +00:00
|
|
|
_, err := client.RemovePodSandbox(context.Background(), &pb.RemovePodSandboxRequest{PodSandboxId: ID})
|
2016-09-23 07:50:05 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Println(ID)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// PodSandboxStatus sends a PodSandboxStatusRequest to the server, and parses
|
|
|
|
// the returned PodSandboxStatusResponse.
|
|
|
|
func PodSandboxStatus(client pb.RuntimeServiceClient, ID string) error {
|
|
|
|
if ID == "" {
|
|
|
|
return fmt.Errorf("ID cannot be empty")
|
|
|
|
}
|
2017-02-03 14:41:28 +00:00
|
|
|
r, err := client.PodSandboxStatus(context.Background(), &pb.PodSandboxStatusRequest{PodSandboxId: ID})
|
2016-09-23 07:50:05 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-02-03 14:41:28 +00:00
|
|
|
fmt.Printf("ID: %s\n", r.Status.Id)
|
2016-10-06 23:52:11 +00:00
|
|
|
if r.Status.Metadata != nil {
|
2017-02-03 14:41:28 +00:00
|
|
|
if r.Status.Metadata.Name != "" {
|
|
|
|
fmt.Printf("Name: %s\n", r.Status.Metadata.Name)
|
2016-10-06 23:52:11 +00:00
|
|
|
}
|
2017-02-03 14:41:28 +00:00
|
|
|
if r.Status.Metadata.Uid != "" {
|
|
|
|
fmt.Printf("UID: %s\n", r.Status.Metadata.Uid)
|
2016-10-06 23:52:11 +00:00
|
|
|
}
|
2017-02-03 14:41:28 +00:00
|
|
|
if r.Status.Metadata.Namespace != "" {
|
|
|
|
fmt.Printf("Namespace: %s\n", r.Status.Metadata.Namespace)
|
2016-10-06 23:52:11 +00:00
|
|
|
}
|
2017-02-03 14:41:28 +00:00
|
|
|
fmt.Printf("Attempt: %v\n", r.Status.Metadata.Attempt)
|
2016-09-26 18:28:03 +00:00
|
|
|
}
|
2017-02-03 14:41:28 +00:00
|
|
|
fmt.Printf("Status: %s\n", r.Status.State)
|
|
|
|
ctm := time.Unix(0, r.Status.CreatedAt)
|
|
|
|
fmt.Printf("Created: %v\n", ctm)
|
|
|
|
fmt.Printf("Network namespace: %s\n", r.Status.Linux.Namespaces.Network)
|
2016-09-26 18:28:03 +00:00
|
|
|
if r.Status.Network != nil {
|
2017-02-03 14:41:28 +00:00
|
|
|
fmt.Printf("IP Address: %v\n", r.Status.Network.Ip)
|
2016-09-26 18:28:03 +00:00
|
|
|
}
|
2016-10-06 23:52:11 +00:00
|
|
|
if r.Status.Labels != nil {
|
|
|
|
fmt.Println("Labels:")
|
2016-11-02 06:36:42 +00:00
|
|
|
for _, k := range getSortedKeys(r.Status.Labels) {
|
|
|
|
fmt.Printf("\t%s -> %s\n", k, r.Status.Labels[k])
|
2016-10-06 23:52:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if r.Status.Annotations != nil {
|
|
|
|
fmt.Println("Annotations:")
|
2016-11-02 06:36:42 +00:00
|
|
|
for _, k := range getSortedKeys(r.Status.Annotations) {
|
|
|
|
fmt.Printf("\t%s -> %s\n", k, r.Status.Annotations[k])
|
2016-10-06 23:52:11 +00:00
|
|
|
}
|
|
|
|
}
|
2016-09-23 07:50:05 +00:00
|
|
|
return nil
|
|
|
|
}
|
2016-09-26 19:21:37 +00:00
|
|
|
|
|
|
|
// ListPodSandboxes sends a ListPodSandboxRequest to the server, and parses
|
|
|
|
// the returned ListPodSandboxResponse.
|
2016-10-17 19:25:30 +00:00
|
|
|
func ListPodSandboxes(client pb.RuntimeServiceClient, opts listOptions) error {
|
|
|
|
filter := &pb.PodSandboxFilter{}
|
|
|
|
if opts.id != "" {
|
2017-02-03 14:41:28 +00:00
|
|
|
filter.Id = opts.id
|
2016-10-17 19:25:30 +00:00
|
|
|
}
|
|
|
|
if opts.state != "" {
|
2017-02-03 14:41:28 +00:00
|
|
|
st := &pb.PodSandboxStateValue{}
|
|
|
|
st.State = pb.PodSandboxState_SANDBOX_NOTREADY
|
2016-10-17 19:25:30 +00:00
|
|
|
switch opts.state {
|
|
|
|
case "ready":
|
2017-02-03 14:41:28 +00:00
|
|
|
st.State = pb.PodSandboxState_SANDBOX_READY
|
|
|
|
filter.State = st
|
2016-10-17 19:25:30 +00:00
|
|
|
case "notready":
|
2017-02-03 14:41:28 +00:00
|
|
|
st.State = pb.PodSandboxState_SANDBOX_NOTREADY
|
|
|
|
filter.State = st
|
2016-10-17 19:25:30 +00:00
|
|
|
default:
|
|
|
|
log.Fatalf("--state should be ready or notready")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if opts.labels != nil {
|
|
|
|
filter.LabelSelector = opts.labels
|
|
|
|
}
|
|
|
|
r, err := client.ListPodSandbox(context.Background(), &pb.ListPodSandboxRequest{
|
|
|
|
Filter: filter,
|
|
|
|
})
|
2016-09-26 19:21:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, pod := range r.Items {
|
2016-10-17 19:25:30 +00:00
|
|
|
if opts.quiet {
|
2017-02-03 14:41:28 +00:00
|
|
|
fmt.Println(pod.Id)
|
2016-10-08 12:07:12 +00:00
|
|
|
continue
|
|
|
|
}
|
2017-02-03 14:41:28 +00:00
|
|
|
fmt.Printf("ID: %s\n", pod.Id)
|
2016-10-06 23:52:11 +00:00
|
|
|
if pod.Metadata != nil {
|
2017-02-03 14:41:28 +00:00
|
|
|
if pod.Metadata.Name != "" {
|
|
|
|
fmt.Printf("Name: %s\n", pod.Metadata.Name)
|
2016-10-06 23:52:11 +00:00
|
|
|
}
|
2017-02-03 14:41:28 +00:00
|
|
|
if pod.Metadata.Uid != "" {
|
|
|
|
fmt.Printf("UID: %s\n", pod.Metadata.Uid)
|
2016-10-06 23:52:11 +00:00
|
|
|
}
|
2017-02-03 14:41:28 +00:00
|
|
|
if pod.Metadata.Namespace != "" {
|
|
|
|
fmt.Printf("Namespace: %s\n", pod.Metadata.Namespace)
|
2016-10-06 23:52:11 +00:00
|
|
|
}
|
2017-02-03 14:41:28 +00:00
|
|
|
fmt.Printf("Attempt: %v\n", pod.Metadata.Attempt)
|
2016-10-06 23:52:11 +00:00
|
|
|
}
|
2016-09-26 19:21:37 +00:00
|
|
|
fmt.Printf("Status: %s\n", pod.State)
|
2017-02-03 14:41:28 +00:00
|
|
|
ctm := time.Unix(0, pod.CreatedAt)
|
2016-09-26 19:21:37 +00:00
|
|
|
fmt.Printf("Created: %v\n", ctm)
|
2016-10-06 23:52:11 +00:00
|
|
|
if pod.Labels != nil {
|
|
|
|
fmt.Println("Labels:")
|
2016-11-02 06:36:42 +00:00
|
|
|
for _, k := range getSortedKeys(pod.Labels) {
|
|
|
|
fmt.Printf("\t%s -> %s\n", k, pod.Labels[k])
|
2016-10-06 23:52:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if pod.Annotations != nil {
|
|
|
|
fmt.Println("Annotations:")
|
2016-11-02 06:36:42 +00:00
|
|
|
for _, k := range getSortedKeys(pod.Annotations) {
|
|
|
|
fmt.Printf("\t%s -> %s\n", k, pod.Annotations[k])
|
2016-10-06 23:52:11 +00:00
|
|
|
}
|
|
|
|
}
|
2016-10-26 11:32:59 +00:00
|
|
|
fmt.Println()
|
2016-09-26 19:21:37 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2016-11-02 06:36:42 +00:00
|
|
|
|
|
|
|
func getSortedKeys(m map[string]string) []string {
|
|
|
|
var keys []string
|
|
|
|
for k := range m {
|
|
|
|
keys = append(keys, k)
|
|
|
|
}
|
|
|
|
sort.Strings(keys)
|
|
|
|
|
|
|
|
return keys
|
|
|
|
}
|