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
9be9ca19
Commit
9be9ca19
authored
Nov 01, 2022
by
Brad Davidson
Committed by
Brad Davidson
Nov 03, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix sonobouy tests on v1.25
Use --disable instead of --no-deploy, and don't silently succeed if sonobouy never runs Signed-off-by:
Brad Davidson
<
brad.davidson@rancher.com
>
parent
68821334
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
15 deletions
+14
-15
test-setup-sonobuoy
scripts/test-setup-sonobuoy
+5
-6
test-setup-sonobuoy-etcd
scripts/test-setup-sonobuoy-etcd
+3
-3
test-setup-sonobuoy-mysql
scripts/test-setup-sonobuoy-mysql
+3
-3
test-setup-sonobuoy-postgres
scripts/test-setup-sonobuoy-postgres
+3
-3
No files found.
scripts/test-setup-sonobuoy
View file @
9be9ca19
...
...
@@ -2,7 +2,7 @@
export
NUM_SERVERS
=
1
export
NUM_AGENTS
=
1
export
SERVER_ARGS
=
'--
no-deploy
=traefik'
export
SERVER_ARGS
=
'--
disable
=traefik'
export
WAIT_SERVICES
=
'coredns local-path-provisioner metrics-server'
export
sonobuoyParallelArgs
=(
--e2e-focus
=
'\[Conformance\]'
--e2e-skip
=
'\[Serial\]'
--e2e-parallel
=
y
)
...
...
@@ -14,10 +14,10 @@ start-test() {
export
-f
start-test
test-post-hook
()
{
if
[[
$1
-eq
0
]]
;
then
return
if
[[
$1
-eq
0
]]
||
[[
!
-f
"
$TEST_DIR
/sonobuoy/plugins/e2e/results/global/e2e.log"
]]
;
then
return
$1
fi
local
failures
=
$(
awk
'/^Summarizing .* Failures?:$/,0'
"
$TEST_DIR
"
/sonobuoy/plugins/e2e/results/global/e2e.log
)
local
failures
=
$(
awk
'/^Summarizing .* Failures?:$/,0'
"
$TEST_DIR
/sonobuoy/plugins/e2e/results/global/e2e.log"
)
# Ignore sonobuoy failures if only these flaky tests have failed
local
flakyTest1
=
'[Fail] [sig-node] Probing container [It] should have monotonically increasing restart count [NodeConformance] [Conformance]'
local
flakyTest2
=
'[Fail] [sig-node] Pods [It] should delete a collection of pods [Conformance]'
...
...
@@ -27,4 +27,4 @@ test-post-hook() {
totalFails
=
$(
grep
-scF
-e
"[Fail]"
<<<
"
$failures
"
)
[
"
$totalFails
"
-le
"
$flakyFails
"
]
}
export
-f
test-post-hook
\ No newline at end of file
export
-f
test-post-hook
scripts/test-setup-sonobuoy-etcd
View file @
9be9ca19
...
...
@@ -15,10 +15,10 @@ server-post-hook() {
export
-f
server-post-hook
test-post-hook
()
{
if
[[
$1
-eq
0
]]
;
then
return
if
[[
$1
-eq
0
]]
||
[[
!
-f
"
$TEST_DIR
/sonobuoy/plugins/e2e/results/global/e2e.log"
]]
;
then
return
$1
fi
local
failures
=
$(
awk
'/^Summarizing .* Failures?:$/,0'
"
$TEST_DIR
"
/sonobuoy/plugins/e2e/results/global/e2e.log
)
local
failures
=
$(
awk
'/^Summarizing .* Failures?:$/,0'
"
$TEST_DIR
/sonobuoy/plugins/e2e/results/global/e2e.log"
)
# Ignore sonobuoy failures if only these flaky tests have failed
local
flakyTest1
=
'[Fail] [sig-node] Probing container [It] should have monotonically increasing restart count [NodeConformance] [Conformance]'
local
flakyTest2
=
'[Fail] [sig-node] Pods [It] should delete a collection of pods [Conformance]'
...
...
scripts/test-setup-sonobuoy-mysql
View file @
9be9ca19
...
...
@@ -42,10 +42,10 @@ cluster-pre-hook() {
export
-f
cluster-pre-hook
test-post-hook
()
{
if
[[
$1
-eq
0
]]
;
then
return
if
[[
$1
-eq
0
]]
||
[[
!
-f
"
$TEST_DIR
/sonobuoy/plugins/e2e/results/global/e2e.log"
]]
;
then
return
$1
fi
local
failures
=
$(
awk
'/^Summarizing .* Failures?:$/,0'
"
$TEST_DIR
"
/sonobuoy/plugins/e2e/results/global/e2e.log
)
local
failures
=
$(
awk
'/^Summarizing .* Failures?:$/,0'
"
$TEST_DIR
/sonobuoy/plugins/e2e/results/global/e2e.log"
)
# Ignore sonobuoy failures if only these flaky tests have failed
local
flakyTest1
=
'[Fail] [sig-node] Probing container [It] should have monotonically increasing restart count [NodeConformance] [Conformance]'
local
flakyTest2
=
'[Fail] [sig-node] Pods [It] should delete a collection of pods [Conformance]'
...
...
scripts/test-setup-sonobuoy-postgres
View file @
9be9ca19
...
...
@@ -42,10 +42,10 @@ cluster-pre-hook() {
export
-f
cluster-pre-hook
test-post-hook
()
{
if
[[
$1
-eq
0
]]
;
then
return
if
[[
$1
-eq
0
]]
||
[[
!
-f
"
$TEST_DIR
/sonobuoy/plugins/e2e/results/global/e2e.log"
]]
;
then
return
$1
fi
local
failures
=
$(
awk
'/^Summarizing .* Failures?:$/,0'
"
$TEST_DIR
"
/sonobuoy/plugins/e2e/results/global/e2e.log
)
local
failures
=
$(
awk
'/^Summarizing .* Failures?:$/,0'
"
$TEST_DIR
/sonobuoy/plugins/e2e/results/global/e2e.log"
)
# Ignore sonobuoy failures if only these flaky tests have failed
local
flakyTest1
=
'[Fail] [sig-node] Probing container [It] should have monotonically increasing restart count [NodeConformance] [Conformance]'
local
flakyTest2
=
'[Fail] [sig-node] Pods [It] should delete a collection of pods [Conformance]'
...
...
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