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
fbc5a7d0
Commit
fbc5a7d0
authored
Nov 13, 2015
by
Tim St. Clair
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Sync status to new mirror pods
parent
22e527fe
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
72 additions
and
54 deletions
+72
-54
manager.go
pkg/kubelet/pod/manager.go
+42
-34
manager.go
pkg/kubelet/status/manager.go
+14
-8
manager_test.go
pkg/kubelet/status/manager_test.go
+16
-12
No files found.
pkg/kubelet/pod/manager.go
View file @
fbc5a7d0
...
@@ -59,6 +59,7 @@ type Manager interface {
...
@@ -59,6 +59,7 @@ type Manager interface {
DeleteOrphanedMirrorPods
()
DeleteOrphanedMirrorPods
()
TranslatePodUID
(
uid
types
.
UID
)
types
.
UID
TranslatePodUID
(
uid
types
.
UID
)
types
.
UID
GetUIDTranslations
()
(
podToMirror
,
mirrorToPod
map
[
types
.
UID
]
types
.
UID
)
IsMirrorPodOf
(
mirrorPod
,
pod
*
api
.
Pod
)
bool
IsMirrorPodOf
(
mirrorPod
,
pod
*
api
.
Pod
)
bool
MirrorClient
MirrorClient
}
}
...
@@ -79,6 +80,9 @@ type basicManager struct {
...
@@ -79,6 +80,9 @@ type basicManager struct {
podByFullName
map
[
string
]
*
api
.
Pod
podByFullName
map
[
string
]
*
api
.
Pod
mirrorPodByFullName
map
[
string
]
*
api
.
Pod
mirrorPodByFullName
map
[
string
]
*
api
.
Pod
// Mirror pod UID to pod UID map.
translationByUID
map
[
types
.
UID
]
types
.
UID
// A mirror pod client to create/delete mirror pods.
// A mirror pod client to create/delete mirror pods.
MirrorClient
MirrorClient
}
}
...
@@ -94,30 +98,14 @@ func NewBasicPodManager(client MirrorClient) Manager {
...
@@ -94,30 +98,14 @@ func NewBasicPodManager(client MirrorClient) Manager {
func
(
pm
*
basicManager
)
SetPods
(
newPods
[]
*
api
.
Pod
)
{
func
(
pm
*
basicManager
)
SetPods
(
newPods
[]
*
api
.
Pod
)
{
pm
.
lock
.
Lock
()
pm
.
lock
.
Lock
()
defer
pm
.
lock
.
Unlock
()
defer
pm
.
lock
.
Unlock
()
pm
.
setPods
(
newPods
)
}
func
(
pm
*
basicManager
)
setPods
(
newPods
[]
*
api
.
Pod
)
{
podByUID
:=
make
(
map
[
types
.
UID
]
*
api
.
Pod
)
mirrorPodByUID
:=
make
(
map
[
types
.
UID
]
*
api
.
Pod
)
podByFullName
:=
make
(
map
[
string
]
*
api
.
Pod
)
mirrorPodByFullName
:=
make
(
map
[
string
]
*
api
.
Pod
)
for
_
,
pod
:=
range
newPods
{
pm
.
podByUID
=
make
(
map
[
types
.
UID
]
*
api
.
Pod
)
podFullName
:=
kubecontainer
.
GetPodFullName
(
pod
)
pm
.
podByFullName
=
make
(
map
[
string
]
*
api
.
Pod
)
if
IsMirrorPod
(
pod
)
{
pm
.
mirrorPodByUID
=
make
(
map
[
types
.
UID
]
*
api
.
Pod
)
mirrorPodByUID
[
pod
.
UID
]
=
pod
pm
.
mirrorPodByFullName
=
make
(
map
[
string
]
*
api
.
Pod
)
mirrorPodByFullName
[
podFullName
]
=
pod
pm
.
translationByUID
=
make
(
map
[
types
.
UID
]
types
.
UID
)
}
else
{
podByUID
[
pod
.
UID
]
=
pod
podByFullName
[
podFullName
]
=
pod
}
}
pm
.
podByUID
=
podByUID
pm
.
updatePodsInternal
(
newPods
...
)
pm
.
podByFullName
=
podByFullName
pm
.
mirrorPodByUID
=
mirrorPodByUID
pm
.
mirrorPodByFullName
=
mirrorPodByFullName
}
}
func
(
pm
*
basicManager
)
AddPod
(
pod
*
api
.
Pod
)
{
func
(
pm
*
basicManager
)
AddPod
(
pod
*
api
.
Pod
)
{
...
@@ -127,13 +115,22 @@ func (pm *basicManager) AddPod(pod *api.Pod) {
...
@@ -127,13 +115,22 @@ func (pm *basicManager) AddPod(pod *api.Pod) {
func
(
pm
*
basicManager
)
UpdatePod
(
pod
*
api
.
Pod
)
{
func
(
pm
*
basicManager
)
UpdatePod
(
pod
*
api
.
Pod
)
{
pm
.
lock
.
Lock
()
pm
.
lock
.
Lock
()
defer
pm
.
lock
.
Unlock
()
defer
pm
.
lock
.
Unlock
()
podFullName
:=
kubecontainer
.
GetPodFullName
(
pod
)
pm
.
updatePodsInternal
(
pod
)
if
IsMirrorPod
(
pod
)
{
}
pm
.
mirrorPodByUID
[
pod
.
UID
]
=
pod
pm
.
mirrorPodByFullName
[
podFullName
]
=
pod
func
(
pm
*
basicManager
)
updatePodsInternal
(
pods
...*
api
.
Pod
)
{
}
else
{
for
_
,
pod
:=
range
pods
{
pm
.
podByUID
[
pod
.
UID
]
=
pod
podFullName
:=
kubecontainer
.
GetPodFullName
(
pod
)
pm
.
podByFullName
[
podFullName
]
=
pod
if
IsMirrorPod
(
pod
)
{
pm
.
mirrorPodByUID
[
pod
.
UID
]
=
pod
pm
.
mirrorPodByFullName
[
podFullName
]
=
pod
if
p
,
ok
:=
pm
.
podByFullName
[
podFullName
];
ok
{
pm
.
translationByUID
[
pod
.
UID
]
=
p
.
UID
}
}
else
{
pm
.
podByUID
[
pod
.
UID
]
=
pod
pm
.
podByFullName
[
podFullName
]
=
pod
}
}
}
}
}
...
@@ -144,6 +141,7 @@ func (pm *basicManager) DeletePod(pod *api.Pod) {
...
@@ -144,6 +141,7 @@ func (pm *basicManager) DeletePod(pod *api.Pod) {
if
IsMirrorPod
(
pod
)
{
if
IsMirrorPod
(
pod
)
{
delete
(
pm
.
mirrorPodByUID
,
pod
.
UID
)
delete
(
pm
.
mirrorPodByUID
,
pod
.
UID
)
delete
(
pm
.
mirrorPodByFullName
,
podFullName
)
delete
(
pm
.
mirrorPodByFullName
,
podFullName
)
delete
(
pm
.
translationByUID
,
pod
.
UID
)
}
else
{
}
else
{
delete
(
pm
.
podByUID
,
pod
.
UID
)
delete
(
pm
.
podByUID
,
pod
.
UID
)
delete
(
pm
.
podByFullName
,
podFullName
)
delete
(
pm
.
podByFullName
,
podFullName
)
...
@@ -207,15 +205,25 @@ func (pm *basicManager) TranslatePodUID(uid types.UID) types.UID {
...
@@ -207,15 +205,25 @@ func (pm *basicManager) TranslatePodUID(uid types.UID) types.UID {
pm
.
lock
.
RLock
()
pm
.
lock
.
RLock
()
defer
pm
.
lock
.
RUnlock
()
defer
pm
.
lock
.
RUnlock
()
if
mirrorPod
,
ok
:=
pm
.
mirrorPodByUID
[
uid
];
ok
{
if
translated
,
ok
:=
pm
.
translationByUID
[
uid
];
ok
{
podFullName
:=
kubecontainer
.
GetPodFullName
(
mirrorPod
)
return
translated
if
pod
,
ok
:=
pm
.
podByFullName
[
podFullName
];
ok
{
return
pod
.
UID
}
}
}
return
uid
return
uid
}
}
func
(
pm
*
basicManager
)
GetUIDTranslations
()
(
podToMirror
,
mirrorToPod
map
[
types
.
UID
]
types
.
UID
)
{
pm
.
lock
.
RLock
()
defer
pm
.
lock
.
RUnlock
()
podToMirror
=
make
(
map
[
types
.
UID
]
types
.
UID
,
len
(
pm
.
translationByUID
))
mirrorToPod
=
make
(
map
[
types
.
UID
]
types
.
UID
,
len
(
pm
.
translationByUID
))
for
k
,
v
:=
range
pm
.
translationByUID
{
podToMirror
[
k
]
=
v
mirrorToPod
[
v
]
=
k
}
return
podToMirror
,
mirrorToPod
}
func
(
pm
*
basicManager
)
getOrphanedMirrorPodNames
()
[]
string
{
func
(
pm
*
basicManager
)
getOrphanedMirrorPodNames
()
[]
string
{
pm
.
lock
.
RLock
()
pm
.
lock
.
RLock
()
defer
pm
.
lock
.
RUnlock
()
defer
pm
.
lock
.
RUnlock
()
...
...
pkg/kubelet/status/manager.go
View file @
fbc5a7d0
...
@@ -288,19 +288,26 @@ func (m *manager) RemoveOrphanedStatuses(podUIDs map[types.UID]bool) {
...
@@ -288,19 +288,26 @@ func (m *manager) RemoveOrphanedStatuses(podUIDs map[types.UID]bool) {
// syncBatch syncs pods statuses with the apiserver.
// syncBatch syncs pods statuses with the apiserver.
func
(
m
*
manager
)
syncBatch
()
{
func
(
m
*
manager
)
syncBatch
()
{
var
updatedStatuses
[]
podStatusSyncRequest
var
updatedStatuses
[]
podStatusSyncRequest
podToMirror
,
mirrorToPod
:=
m
.
podManager
.
GetUIDTranslations
()
func
()
{
// Critical section
func
()
{
// Critical section
m
.
podStatusesLock
.
RLock
()
m
.
podStatusesLock
.
RLock
()
defer
m
.
podStatusesLock
.
RUnlock
()
defer
m
.
podStatusesLock
.
RUnlock
()
// Clean up orphaned versions.
// Clean up orphaned versions.
for
uid
:=
range
m
.
apiStatusVersions
{
for
uid
:=
range
m
.
apiStatusVersions
{
if
_
,
ok
:=
m
.
podStatuses
[
uid
];
!
ok
{
_
,
hasPod
:=
m
.
podStatuses
[
uid
]
_
,
hasMirror
:=
podToMirror
[
uid
]
if
!
hasPod
&&
!
hasMirror
{
delete
(
m
.
apiStatusVersions
,
uid
)
delete
(
m
.
apiStatusVersions
,
uid
)
}
}
}
}
for
uid
,
status
:=
range
m
.
podStatuses
{
for
uid
,
status
:=
range
m
.
podStatuses
{
if
m
.
needsUpdate
(
uid
,
status
)
{
syncedUID
:=
uid
if
translated
,
ok
:=
mirrorToPod
[
uid
];
ok
{
syncedUID
=
translated
}
if
m
.
needsUpdate
(
syncedUID
,
status
)
{
updatedStatuses
=
append
(
updatedStatuses
,
podStatusSyncRequest
{
uid
,
status
})
updatedStatuses
=
append
(
updatedStatuses
,
podStatusSyncRequest
{
uid
,
status
})
}
}
}
}
...
@@ -313,11 +320,6 @@ func (m *manager) syncBatch() {
...
@@ -313,11 +320,6 @@ func (m *manager) syncBatch() {
// syncPod syncs the given status with the API server. The caller must not hold the lock.
// syncPod syncs the given status with the API server. The caller must not hold the lock.
func
(
m
*
manager
)
syncPod
(
uid
types
.
UID
,
status
versionedPodStatus
)
{
func
(
m
*
manager
)
syncPod
(
uid
types
.
UID
,
status
versionedPodStatus
)
{
if
!
m
.
needsUpdate
(
uid
,
status
)
{
glog
.
Warningf
(
"Status is up-to-date; skipping: %q %+v"
,
uid
,
status
)
return
}
// TODO: make me easier to express from client code
// TODO: make me easier to express from client code
pod
,
err
:=
m
.
kubeClient
.
Pods
(
status
.
podNamespace
)
.
Get
(
status
.
podName
)
pod
,
err
:=
m
.
kubeClient
.
Pods
(
status
.
podNamespace
)
.
Get
(
status
.
podName
)
if
errors
.
IsNotFound
(
err
)
{
if
errors
.
IsNotFound
(
err
)
{
...
@@ -332,12 +334,16 @@ func (m *manager) syncPod(uid types.UID, status versionedPodStatus) {
...
@@ -332,12 +334,16 @@ func (m *manager) syncPod(uid types.UID, status versionedPodStatus) {
m
.
deletePodStatus
(
uid
)
m
.
deletePodStatus
(
uid
)
return
return
}
}
if
!
m
.
needsUpdate
(
pod
.
UID
,
status
)
{
glog
.
Warningf
(
"Status is up-to-date; skipping: %q %+v"
,
uid
,
status
)
return
}
pod
.
Status
=
status
.
status
pod
.
Status
=
status
.
status
// TODO: handle conflict as a retry, make that easier too.
// TODO: handle conflict as a retry, make that easier too.
pod
,
err
=
m
.
kubeClient
.
Pods
(
pod
.
Namespace
)
.
UpdateStatus
(
pod
)
pod
,
err
=
m
.
kubeClient
.
Pods
(
pod
.
Namespace
)
.
UpdateStatus
(
pod
)
if
err
==
nil
{
if
err
==
nil
{
glog
.
V
(
3
)
.
Infof
(
"Status for pod %q updated successfully"
,
kubeletutil
.
FormatPodName
(
pod
))
glog
.
V
(
3
)
.
Infof
(
"Status for pod %q updated successfully"
,
kubeletutil
.
FormatPodName
(
pod
))
m
.
apiStatusVersions
[
uid
]
=
status
.
version
m
.
apiStatusVersions
[
pod
.
UID
]
=
status
.
version
if
pod
.
DeletionTimestamp
==
nil
{
if
pod
.
DeletionTimestamp
==
nil
{
return
return
...
...
pkg/kubelet/status/manager_test.go
View file @
fbc5a7d0
...
@@ -63,7 +63,7 @@ func getRandomPodStatus() api.PodStatus {
...
@@ -63,7 +63,7 @@ func getRandomPodStatus() api.PodStatus {
func
verifyActions
(
t
*
testing
.
T
,
kubeClient
client
.
Interface
,
expectedActions
[]
testclient
.
Action
)
{
func
verifyActions
(
t
*
testing
.
T
,
kubeClient
client
.
Interface
,
expectedActions
[]
testclient
.
Action
)
{
actions
:=
kubeClient
.
(
*
testclient
.
Fake
)
.
Actions
()
actions
:=
kubeClient
.
(
*
testclient
.
Fake
)
.
Actions
()
if
len
(
actions
)
!=
len
(
expectedActions
)
{
if
len
(
actions
)
!=
len
(
expectedActions
)
{
t
.
Error
f
(
"unexpected actions, got: %s expected: %s"
,
actions
,
expectedActions
)
t
.
Fatal
f
(
"unexpected actions, got: %s expected: %s"
,
actions
,
expectedActions
)
return
return
}
}
for
i
:=
0
;
i
<
len
(
actions
);
i
++
{
for
i
:=
0
;
i
<
len
(
actions
);
i
++
{
...
@@ -484,21 +484,25 @@ func TestStaticPodStatus(t *testing.T) {
...
@@ -484,21 +484,25 @@ func TestStaticPodStatus(t *testing.T) {
assert
.
True
(
t
,
isStatusEqual
(
&
status
,
&
updatedPod
.
Status
),
"Expected: %+v, Got: %+v"
,
status
,
updatedPod
.
Status
)
assert
.
True
(
t
,
isStatusEqual
(
&
status
,
&
updatedPod
.
Status
),
"Expected: %+v, Got: %+v"
,
status
,
updatedPod
.
Status
)
client
.
ClearActions
()
client
.
ClearActions
()
otherPod
:=
&
api
.
Pod
{
// No changes.
ObjectMeta
:
api
.
ObjectMeta
{
m
.
syncBatch
()
UID
:
"other-87654321"
,
verifyActions
(
t
,
m
.
kubeClient
,
[]
testclient
.
Action
{})
Name
:
"other"
,
Namespace
:
"new"
,
// Mirror pod identity changes.
},
m
.
podManager
.
DeletePod
(
&
mirrorPod
)
}
mirrorPod
.
UID
=
"new-mirror-pod"
m
.
podManager
.
AddPod
(
otherPod
)
mirrorPod
.
Status
=
api
.
PodStatus
{}
m
.
SetPodStatus
(
otherPod
,
getRandomPodStatus
())
m
.
podManager
.
AddPod
(
&
mirrorPod
)
// Expect update to new mirrorPod.
m
.
syncBatch
()
m
.
syncBatch
()
verifyActions
(
t
,
m
.
kubeClient
,
[]
testclient
.
Action
{
verifyActions
(
t
,
m
.
kubeClient
,
[]
testclient
.
Action
{
testclient
.
GetActionImpl
{
ActionImpl
:
testclient
.
ActionImpl
{
Verb
:
"get"
,
Resource
:
"pods"
}},
testclient
.
GetActionImpl
{
ActionImpl
:
testclient
.
ActionImpl
{
Verb
:
"get"
,
Resource
:
"pods"
}},
testclient
.
UpdateActionImpl
{
ActionImpl
:
testclient
.
ActionImpl
{
Verb
:
"update"
,
Resource
:
"pods"
,
Subresource
:
"status"
}},
})
})
_
,
found
:=
m
.
GetPodStatus
(
otherPod
.
UID
)
updateAction
=
client
.
Actions
()[
1
]
.
(
testclient
.
UpdateActionImpl
)
assert
.
False
(
t
,
found
,
"otherPod status should have been deleted"
)
updatedPod
=
updateAction
.
Object
.
(
*
api
.
Pod
)
assert
.
Equal
(
t
,
mirrorPod
.
UID
,
updatedPod
.
UID
,
"Expected mirrorPod (%q), but got %q"
,
mirrorPod
.
UID
,
updatedPod
.
UID
)
assert
.
True
(
t
,
isStatusEqual
(
&
status
,
&
updatedPod
.
Status
),
"Expected: %+v, Got: %+v"
,
status
,
updatedPod
.
Status
)
}
}
func
TestSetContainerReadiness
(
t
*
testing
.
T
)
{
func
TestSetContainerReadiness
(
t
*
testing
.
T
)
{
...
...
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