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
267d1fbd
Commit
267d1fbd
authored
Sep 22, 2016
by
Minhan Xia
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
swtich ifdown/ifup to use ip link down/up instead
parent
87b40782
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
reboot.go
test/e2e/reboot.go
+1
-1
No files found.
test/e2e/reboot.go
View file @
267d1fbd
...
@@ -106,7 +106,7 @@ var _ = framework.KubeDescribe("Reboot [Disruptive] [Feature:Reboot]", func() {
...
@@ -106,7 +106,7 @@ var _ = framework.KubeDescribe("Reboot [Disruptive] [Feature:Reboot]", func() {
It
(
"each node by switching off the network interface and ensure they function upon switch on"
,
func
()
{
It
(
"each node by switching off the network interface and ensure they function upon switch on"
,
func
()
{
// switch the network interface off for a while to simulate a network outage
// switch the network interface off for a while to simulate a network outage
// We sleep 10 seconds to give some time for ssh command to cleanly finish before network is down.
// We sleep 10 seconds to give some time for ssh command to cleanly finish before network is down.
testReboot
(
f
.
Client
,
"nohup sh -c 'sleep 10 && sudo i
fdown eth0 && sleep 120 && sudo ifup eth0
' >/dev/null 2>&1 &"
)
testReboot
(
f
.
Client
,
"nohup sh -c 'sleep 10 && sudo i
p link set eth0 down && sleep 120 && sudo ip link set eth0 up
' >/dev/null 2>&1 &"
)
})
})
It
(
"each node by dropping all inbound packets for a while and ensure they function afterwards"
,
func
()
{
It
(
"each node by dropping all inbound packets for a while and ensure they function afterwards"
,
func
()
{
...
...
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