Skip to content
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

Add status code check for http file sources #523

Merged
merged 1 commit into from
Jun 8, 2022
Merged

Conversation

praveenrewar
Copy link
Member

@praveenrewar praveenrewar commented Jun 3, 2022

What this PR does / why we need it:

  • Use http.Client instead of http to make get calls
  • Add status code check to error out for non OK http status codes
    (OK = 2xx)
  • Add unit tests for http file sources

Which issue(s) this PR fixes:

Fixes #521

Does this PR introduce a user-facing change?

NONE

Additional Notes for your reviewer:

Review Checklist:
  • Follows the developer guidelines
  • Relevant tests are added or updated
  • Relevant docs in this repo added or updated
  • Relevant carvel.dev docs added or updated in a separate PR and there's
    a link to that PR
  • Code is at least as readable and maintainable as it was before this
    change

Additional documentation e.g., Proposal, usage docs, etc.:

Current behaviour

$ kapp deploy -a test -f https://github.com/fake/path/
Target cluster 'https://192.168.64.93:8443' (nodes: minikube)

kapp: Error: error converting YAML to JSON: yaml: line 163: mapping values are not allowed in this context

Expected behaviour:

$ /kapp deploy -a test -f https://github.com/fake/path/                                      
Target cluster 'https://192.168.64.93:8443' (nodes: minikube)

kapp: Error: Requesting URL 'https://github.com/fake/path/': 404 Not Found

@praveenrewar praveenrewar force-pushed the http-file branch 2 times, most recently from 6ee93bc to a0a2ed6 Compare June 6, 2022 04:09
Copy link
Contributor

@100mik 100mik left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!
I think using status OK would be more appropriate for the test, but since we are going ahead with a range, I guess it makes sense to have something that is in the middle 🚀

@kumaritanushree
Copy link
Contributor

LGTM

- Use http.Client instead of http to make get calls
- Add status code check to error out for non OK (2xx) http status codes
- Add unit tests for http file sources
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Intermitent failure when executing kapp deploy command
5 participants