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
14f78b74
Commit
14f78b74
authored
Jun 15, 2015
by
Dawn Chen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the unittests cause by applying oom_score_adj (0) to the user containers.
parent
f6f9372d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
manager_test.go
pkg/kubelet/dockertools/manager_test.go
+9
-9
kubelet_test.go
pkg/kubelet/kubelet_test.go
+1
-1
No files found.
pkg/kubelet/dockertools/manager_test.go
View file @
14f78b74
...
@@ -898,7 +898,7 @@ func TestSyncPodCreateNetAndContainer(t *testing.T) {
...
@@ -898,7 +898,7 @@ func TestSyncPodCreateNetAndContainer(t *testing.T) {
// Create pod infra container.
// Create pod infra container.
"create"
,
"start"
,
"inspect_container"
,
"create"
,
"start"
,
"inspect_container"
,
// Create container.
// Create container.
"create"
,
"start"
,
"create"
,
"start"
,
"inspect_container"
,
})
})
fakeDocker
.
Lock
()
fakeDocker
.
Lock
()
...
@@ -947,7 +947,7 @@ func TestSyncPodCreatesNetAndContainerPullsImage(t *testing.T) {
...
@@ -947,7 +947,7 @@ func TestSyncPodCreatesNetAndContainerPullsImage(t *testing.T) {
// Create pod infra container.
// Create pod infra container.
"create"
,
"start"
,
"inspect_container"
,
"create"
,
"start"
,
"inspect_container"
,
// Create container.
// Create container.
"create"
,
"start"
,
"create"
,
"start"
,
"inspect_container"
,
})
})
fakeDocker
.
Lock
()
fakeDocker
.
Lock
()
...
@@ -999,7 +999,7 @@ func TestSyncPodWithPodInfraCreatesContainer(t *testing.T) {
...
@@ -999,7 +999,7 @@ func TestSyncPodWithPodInfraCreatesContainer(t *testing.T) {
// Inspect pod infra container (but does not create)"
// Inspect pod infra container (but does not create)"
"inspect_container"
,
"inspect_container"
,
// Create container.
// Create container.
"create"
,
"start"
,
"create"
,
"start"
,
"inspect_container"
,
})
})
fakeDocker
.
Lock
()
fakeDocker
.
Lock
()
...
@@ -1040,7 +1040,7 @@ func TestSyncPodDeletesWithNoPodInfraContainer(t *testing.T) {
...
@@ -1040,7 +1040,7 @@ func TestSyncPodDeletesWithNoPodInfraContainer(t *testing.T) {
// Create pod infra container.
// Create pod infra container.
"create"
,
"start"
,
"inspect_container"
,
"create"
,
"start"
,
"inspect_container"
,
// Create container.
// Create container.
"create"
,
"start"
,
"create"
,
"start"
,
"inspect_container"
,
})
})
// A map iteration is used to delete containers, so must not depend on
// A map iteration is used to delete containers, so must not depend on
...
@@ -1165,7 +1165,7 @@ func TestSyncPodBadHash(t *testing.T) {
...
@@ -1165,7 +1165,7 @@ func TestSyncPodBadHash(t *testing.T) {
// Check the pod infra container.
// Check the pod infra container.
"inspect_container"
,
"inspect_container"
,
// Kill and restart the bad hash container.
// Kill and restart the bad hash container.
"inspect_container"
,
"stop"
,
"create"
,
"start"
,
"inspect_container"
,
"stop"
,
"create"
,
"start"
,
"inspect_container"
,
})
})
if
err
:=
fakeDocker
.
AssertStopped
([]
string
{
"1234"
});
err
!=
nil
{
if
err
:=
fakeDocker
.
AssertStopped
([]
string
{
"1234"
});
err
!=
nil
{
...
@@ -1225,7 +1225,7 @@ func TestSyncPodsUnhealthy(t *testing.T) {
...
@@ -1225,7 +1225,7 @@ func TestSyncPodsUnhealthy(t *testing.T) {
// Kill the unhealthy container.
// Kill the unhealthy container.
"inspect_container"
,
"stop"
,
"inspect_container"
,
"stop"
,
// Restart the unhealthy container.
// Restart the unhealthy container.
"create"
,
"start"
,
"create"
,
"start"
,
"inspect_container"
,
})
})
if
err
:=
fakeDocker
.
AssertStopped
([]
string
{
"1234"
});
err
!=
nil
{
if
err
:=
fakeDocker
.
AssertStopped
([]
string
{
"1234"
});
err
!=
nil
{
...
@@ -1410,7 +1410,7 @@ func TestSyncPodWithRestartPolicy(t *testing.T) {
...
@@ -1410,7 +1410,7 @@ func TestSyncPodWithRestartPolicy(t *testing.T) {
// Check the pod infra container.
// Check the pod infra container.
"inspect_container"
,
"inspect_container"
,
// Restart both containers.
// Restart both containers.
"create"
,
"start"
,
"
create"
,
"start
"
,
"create"
,
"start"
,
"
inspect_container"
,
"create"
,
"start"
,
"inspect_container
"
,
},
},
[]
string
{
"succeeded"
,
"failed"
},
[]
string
{
"succeeded"
,
"failed"
},
[]
string
{},
[]
string
{},
...
@@ -1421,7 +1421,7 @@ func TestSyncPodWithRestartPolicy(t *testing.T) {
...
@@ -1421,7 +1421,7 @@ func TestSyncPodWithRestartPolicy(t *testing.T) {
// Check the pod infra container.
// Check the pod infra container.
"inspect_container"
,
"inspect_container"
,
// Restart the failed container.
// Restart the failed container.
"create"
,
"start"
,
"create"
,
"start"
,
"inspect_container"
,
},
},
[]
string
{
"failed"
},
[]
string
{
"failed"
},
[]
string
{},
[]
string
{},
...
@@ -1834,7 +1834,7 @@ func TestSyncPodWithPodInfraCreatesContainerCallsHandler(t *testing.T) {
...
@@ -1834,7 +1834,7 @@ func TestSyncPodWithPodInfraCreatesContainerCallsHandler(t *testing.T) {
// Check the pod infra container.
// Check the pod infra container.
"inspect_container"
,
"inspect_container"
,
// Create container.
// Create container.
"create"
,
"start"
,
"create"
,
"start"
,
"inspect_container"
,
})
})
fakeDocker
.
Lock
()
fakeDocker
.
Lock
()
...
...
pkg/kubelet/kubelet_test.go
View file @
14f78b74
...
@@ -484,7 +484,7 @@ func TestSyncPodsWithTerminationLog(t *testing.T) {
...
@@ -484,7 +484,7 @@ func TestSyncPodsWithTerminationLog(t *testing.T) {
// Create pod infra container.
// Create pod infra container.
"create"
,
"start"
,
"inspect_container"
,
"create"
,
"start"
,
"inspect_container"
,
// Create container.
// Create container.
"create"
,
"start"
,
"create"
,
"start"
,
"inspect_container"
,
// Get pod status.
// Get pod status.
"list"
,
"inspect_container"
,
"inspect_container"
,
"list"
,
"inspect_container"
,
"inspect_container"
,
// Get pods for deleting orphaned volumes.
// Get pods for deleting orphaned volumes.
...
...
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