-
Notifications
You must be signed in to change notification settings - Fork 8
feat: add helm provider #24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
00f6eee to
88f5607
Compare
|
Upgraded golang to version |
pkg/provider/helm/release.go
Outdated
| func (p *Provider) create(config *releaseConfig) (*Release, error) { | ||
| actionConfig, err := p.getActionConfiguration(config.Namespace) | ||
| if err != nil { | ||
| return nil, err |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's wrap these errors into our own error. It will make it easier to handle errors where we use this methods.
pkg/provider/helm/release.go
Outdated
| }, chartName, nil | ||
| } | ||
|
|
||
| func resolveChartName(repository, name string) (string, string, error) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we can get rid of return value error as it is always nil.
|
Merge conflicts resolved @rohilsurana |
282684f to
14c8285
Compare
This reverts commit 2b799d7.
Scope: