Skip to content
This repository was archived by the owner on Mar 9, 2022. It is now read-only.

Commit 31a960f

Browse files
authored
Merge pull request #918 from Random-Liu/show-runtime-handler-in-sandbox-info
Show runtime handler in sandbox debug info.
2 parents 46b8f42 + 4b45e16 commit 31a960f

File tree

4 files changed

+20
-16
lines changed

4 files changed

+20
-16
lines changed

pkg/server/container_status.go

-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ type containerInfo struct {
113113
}
114114

115115
// toCRIContainerInfo converts internal container object information to CRI container status response info map.
116-
// TODO(random-liu): Return error instead of logging.
117116
func toCRIContainerInfo(ctx context.Context, container containerstore.Container, verbose bool) (map[string]string, error) {
118117
if !verbose {
119118
return nil, nil

pkg/server/sandbox_run.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,10 @@ func (c *criService) RunPodSandbox(ctx context.Context, r *runtime.RunPodSandbox
7474
// Create initial internal sandbox object.
7575
sandbox := sandboxstore.NewSandbox(
7676
sandboxstore.Metadata{
77-
ID: id,
78-
Name: name,
79-
Config: config,
77+
ID: id,
78+
Name: name,
79+
Config: config,
80+
RuntimeHandler: r.GetRuntimeHandler(),
8081
},
8182
sandboxstore.Status{
8283
State: sandboxstore.StateUnknown,

pkg/server/sandbox_status.go

+14-12
Original file line numberDiff line numberDiff line change
@@ -102,15 +102,16 @@ func toCRISandboxStatus(meta sandboxstore.Metadata, status sandboxstore.Status,
102102

103103
// TODO (mikebrow): discuss predefining constants structures for some or all of these field names in CRI
104104
type sandboxInfo struct {
105-
Pid uint32 `json:"pid"`
106-
Status string `json:"processStatus"`
107-
NetNSClosed bool `json:"netNamespaceClosed"`
108-
Image string `json:"image"`
109-
SnapshotKey string `json:"snapshotKey"`
110-
Snapshotter string `json:"snapshotter"`
111-
Runtime *criconfig.Runtime `json:"runtime"`
112-
Config *runtime.PodSandboxConfig `json:"config"`
113-
RuntimeSpec *runtimespec.Spec `json:"runtimeSpec"`
105+
Pid uint32 `json:"pid"`
106+
Status string `json:"processStatus"`
107+
NetNSClosed bool `json:"netNamespaceClosed"`
108+
Image string `json:"image"`
109+
SnapshotKey string `json:"snapshotKey"`
110+
Snapshotter string `json:"snapshotter"`
111+
RuntimeHandler string `json:"runtimeHandler"`
112+
Runtime *criconfig.Runtime `json:"runtime"`
113+
Config *runtime.PodSandboxConfig `json:"config"`
114+
RuntimeSpec *runtimespec.Spec `json:"runtimeSpec"`
114115
}
115116

116117
// toCRISandboxInfo converts internal container object information to CRI sandbox status response info map.
@@ -132,9 +133,10 @@ func toCRISandboxInfo(ctx context.Context, sandbox sandboxstore.Sandbox) (map[st
132133
}
133134

134135
si := &sandboxInfo{
135-
Pid: sandbox.Status.Get().Pid,
136-
Status: string(processStatus),
137-
Config: sandbox.Config,
136+
Pid: sandbox.Status.Get().Pid,
137+
RuntimeHandler: sandbox.RuntimeHandler,
138+
Status: string(processStatus),
139+
Config: sandbox.Config,
138140
}
139141

140142
if si.Status == "" {

pkg/store/sandbox/metadata.go

+2
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ type Metadata struct {
5454
NetNSPath string
5555
// IP of Pod if it is attached to non host network
5656
IP string
57+
// RuntimeHandler is the runtime handler name of the pod.
58+
RuntimeHandler string
5759
}
5860

5961
// MarshalJSON encodes Metadata into bytes in json format.

0 commit comments

Comments
 (0)