Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
7c75f5c5
Commit
7c75f5c5
authored
May 17, 2017
by
Yu-Ju Hong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kuberuntime: report StartedAt for exited containers
parent
2cf01690
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
kuberuntime_container.go
pkg/kubelet/kuberuntime/kuberuntime_container.go
+5
-2
No files found.
pkg/kubelet/kuberuntime/kuberuntime_container.go
View file @
7c75f5c5
...
@@ -402,9 +402,12 @@ func (m *kubeGenericRuntimeManager) getPodContainerStatuses(uid kubetypes.UID, n
...
@@ -402,9 +402,12 @@ func (m *kubeGenericRuntimeManager) getPodContainerStatuses(uid kubetypes.UID, n
CreatedAt
:
time
.
Unix
(
0
,
status
.
CreatedAt
),
CreatedAt
:
time
.
Unix
(
0
,
status
.
CreatedAt
),
}
}
if
c
.
State
==
runtimeapi
.
ContainerState_CONTAINER_RUNNING
{
if
c
.
State
!=
runtimeapi
.
ContainerState_CONTAINER_CREATED
{
// If container is not in the created state, we have tried and
// started the container. Set the StartedAt time.
cStatus
.
StartedAt
=
time
.
Unix
(
0
,
status
.
StartedAt
)
cStatus
.
StartedAt
=
time
.
Unix
(
0
,
status
.
StartedAt
)
}
else
{
}
if
c
.
State
==
runtimeapi
.
ContainerState_CONTAINER_EXITED
{
cStatus
.
Reason
=
status
.
Reason
cStatus
.
Reason
=
status
.
Reason
cStatus
.
Message
=
status
.
Message
cStatus
.
Message
=
status
.
Message
cStatus
.
ExitCode
=
int
(
status
.
ExitCode
)
cStatus
.
ExitCode
=
int
(
status
.
ExitCode
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment