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
3599d81e
Commit
3599d81e
authored
May 11, 2015
by
Yu-Ju Hong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove some docker references
parent
3487a165
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
kubelet.go
pkg/kubelet/kubelet.go
+4
-3
pod_workers.go
pkg/kubelet/pod_workers.go
+3
-3
No files found.
pkg/kubelet/kubelet.go
View file @
3599d81e
...
...
@@ -1696,7 +1696,8 @@ func getPodReadyCondition(spec *api.PodSpec, statuses []api.ContainerStatus) []a
return
ready
}
// GetPodStatus returns information from Docker about the containers in a pod
// GetPodStatus returns information of the containers in the pod from the
// container runtime.
func
(
kl
*
Kubelet
)
GetPodStatus
(
podFullName
string
)
(
api
.
PodStatus
,
error
)
{
// Check to see if we have a cached version of the status.
cachedPodStatus
,
found
:=
kl
.
statusManager
.
GetPodStatus
(
podFullName
)
...
...
@@ -1722,14 +1723,14 @@ func (kl *Kubelet) generatePodStatus(pod *api.Pod) (api.PodStatus, error) {
if
err
!=
nil
{
// Error handling
glog
.
Infof
(
"Query
docker
container info for pod %q failed with error (%v)"
,
podFullName
,
err
)
glog
.
Infof
(
"Query container info for pod %q failed with error (%v)"
,
podFullName
,
err
)
if
strings
.
Contains
(
err
.
Error
(),
"resource temporarily unavailable"
)
{
// Leave upstream layer to decide what to do
return
api
.
PodStatus
{},
err
}
else
{
pendingStatus
:=
api
.
PodStatus
{
Phase
:
api
.
PodPending
,
Message
:
fmt
.
Sprintf
(
"Query
docker
container info failed with error (%v)"
,
err
),
Message
:
fmt
.
Sprintf
(
"Query container info failed with error (%v)"
,
err
),
}
return
pendingStatus
,
nil
}
...
...
pkg/kubelet/pod_workers.go
View file @
3599d81e
...
...
@@ -84,10 +84,10 @@ func (p *podWorkers) managePodLoop(podUpdates <-chan workUpdate) {
for
newWork
:=
range
podUpdates
{
func
()
{
defer
p
.
checkForUpdates
(
newWork
.
pod
.
UID
,
newWork
.
updateCompleteFn
)
// We would like to have the state of
Docker from at least the momen
t
// when we finished the previous processing of that pod.
// We would like to have the state of
the containers from at leas
t
//
the moment
when we finished the previous processing of that pod.
if
err
:=
p
.
runtimeCache
.
ForceUpdateIfOlder
(
minRuntimeCacheTime
);
err
!=
nil
{
glog
.
Errorf
(
"Error updating
docker
cache: %v"
,
err
)
glog
.
Errorf
(
"Error updating
the container runtime
cache: %v"
,
err
)
return
}
pods
,
err
:=
p
.
runtimeCache
.
GetPods
()
...
...
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