Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
viveklak committed Sep 17, 2021
1 parent 097a483 commit d628aa4
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions provider/pkg/provider/helm_release.go
Original file line number Diff line number Diff line change
Expand Up @@ -293,17 +293,17 @@ func (r *helmReleaseProvider) Check(ctx context.Context, req *pulumirpc.CheckReq
helmHome := os.Getenv("HELM_HOME")

helmChartOpts := HelmChartOpts{
HelmFetchOpts: HelmFetchOpts{
CAFile: new.RepositoryOpts.CAFile,
CertFile: new.RepositoryOpts.CertFile,
Devel: new.Devel,
Home: helmHome,
KeyFile: new.RepositoryOpts.KeyFile,
Keyring: new.Keyring,
Password: new.RepositoryOpts.Password,
Repo: new.RepositoryOpts.Repo,
Username: new.RepositoryOpts.Password,
Version: new.Version,
HelmFetchOpts: HelmFetchOpts{
CAFile: new.RepositoryOpts.CAFile,
CertFile: new.RepositoryOpts.CertFile,
Devel: new.Devel,
Home: helmHome,
KeyFile: new.RepositoryOpts.KeyFile,
Keyring: new.Keyring,
Password: new.RepositoryOpts.Password,
Repo: new.RepositoryOpts.Repo,
Username: new.RepositoryOpts.Password,
Version: new.Version,
},
APIVersions: nil,
Chart: new.Chart,
Expand Down

0 comments on commit d628aa4

Please sign in to comment.