Deploying APIs using the Operator

The Kubernetes API operator provides first-class support for APIs in the Kubernetes ecosystem. It uses the API custom resource which defined as follows.

apiVersion: wso2.com/v1alpha2
kind: API
metadata:
  name: petstore-api
spec:
  swaggerConfigMapName: petstore-cm

When it comes to managing APIs, users are able to deploy APIs in Kubernetes with/without the Control Plane (API Manager).

Follow the deployment guides below to get started with managing APIs in Kubernetes.

Top