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
504f0f4d
Unverified
Commit
504f0f4d
authored
7 years ago
by
Matt Butcher
Committed by
Adam Reese
7 years ago
Browse files
Options
Download
Patches
Plain Diff
fix(lint): add KubeVersion and TillerVersion to linter
Closes #2393
parent
ddfd9a05
release-2.4
v2.4.2
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pkg/lint/rules/template.go
+14
-1
pkg/lint/rules/template.go
pkg/lint/rules/testdata/albatross/templates/svc.yaml
+2
-0
pkg/lint/rules/testdata/albatross/templates/svc.yaml
with
16 additions
and
1 deletion
+16
-1
pkg/lint/rules/template.go
+
14
−
1
View file @
504f0f4d
...
@@ -21,12 +21,15 @@ import (
...
@@ -21,12 +21,15 @@ import (
"fmt"
"fmt"
"os"
"os"
"path/filepath"
"path/filepath"
"runtime"
"github.com/ghodss/yaml"
"github.com/ghodss/yaml"
"k8s.io/apimachinery/pkg/version"
"k8s.io/helm/pkg/chartutil"
"k8s.io/helm/pkg/chartutil"
"k8s.io/helm/pkg/engine"
"k8s.io/helm/pkg/engine"
"k8s.io/helm/pkg/lint/support"
"k8s.io/helm/pkg/lint/support"
"k8s.io/helm/pkg/timeconv"
"k8s.io/helm/pkg/timeconv"
tversion
"k8s.io/helm/pkg/version"
)
)
// Templates lints the templates in the Linter.
// Templates lints the templates in the Linter.
...
@@ -51,7 +54,17 @@ func Templates(linter *support.Linter) {
...
@@ -51,7 +54,17 @@ func Templates(linter *support.Linter) {
}
}
options
:=
chartutil
.
ReleaseOptions
{
Name
:
"testRelease"
,
Time
:
timeconv
.
Now
(),
Namespace
:
"testNamespace"
}
options
:=
chartutil
.
ReleaseOptions
{
Name
:
"testRelease"
,
Time
:
timeconv
.
Now
(),
Namespace
:
"testNamespace"
}
caps
:=
&
chartutil
.
Capabilities
{
APIVersions
:
chartutil
.
DefaultVersionSet
}
caps
:=
&
chartutil
.
Capabilities
{
APIVersions
:
chartutil
.
DefaultVersionSet
,
KubeVersion
:
&
version
.
Info
{
Major
:
"1"
,
Minor
:
"6"
,
GoVersion
:
runtime
.
Version
(),
Compiler
:
runtime
.
Compiler
,
Platform
:
fmt
.
Sprintf
(
"%s/%s"
,
runtime
.
GOOS
,
runtime
.
GOARCH
),
},
TillerVersion
:
tversion
.
GetVersionProto
(),
}
valuesToRender
,
err
:=
chartutil
.
ToRenderValuesCaps
(
chart
,
chart
.
Values
,
options
,
caps
)
valuesToRender
,
err
:=
chartutil
.
ToRenderValuesCaps
(
chart
,
chart
.
Values
,
options
,
caps
)
if
err
!=
nil
{
if
err
!=
nil
{
// FIXME: This seems to generate a duplicate, but I can't find where the first
// FIXME: This seems to generate a duplicate, but I can't find where the first
...
...
This diff is collapsed.
Click to expand it.
pkg/lint/rules/testdata/albatross/templates/svc.yaml
+
2
−
0
View file @
504f0f4d
...
@@ -8,6 +8,8 @@ metadata:
...
@@ -8,6 +8,8 @@ metadata:
heritage
:
{{
.Release.Service | quote
}}
heritage
:
{{
.Release.Service | quote
}}
release
:
{{
.Release.Name | quote
}}
release
:
{{
.Release.Name | quote
}}
chart
:
"
{{.Chart.Name}}-{{.Chart.Version}}"
chart
:
"
{{.Chart.Name}}-{{.Chart.Version}}"
kubeVersion
:
{{
.Capabilities.KubeVersion.Major
}}
tillerVersion
:
{{
.Capabilities.TillerVersion
}}
spec
:
spec
:
ports
:
ports
:
-
port
:
{{
default 80 .Values.httpPort | quote
}}
-
port
:
{{
default 80 .Values.httpPort | quote
}}
...
...
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