oam-go-sdk

module
v0.0.0-...-f4529ed Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 16, 2020 License: Apache-2.0

README

OAM Runtime SDK

The OAM Runtime SDK Project is a collection of go libraries and utility tools for building OAM runtime. With the SDK, we want to streamline and simplify building OAM runtime by achieving:

  • Building new and converting to OAM API types easily.
  • Reducing duplicate coding work via generating code scallfold and importing go library.
  • Hiding low level details like k8s informer and providing high level abstraction to simplify user implementation.

Concepts

The SDK has the following major concepts that simplifies writing OAM code:

  • Handler: A handler is an interface that must be user-implemented. The inputs and outputs are high level abstractions of events and actions.
  • Event: An event is an encapsulation of change that triggers user handler. It could be events of k8s or other platforms (e.g. cloud MQ).
  • Action: An action is an abstraction of declarative description of platform dependent operations. It separates concerns of high level user intention and low level platform details (e.g. client-go). In this way we have a modular system that provides reusable and pluggable actions.

The following diagram shows how they work together:

missing

For more concepts in this SDK, please refer to concepts.md.

Getting started

There is an example implementation of OAM runtime using SDK in pkg/example/framework/main.go. We recommend reading the code as a starting point.

We could run the code and deploy OAM app by running following commands:

# turn on go module
export GO111MODULE=on

# install oam crds
make install

# run example
go run pkg/examples/framework/main.go

# deploy OAM component
kubectl apply -f examples/componentschematics.yaml

# deploy OAM app
kubectl apply -f examples/app.yaml

This example will create a deployment as Server workload.

There is another example which will show you how to build more extensions. Read the doc for more details.

Misc.

oam-runtime contains many utilities to help you implement oam runtime easier:

  • finalizer

  • status check

  • spec equal check

Directories

Path Synopsis
apis
core.oam.dev/v1alpha1
Package v1alpha1 contains API Schema definitions for the core v1alpha1 API group +kubebuilder:object:generate=true +groupName=core.oam.dev
Package v1alpha1 contains API Schema definitions for the core v1alpha1 API group +kubebuilder:object:generate=true +groupName=core.oam.dev
pkg
client/clientset/versioned
This package has the automatically generated clientset.
This package has the automatically generated clientset.
client/clientset/versioned/fake
This package has the automatically generated fake clientset.
This package has the automatically generated fake clientset.
client/clientset/versioned/scheme
This package contains the scheme of the automatically generated clientset.
This package contains the scheme of the automatically generated clientset.
client/clientset/versioned/typed/core.oam.dev/v1alpha1
This package has the automatically generated typed clients.
This package has the automatically generated typed clients.
client/clientset/versioned/typed/core.oam.dev/v1alpha1/fake
Package fake has the automatically generated clients.
Package fake has the automatically generated clients.
oam

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL