-
Notifications
You must be signed in to change notification settings - Fork 12
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
Get rid of vendoring #293
Comments
jaypipes
added a commit
to jaypipes/k8s-resource-topology-exporter
that referenced
this issue
May 21, 2024
The `vendor/` directory makes mirror maintenance unnecessarily painful. Modern Go and modules are a cleaner, more maintainable way to manage dependencies. This patch removes all use of Go vendoring and updates the Makefile targets to install dependent test tooling like `mockery` and `git-semver` into the `_out/` directory instead of looking in a `vendor/` directory. Issue k8stopologyawareschedwg#293 Signed-off-by: Jay Pipes <[email protected]>
Merged
I do have nothing against removing |
jaypipes
added a commit
to jaypipes/k8s-resource-topology-exporter
that referenced
this issue
May 21, 2024
The `vendor/` directory makes mirror maintenance unnecessarily painful. Modern Go and modules are a cleaner, more maintainable way to manage dependencies. This patch removes all use of Go vendoring and updates the Makefile targets to install dependent test tooling like `mockery` and `git-semver` into the `_out/` directory instead of looking in a `vendor/` directory. Issue k8stopologyawareschedwg#293 Signed-off-by: Jay Pipes <[email protected]>
closed thanks to #294 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We (Microsoft Network Cloud) have a mirror of this repo internally for software supply chain purposes and the
vendor/
directory makes the mirror maintenance unnecessarily painful. Modern Go and modules are a cleaner, more maintainable way to manage dependencies.The text was updated successfully, but these errors were encountered: