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
483ba4e9
Commit
483ba4e9
authored
Jun 19, 2015
by
Satnam Singh
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #10141 from jlowdermilk/sad-e2e-is-sad
Allow explicit pinned versions to be specified for jenkins runs
parents
29ffee51
bdd3602e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
e2e.sh
hack/jenkins/e2e.sh
+9
-2
No files found.
hack/jenkins/e2e.sh
View file @
483ba4e9
...
@@ -116,8 +116,15 @@ if [[ "${E2E_UP,,}" == "true" ]]; then
...
@@ -116,8 +116,15 @@ if [[ "${E2E_UP,,}" == "true" ]]; then
export
KUBE_SKIP_UPDATE
=
y
export
KUBE_SKIP_UPDATE
=
y
sudo
flock
-x
-n
/var/run/lock/gcloud-components.lock
-c
"gcloud components update -q"
||
true
sudo
flock
-x
-n
/var/run/lock/gcloud-components.lock
-c
"gcloud components update -q"
||
true
# For GKE, we can get the server-specified version.
if
[[
!
-z
${
JENKINS_EXPLICIT_VERSION
:-}
]]
;
then
if
[[
${
JENKINS_USE_SERVER_VERSION
:-}
=
~ ^[yY]
$
]]
;
then
# Use an explicit pinned version like "ci/v0.10.0-101-g6c814c4" or
# "release/v0.19.1"
IFS
=
'/'
read
-a
varr
<<<
"
${
JENKINS_EXPLICIT_VERSION
}
"
bucket
=
"
${
varr
[0]
}
"
githash
=
"
${
varr
[1]
}
"
echo
"
$bucket
/
$githash
"
elif
[[
${
JENKINS_USE_SERVER_VERSION
:-}
=
~ ^[yY]
$
]]
;
then
# For GKE, we can get the server-specified version.
# We'll pull our TARs for tests from the release bucket.
# We'll pull our TARs for tests from the release bucket.
bucket
=
"release"
bucket
=
"release"
...
...
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