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
a594dcb1
Commit
a594dcb1
authored
Aug 16, 2016
by
Kubernetes Submit Queue
Committed by
GitHub
Aug 16, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #30680 from wojtek-t/fix_leak_resources
Automatic merge from submit-queue Check resource leaks only when needed @fejta Broken by #28575
parents
73de6f40
992f023f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
e2e-runner.sh
hack/jenkins/e2e-runner.sh
+7
-5
No files found.
hack/jenkins/e2e-runner.sh
View file @
a594dcb1
...
...
@@ -361,11 +361,13 @@ e2e_go_args=( \
)
case
"
${
KUBERNETES_PROVIDER
}
"
in
gce|gke
)
e2e_go_args+
=(
--check_leaked_resources
)
;;
esac
if
[[
"
${
FAIL_ON_GCP_RESOURCE_LEAK
:-
true
}
"
==
"true"
]]
;
then
case
"
${
KUBERNETES_PROVIDER
}
"
in
gce|gke
)
e2e_go_args+
=(
--check_leaked_resources
)
;;
esac
fi
if
[[
"
${
E2E_UP
,,
}
"
==
"true"
]]
;
then
e2e_go_args+
=(
--up
--ctl
=
"version --match-server-version=false"
)
...
...
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