Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
1105 Внедрение механизмов обеспечения безопасности цепочки поставки программных проектов
Legacy
scanned-projects
helm
Commits
0e32e641
Unverified
Commit
0e32e641
authored
4 years ago
by
Matt Butcher
Committed by
GitHub
4 years ago
Browse files
Options
Download
Patches
Plain Diff
fix: lint with strict passes for helm create (#7926)
Signed-off-by:
Matt Butcher
<
matt.butcher@microsoft.com
>
parent
eb426706
release-2.17
dev-v2
release-2.16
v2.17.0
v2.17.0-rc.1
v2.16.12
v2.16.11
v2.16.10
v2.16.9
v2.16.8
v2.16.7
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pkg/chartutil/create.go
+1
-1
pkg/chartutil/create.go
pkg/lint/lint_test.go
+38
-2
pkg/lint/lint_test.go
with
39 additions
and
3 deletions
+39
-3
pkg/chartutil/create.go
+
1
−
1
View file @
0e32e641
...
@@ -74,7 +74,7 @@ serviceAccount:
...
@@ -74,7 +74,7 @@ serviceAccount:
create: true
create: true
# The name of the service account to use.
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
# If not set and create is true, a name is generated using the fullname template
name:
name:
""
podSecurityContext: {}
podSecurityContext: {}
# fsGroup: 2000
# fsGroup: 2000
...
...
This diff is collapsed.
Click to expand it.
pkg/lint/lint_test.go
+
38
−
2
View file @
0e32e641
...
@@ -17,11 +17,14 @@ limitations under the License.
...
@@ -17,11 +17,14 @@ limitations under the License.
package
lint
package
lint
import
(
import
(
"io/ioutil"
"os"
"strings"
"strings"
"testing"
"k8s.io/helm/pkg/chartutil"
"k8s.io/helm/pkg/lint/support"
"k8s.io/helm/pkg/lint/support"
"k8s.io/helm/pkg/proto/hapi/chart"
"testing"
)
)
var
values
=
[]
byte
{}
var
values
=
[]
byte
{}
...
@@ -101,3 +104,36 @@ func TestGoodChart(t *testing.T) {
...
@@ -101,3 +104,36 @@ func TestGoodChart(t *testing.T) {
t
.
Errorf
(
"All failed but shouldn't have: %#v"
,
m
)
t
.
Errorf
(
"All failed but shouldn't have: %#v"
,
m
)
}
}
}
}
// TestHelmCreateChart tests that a `helm create` always passes a `helm lint` test.
//
// See https://github.com/helm/helm/issues/7923
func
TestHelmCreateChart
(
t
*
testing
.
T
)
{
dir
,
err
:=
ioutil
.
TempDir
(
""
,
"-helm-test"
)
if
err
!=
nil
{
t
.
Fatal
(
err
)
}
defer
os
.
RemoveAll
(
dir
)
cfile
:=
&
chart
.
Metadata
{
Name
:
"testhelmcreatepasseslint"
,
Description
:
"See lint_test.go"
,
Version
:
"0.1.0"
,
AppVersion
:
"1.0"
,
ApiVersion
:
chartutil
.
ApiVersionV1
,
}
createdChart
,
err
:=
chartutil
.
Create
(
cfile
,
dir
)
if
err
!=
nil
{
t
.
Error
(
err
)
// Fatal is bad because of the defer.
return
}
m
:=
All
(
createdChart
,
values
,
namespace
,
true
)
.
Messages
if
ll
:=
len
(
m
);
ll
!=
1
{
t
.
Errorf
(
"All should have had exactly 1 error. Got %d"
,
ll
)
}
else
if
msg
:=
m
[
0
]
.
Err
.
Error
();
!
strings
.
Contains
(
msg
,
"icon is recommended"
)
{
t
.
Errorf
(
"Unexpected lint error: %s"
,
msg
)
}
}
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets