-
Notifications
You must be signed in to change notification settings - Fork 36
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
Remove the TODO list from README.md #17
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,3 @@ | ||
# Drone plugin for Helm 3 | ||
|
||
TODO: | ||
|
||
* [x] Make a `.drone.yml` that's sufficient for building an image | ||
* [x] Make a `Dockerfile` that's sufficient for launching the built image | ||
* [x] Make `cmd/drone-helm/main.go` actually invoke `helm` | ||
* [x] Make `golint` part of the build process (and make it pass) | ||
* [x] Implement debug output | ||
* [x] Flesh out `helm upgrade` until it's capable of working | ||
* [x] Implement config settings for `upgrade` | ||
* [ ] Implement `helm lint` | ||
* [ ] Implement `helm delete` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Issue #4 |
||
* [ ] Look for command-line flags added in helm3; implement them | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Issue #11 |
||
* [ ] EKS support | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Issue #5 |
||
* [ ] Dotenv support | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Issue #6 |
||
* [ ] Example drone config in this README | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Issue #8 |
||
* [ ] Change `.drone.yml` to use a real docker registry | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Issue #7 |
||
|
||
Nice-to-haves: | ||
|
||
* [ ] Cleanup() method on Steps to close open filehandles, etc. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. WONTFIX: this would be a responsible practice on a persistent machine, but I don't think it's necessary in Drone's ephemeral containers. |
||
* [ ] Replace `fmt.Printf` with an actual logger | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Issue #14 |
||
* [ ] Replace `fmt.Errorf` with `github.com/pkg/errors.Wrap`, since the built-in `Unwrap` doesn't work the way `Cause` does | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. WONTFIX: |
||
* [ ] Deprecation warnings if there are environment variables that aren't applicable in helm3 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Issue #10 |
||
Dissatisfied with this empty README? Consider grabbing [the "put stuff in the README" issue](https://github.com/pelotech/drone-helm3/issues/8)! |
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.
Issue #3