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
cdab19b0
Unverified
Commit
cdab19b0
authored
Jan 24, 2020
by
Erik Wilson
Committed by
GitHub
Jan 24, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1350 from erikwilson/enforce-tag-version-match
Enforce that tag versions are prefixed with k8s go.mod version
parents
b4f50913
6317da01
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
test-helpers
scripts/test-helpers
+1
-2
version.sh
scripts/version.sh
+6
-2
No files found.
scripts/test-helpers
View file @
cdab19b0
...
@@ -189,12 +189,11 @@ sonobuoy-test() {
...
@@ -189,12 +189,11 @@ sonobuoy-test() {
return
0
return
0
fi
fi
echo
'Starting sonobuoy tests'
echo
'Starting sonobuoy tests'
local
conformanceVersion
=
$(
sed
-e
's/[-+].*$//g'
<<<
"
$VERSION_K8S
"
)
sonobuoy run
\
sonobuoy run
\
--config
=
scripts/sonobuoy-config.json
\
--config
=
scripts/sonobuoy-config.json
\
--plugin-env
=
e2e.E2E_USE_GO_RUNNER
=
true
\
--plugin-env
=
e2e.E2E_USE_GO_RUNNER
=
true
\
--kube-conformance-image-version
=
${
conformanceVersion
}
\
--kube-conformance-image-version
=
${
VERSION_K8S
}
\
--wait
=
30
\
--wait
=
30
\
$@
&
$@
&
...
...
scripts/version.sh
View file @
cdab19b0
...
@@ -26,7 +26,7 @@ if [ -z "$VERSION_CRICTL" ]; then
...
@@ -26,7 +26,7 @@ if [ -z "$VERSION_CRICTL" ]; then
VERSION_CRICTL
=
"v0.0.0"
VERSION_CRICTL
=
"v0.0.0"
fi
fi
VERSION_K8S
=
$(
grep
k8s.io/kubernetes go.mod |
head
-n1
|
awk
'{print $4}'
)
VERSION_K8S
=
$(
grep
k8s.io/kubernetes go.mod |
head
-n1
|
awk
'{print $4}'
|
sed
-e
's/[-+].*//'
)
if
[
-z
"
$VERSION_K8S
"
]
;
then
if
[
-z
"
$VERSION_K8S
"
]
;
then
VERSION_K8S
=
"v0.0.0"
VERSION_K8S
=
"v0.0.0"
fi
fi
...
@@ -34,8 +34,12 @@ fi
...
@@ -34,8 +34,12 @@ fi
VERSION_CNIPLUGINS
=
"v0.7.6-k3s1"
VERSION_CNIPLUGINS
=
"v0.7.6-k3s1"
if
[[
-n
"
$GIT_TAG
"
]]
;
then
if
[[
-n
"
$GIT_TAG
"
]]
;
then
if
[[
!
"
$GIT_TAG
"
=
~ ^
"
$VERSION_K8S
"
[
+-]
]]
;
then
echo
"Tagged version '
$GIT_TAG
' does not match expected version '
$VERSION_K8S
[+-]*'"
>
&2
exit
1
fi
VERSION
=
$GIT_TAG
VERSION
=
$GIT_TAG
else
else
VERSION
=
"
$
(
sed
-e
's/[-+].*//'
<<<
"
$VERSION_K8S
"
)
+
${
COMMIT
:0:8
}
$DIRTY
"
VERSION
=
"
$
VERSION_K8S
+
${
COMMIT
:0:8
}
$DIRTY
"
fi
fi
VERSION_TAG
=
"
$(
sed
-e
's/+/-/g'
<<<
"
$VERSION
"
)
"
VERSION_TAG
=
"
$(
sed
-e
's/+/-/g'
<<<
"
$VERSION
"
)
"
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