-
Notifications
You must be signed in to change notification settings - Fork 40.3k
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
Kubectl: Replace usages of swagger with open API #44589
Comments
@mbohlool We should come up with a TODO list of replacing usages of swagger with openAPI. |
@mengqiy sounds great. I am not familiar with kubectl code. Can you list all usage of old swagger in kubectl here? A link to packages would be enough but a link to actual usages (or samples of usages in those packages) would be much better. We can then create a list of tasks for it. |
If you need guidance on how to use the name and/or logo of the OpenAPI Specification, there's a style guide here: https://github.com/OAI/OpenAPI-Style-Guide#the-specification-name-and-usage |
@mbohlool Sorry for the delay. The usage of old swagger: And there are several commands call the Validator() function to do the validation. If you need them, I will list them. |
Thanks. From what I read, we have two options:
|
I'm leaning to the second option, too. |
That means we should support old swagger for 2-3 releases. How much work do you think option 2 is? |
That's not good. We definitely should use OpenAPI.
Should not be too much. |
Automatic merge from submit-queue (batch tested with PRs 49665, 49689, 49495, 49146, 48934) openapi: refactor into more generic structure **What this PR does / why we need it**: Refactor the openapi schema to be a more generic structure that can be "visited" to get more specific types. Will be used by validation. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: #44589 **Special notes for your reviewer**: **Release note**: ```release-note NONE ```
dupe of #38637? |
I think this is more about kubectl, @pwittrock do you agree? if that is the case then title should reflect that. |
Automatic merge from submit-queue (batch tested with PRs 53228, 53232, 53353). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Remove swagger 1.2 validation **What this PR does / why we need it**: Removes dependency on swagger 1.2 for validation. Always uses openapi. cc @mbohlool **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #44589 **Special notes for your reviewer**: **Release note**: ```release-note Kubectl: Remove swagger 1.2 validation. Also removes options `--use-openapi` and `--schema-cache-dir` as these are no longer needed. ```
Automatic merge from submit-queue (batch tested with PRs 53228, 53232, 53353). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Openapi explain **What this PR does / why we need it**: This rewrites `kubectl explain` but using openapi rather than swagger 1.2. Also removes the former code. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #49465, fixes partially #44589, fixes partially #38637 **Special notes for your reviewer**: FYI @mbohlool **Release note**: ```release-note `kubectl explain` now uses openapi rather than swagger 1.2. ```
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. kubectl: Remove swagger 1.2 entirely. **What this PR does / why we need it**: Remove dead code since nothing is using swagger 1.2 anymore. This doesn't change any feature, it's just removing unused code. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: Follow up on #44589 **Special notes for your reviewer**: **Release note**: ```release-note NONE ```
Deprecate the discovery API returning Swagger and replace all instances with open API
The text was updated successfully, but these errors were encountered: