-
Notifications
You must be signed in to change notification settings - Fork 74
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
chore: replace needle get request for curl on kind setup #461
Conversation
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.
Looks good! Just a small note that it should be 12.16.3
instead of 12.16.13
in the commit description!
The last nodejs version, 12.16.3, created an issue with needle lib for redirect requests, that was breaking the test suites which needed to download a KinD binary. To workaround the issue the needle get request was replaced for a curl command on KinD setup to download KinD binary.
810fd87
to
d122374
Compare
Expected release notes (by @agranado2k) fixes: others (will not be included in Semantic-Release notes):
|
🎉 This PR is included in version 1.27.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
What this does
Because the new nodejs version 12.16.3 created a issue with needle for request that need to be redirected. The test suites that need download KinD binary were breaking during the test. To workaround that we replaced the needle get request for a curl command.
Notes for the reviewer
The needle issue was reported here.