mirror of
https://github.com/helm/helm.git
synced 2026-05-28 04:35:48 -04:00
Merge pull request #5938 from hickeyma/fix-linter-issues
fix(lint): Style conformance issues
This commit is contained in:
commit
cf90b5f9a2
2 changed files with 6 additions and 6 deletions
|
|
@ -236,7 +236,7 @@ func prepareMockRelease(releaseName string, t *testing.T) (func(n string, v int,
|
|||
Description: "A Helm chart for Kubernetes",
|
||||
Version: "0.1.0",
|
||||
},
|
||||
Templates: []*chart.File{&chart.File{Name: "templates/configmap.yaml", Data: configmapData}},
|
||||
Templates: []*chart.File{{Name: "templates/configmap.yaml", Data: configmapData}},
|
||||
}
|
||||
chartPath := filepath.Join(tmpChart, cfile.Metadata.Name)
|
||||
if err := chartutil.SaveDir(cfile, tmpChart); err != nil {
|
||||
|
|
|
|||
|
|
@ -40,11 +40,11 @@ type Upgrade struct {
|
|||
ChartPathOptions
|
||||
ValueOptions
|
||||
|
||||
Install bool
|
||||
Devel bool
|
||||
Namespace string
|
||||
Timeout time.Duration
|
||||
Wait bool
|
||||
Install bool
|
||||
Devel bool
|
||||
Namespace string
|
||||
Timeout time.Duration
|
||||
Wait bool
|
||||
DisableHooks bool
|
||||
DryRun bool
|
||||
Force bool
|
||||
|
|
|
|||
Loading…
Reference in a new issue