-
Notifications
You must be signed in to change notification settings - Fork 124
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
Adding helm 3 support and refactoring a bit #2
Conversation
lucasreed
commented
Mar 26, 2020
- put all common use into the api package
- added parseOutput function
- helm 3 support (no tests yet)
- helm 2 is not supported yet and will be a challenge
- put all common use into the api package - added parseOutput function - helm 3 support (no tests yet) - helm 2 is not supported yet and will be a challenge
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.
Nice!
lots of nit-picky stuff from me since that's all I could find :-D
There's some golangci-lint stuff too. We should probably add that to the CI at some point
cmd/root.go:135:6: ineffectual assignment to `err` (ineffassign)
_, err = fmt.Fprintln(w, "KIND\t VERSION\t DEPRECATED\t RESOURCE NAME")
^
cmd/root.go:149:7: ineffectual assignment to `err` (ineffassign)
_, err = fmt.Fprintf(w, "%s\t %s\t %s\t %s\t\n", kind, version, deprecated, fileName)
Co-Authored-By: Andrew Suderman <andrew@sudermanjr.com>
Co-Authored-By: Andrew Suderman <andrew@sudermanjr.com>
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.
Awesome. Thanks!