-
Notifications
You must be signed in to change notification settings - Fork 253
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 'automatically generated' strings from repo #1412
remove 'automatically generated' strings from repo #1412
Conversation
Maintainers use an import organizer called 'gci' that ignores files with the string 'automatically generated' when called with its --skip-generated flag. This commit is the result of the following command: ``` rg ' automatically generated' -l | xargs -n1 sed -i 's/ automatically generated//g' ``` None of the changed files are _actually_ generated files. We do not want gci to think they are. Signed-off-by: Joe Lanford <[email protected]>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1412 +/- ##
=======================================
Coverage 48.14% 48.14%
=======================================
Files 134 134
Lines 12752 12752
=======================================
Hits 6139 6139
Misses 5575 5575
Partials 1038 1038 ☔ View full report in Codecov by Sentry. |
@@ -17,7 +17,7 @@ spec: | |||
|
|||
### Reading and writing to etcd | |||
|
|||
Communicate with etcd though its command line utility `etcdctl` or with the API using the automatically generated Kubernetes Service. |
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.
Is there any cause for concern that these diverge from the source?
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.
I don't think so, all just one-time copied test files.
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.
Also :whistles: .... the etcd content is duplicated all over this repo.
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.
Yeah, it's... messy.
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: grokspawn, joelanford The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
b12dea8
Maintainers use an import organizer called 'gci' that ignores files with the string 'automatically generated' when called with its --skip-generated flag.
This commit is the result of the following command:
None of the changed files are actually generated files. We do not want gci to think they are.
Description of the change:
Motivation for the change:
Reviewer Checklist
/docs