KusionStack / kcl-openapi

OpenAPI Code Generator for KCL

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

KCL OpenAPI

GoDoc license Coverage Status

The work on this project is mainly based on go-swagger, and this project just adds some KCL-specific templates and language features on it. We are grateful and sincerely respectful for the outstanding work in go-swagger. Meanwhile, we are working on making the customized features separated from the basic OpenAPI logic in go-swagger.

Main use cases:

  • Swagger Openapi
    • Translate Swagger OpenAPI spec to KCL code
  • Kubernetes CRD
    • Translate Kubernetes CRD to KCL code

Quick Start

Install

  • Since kcl openapi tool is packaged with kusion distribution, and we highly recommend you to install the Kusion tools package which contains the KCL language support and other tools.

  • Or we can only install the tool with go install:

    go install kusionstack.io/kcl-openapi@latest

Features

The tool translates Swagger OpenAPI spec and Kubernetes CRD to KCL models.

Translate Swagger OpenAPI Spec to KCL

The tool now supports OpenAPI 2.0. By parsing the "Definitions" section of the spec, the KCL OpenAPI tool will extract the defined models from it and generate the corresponding KCL representation.

The command is as follows:

kcl-openapi generate model -f ${your_open_api_spec} -t ${the_kcl_files_output_dir}

Translate Kubernetes CRD to KCL

The tool can also translate the Kubernetes CRD to KCL models. By parsing the spec.versions[n].schema.openAPIV3Schema (n means the latest version of the spec will be used) section of the CRD, the KCL OpenAPI tool will extract the structural schema and generate the corresponding KCL representation.

The command is as follows:

kcl-openapi generate model --crd -f ${your_CRD.yaml} -t ${the_kcl_files_output_dir} --skip-validation

KCL OpenAPI Spec

The KCL OpenAPI Spec defines a complete specification of how OpenAPI objects are mapping to KCL language elements.

Ask for help

If the tool isn't working as you expect, please reach out to us by filing an issue.

License

Apache License Version 2.0

About

OpenAPI Code Generator for KCL

License:Apache License 2.0


Languages

Language:Go 99.4%Language:Makefile 0.4%Language:Dockerfile 0.2%Language:Shell 0.1%