We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Using the file: protocol doesn't seem to work. It errors out like this:
file:
FATA[0000] generate lib error="import Kubernetes spec: load schema from path: Get http://localhost:8001/swagger.json: dial tcp [::1]:8001: connect: connection refused"
The text was updated successfully, but these errors were encountered:
Doesn't seem to work with remote ether:
The snippet:
local -r schema="https://raw.githubusercontent.com/kubernetes/kubernetes/v${kubernetes_version}/api/openapi-spec/swagger.json" pushd "${schema_dir}" rm -rf "${schema_dir}" mkdir -p "${schema_dir}" openapi2jsonschema \ --kubernetes \ --stand-alone \ "${schema}" popd
returns tons of:
Processing storageclasslist An error occured processing storageclasslist: URLError: <urlopen error [Errno 21] Is a directory: '/Users/.../schema/schemas/'>
with a lot of empty (0-byte) schema files.
Sorry, something went wrong.
to use local file you must use file protocol: file:///AbsolutePath
No branches or pull requests
Using the
file:
protocol doesn't seem to work. It errors out like this:The text was updated successfully, but these errors were encountered: