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

Support swagger $ref definitions #87

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

afatsini
Copy link

Since Kubernetes 1.28, the parameters of the swagger definition are linked via $ref

Kubernetes 1.29 swagger

for example:

"parameters": [
        {
          "description": "name of the ComponentStatus",
          "in": "path",
          "name": "name",
          "required": true,
          "type": "string",
          "uniqueItems": true
        },
        {
          "$ref": "#/parameters/pretty-tJGM1-ng"
        }
      ]

This is not supported by the current swagger generator.

This pr allow to generate the parameters with $ref while maintaining retrocompatibility with old swagger versions

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant