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
dd782635
Commit
dd782635
authored
Aug 19, 2016
by
Dr. Stefan Schimanski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add sysctl e2e tests
parent
e356e522
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
234 additions
and
0 deletions
+234
-0
sysctl.go
test/e2e/common/sysctl.go
+234
-0
No files found.
test/e2e/common/sysctl.go
0 → 100644
View file @
dd782635
/*
Copyright 2014 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package
common
import
(
"fmt"
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/kubelet/events"
"k8s.io/kubernetes/pkg/kubelet/sysctl"
"k8s.io/kubernetes/pkg/util/uuid"
"k8s.io/kubernetes/pkg/util/wait"
"k8s.io/kubernetes/test/e2e/framework"
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/gomega"
)
var
_
=
framework
.
KubeDescribe
(
"Sysctls"
,
func
()
{
f
:=
framework
.
NewDefaultFramework
(
"sysctl"
)
var
podClient
*
framework
.
PodClient
testPod
:=
func
()
*
api
.
Pod
{
podName
:=
"sysctl-"
+
string
(
uuid
.
NewUUID
())
pod
:=
api
.
Pod
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
podName
,
Annotations
:
map
[
string
]
string
{},
},
Spec
:
api
.
PodSpec
{
Containers
:
[]
api
.
Container
{
{
Name
:
"test-container"
,
Image
:
"gcr.io/google_containers/busybox:1.24"
,
},
},
RestartPolicy
:
api
.
RestartPolicyNever
,
},
}
return
&
pod
}
waitForPodErrorEventOrStarted
:=
func
(
pod
*
api
.
Pod
)
(
*
api
.
Event
,
error
)
{
var
ev
*
api
.
Event
err
:=
wait
.
Poll
(
framework
.
Poll
,
framework
.
PodStartTimeout
,
func
()
(
bool
,
error
)
{
evnts
,
err
:=
f
.
Client
.
Events
(
pod
.
Namespace
)
.
Search
(
pod
)
if
err
!=
nil
{
return
false
,
fmt
.
Errorf
(
"error in listing events: %s"
,
err
)
}
for
_
,
e
:=
range
evnts
.
Items
{
switch
e
.
Reason
{
case
sysctl
.
UnsupportedReason
,
sysctl
.
ForbiddenReason
:
ev
=
&
e
return
true
,
nil
case
events
.
StartedContainer
:
return
true
,
nil
}
}
return
false
,
nil
})
return
ev
,
err
}
BeforeEach
(
func
()
{
podClient
=
f
.
PodClient
()
})
It
(
"should support sysctls"
,
func
()
{
pod
:=
testPod
()
pod
.
Annotations
[
api
.
SysctlsPodAnnotationKey
]
=
api
.
PodAnnotationsFromSysctls
([]
api
.
Sysctl
{
{
Name
:
"kernel.shm_rmid_forced"
,
Value
:
"1"
,
},
})
pod
.
Spec
.
Containers
[
0
]
.
Command
=
[]
string
{
"/bin/sysctl"
,
"kernel.shm_rmid_forced"
}
By
(
"Creating a pod with the kernel.shm_rmid_forced sysctl"
)
pod
=
podClient
.
Create
(
pod
)
By
(
"Watching for error events or started pod"
)
// watch for events instead of termination of pod because the kubelet deletes
// failed pods without running containers. This would create a race as the pod
// might have already been deleted here.
ev
,
err
:=
waitForPodErrorEventOrStarted
(
pod
)
Expect
(
err
)
.
NotTo
(
HaveOccurred
())
if
ev
!=
nil
&&
ev
.
Reason
==
sysctl
.
UnsupportedReason
{
framework
.
Skipf
(
"No sysctl support in Docker <1.12"
)
}
Expect
(
ev
)
.
To
(
BeNil
())
By
(
"Waiting for pod completion"
)
err
=
f
.
WaitForPodNoLongerRunning
(
pod
.
Name
)
Expect
(
err
)
.
NotTo
(
HaveOccurred
())
pod
,
err
=
podClient
.
Get
(
pod
.
Name
)
Expect
(
err
)
.
NotTo
(
HaveOccurred
())
By
(
"Checking that the pod succeeded"
)
Expect
(
pod
.
Status
.
Phase
)
.
To
(
Equal
(
api
.
PodSucceeded
))
By
(
"Getting logs from the pod"
)
log
,
err
:=
framework
.
GetPodLogs
(
f
.
Client
,
f
.
Namespace
.
Name
,
pod
.
Name
,
pod
.
Spec
.
Containers
[
0
]
.
Name
)
Expect
(
err
)
.
NotTo
(
HaveOccurred
())
By
(
"Checking that the sysctl is actually updated"
)
Expect
(
log
)
.
To
(
ContainSubstring
(
"kernel.shm_rmid_forced = 1"
))
})
It
(
"should support unsafe sysctls which are actually whitelisted"
,
func
()
{
pod
:=
testPod
()
pod
.
Annotations
[
api
.
UnsafeSysctlsPodAnnotationKey
]
=
api
.
PodAnnotationsFromSysctls
([]
api
.
Sysctl
{
{
Name
:
"kernel.shm_rmid_forced"
,
Value
:
"1"
,
},
})
pod
.
Spec
.
Containers
[
0
]
.
Command
=
[]
string
{
"/bin/sysctl"
,
"kernel.shm_rmid_forced"
}
By
(
"Creating a pod with the kernel.shm_rmid_forced sysctl"
)
pod
=
podClient
.
Create
(
pod
)
By
(
"Watching for error events or started pod"
)
// watch for events instead of termination of pod because the kubelet deletes
// failed pods without running containers. This would create a race as the pod
// might have already been deleted here.
ev
,
err
:=
waitForPodErrorEventOrStarted
(
pod
)
Expect
(
err
)
.
NotTo
(
HaveOccurred
())
if
ev
!=
nil
&&
ev
.
Reason
==
sysctl
.
UnsupportedReason
{
framework
.
Skipf
(
"No sysctl support in Docker <1.12"
)
}
Expect
(
ev
)
.
To
(
BeNil
())
By
(
"Waiting for pod completion"
)
err
=
f
.
WaitForPodNoLongerRunning
(
pod
.
Name
)
Expect
(
err
)
.
NotTo
(
HaveOccurred
())
pod
,
err
=
podClient
.
Get
(
pod
.
Name
)
Expect
(
err
)
.
NotTo
(
HaveOccurred
())
By
(
"Checking that the pod succeeded"
)
Expect
(
pod
.
Status
.
Phase
)
.
To
(
Equal
(
api
.
PodSucceeded
))
By
(
"Getting logs from the pod"
)
log
,
err
:=
framework
.
GetPodLogs
(
f
.
Client
,
f
.
Namespace
.
Name
,
pod
.
Name
,
pod
.
Spec
.
Containers
[
0
]
.
Name
)
Expect
(
err
)
.
NotTo
(
HaveOccurred
())
By
(
"Checking that the sysctl is actually updated"
)
Expect
(
log
)
.
To
(
ContainSubstring
(
"kernel.shm_rmid_forced = 1"
))
})
It
(
"should reject invalid sysctls"
,
func
()
{
pod
:=
testPod
()
pod
.
Annotations
[
api
.
SysctlsPodAnnotationKey
]
=
api
.
PodAnnotationsFromSysctls
([]
api
.
Sysctl
{
{
Name
:
"foo-"
,
Value
:
"bar"
,
},
{
Name
:
"kernel.shmmax"
,
Value
:
"100000000"
,
},
{
Name
:
"safe-and-unsafe"
,
Value
:
"100000000"
,
},
})
pod
.
Annotations
[
api
.
UnsafeSysctlsPodAnnotationKey
]
=
api
.
PodAnnotationsFromSysctls
([]
api
.
Sysctl
{
{
Name
:
"kernel.shmall"
,
Value
:
"100000000"
,
},
{
Name
:
"bar.."
,
Value
:
"42"
,
},
{
Name
:
"safe-and-unsafe"
,
Value
:
"100000000"
,
},
})
By
(
"Creating a pod with one valid and two invalid sysctls"
)
client
:=
f
.
Client
.
Pods
(
f
.
Namespace
.
Name
)
_
,
err
:=
client
.
Create
(
pod
)
defer
client
.
Delete
(
pod
.
Name
,
nil
)
Expect
(
err
)
.
NotTo
(
BeNil
())
Expect
(
err
.
Error
())
.
To
(
ContainSubstring
(
`Invalid value: "foo-"`
))
Expect
(
err
.
Error
())
.
To
(
ContainSubstring
(
`Invalid value: "bar.."`
))
Expect
(
err
.
Error
())
.
To
(
ContainSubstring
(
`safe-and-unsafe`
))
Expect
(
err
.
Error
())
.
NotTo
(
ContainSubstring
(
"kernel.shmmax"
))
})
It
(
"should not launch unsafe, but not explicitly enabled sysctls on the node"
,
func
()
{
pod
:=
testPod
()
pod
.
Annotations
[
api
.
SysctlsPodAnnotationKey
]
=
api
.
PodAnnotationsFromSysctls
([]
api
.
Sysctl
{
{
Name
:
"kernel.msgmax"
,
Value
:
"10000000000"
,
},
})
By
(
"Creating a pod with a greylisted, but not whitelisted sysctl on the node"
)
pod
=
podClient
.
Create
(
pod
)
By
(
"Watching for error events or started pod"
)
// watch for events instead of termination of pod because the kubelet deletes
// failed pods without running containers. This would create a race as the pod
// might have already been deleted here.
ev
,
err
:=
waitForPodErrorEventOrStarted
(
pod
)
Expect
(
err
)
.
NotTo
(
HaveOccurred
())
if
ev
!=
nil
&&
ev
.
Reason
==
sysctl
.
UnsupportedReason
{
framework
.
Skipf
(
"No sysctl support in Docker <1.12"
)
}
By
(
"Checking that the pod was rejected"
)
Expect
(
ev
)
.
ToNot
(
BeNil
())
Expect
(
ev
.
Reason
)
.
To
(
Equal
(
"SysctlForbidden"
))
})
})
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