Skip to content
This repository has been archived by the owner on Apr 22, 2020. It is now read-only.

Commit

Permalink
Merge pull request #133 from crunch-accounting/bugfix/helmpanic
Browse files Browse the repository at this point in the history
"Cherry pick" Helm fix for go panic Helm lists releases
  • Loading branch information
rollulus authored Nov 2, 2018
2 parents dcd3a2d + 7b03144 commit df2a7d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@ Landscaper uses both Helm and Kubernetes. The following Landscaper releases are

| Landscaper | Helm | Kubernetes |
|------------|-------|------------|
| 1.0.21 | 2.11.0| 1.11.1 |
| 1.0.20 | 2.11.0| 1.11.1 |
| 1.0.19 | 2.10.0| 1.10.3 |
| 1.0.17 | 2.8.2 | 1.9 |
Expand Down
2 changes: 1 addition & 1 deletion pkg/landscaper/state_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ func (cp *helmStateProvider) listHelmReleases() ([]*release.Release, error) {
return nil, err
}

return res.Releases, nil
return res.GetReleases(), nil
}

// newComponentFromHelmRelease creates a Component from a Release
Expand Down

0 comments on commit df2a7d6

Please sign in to comment.