Platform Engineer Develop Guide
Prerequisitesโ
To follow this guide, you will need:
- Go 1.22 or higher installed and configured
- Kusion v0.12 or higher installed locally
Workflowโ
As a platform engineer, the workflow of developing a Kusion module looks like this:
- Communicate with app developers and identify the fields that should exposed to them in the dev-orient schema
- Identify module input parameters that should be configured by platform engineers in the workspace
- Define the app dev-orient schema
- Develop the module by implementing gRPC interfaces
The first two steps primarily involve communication with the application development team, and the specific details are not included in this tutorial. This tutorial begins with the subsequent two steps.
Set up a developing environmentโ
Developing a Kusion module includes defining a KCL schema and developing a module binary in golang. We will provide a scaffold repository and a new command kusion mod init
to help developers set up the developing environment easily.
After executing the command
kusion mod init <your-module-name>
Kusion will download a scaffold repository and rename this project with your module name. The scaffold contains code templates and all files needed for developing a Kusion module.
Developingโ
The scaffold repository directory structure is shown below:
$ tree kawesome/
.
โโโ example
โย ย โโโ dev
โย ย โย ย โโโ example_workspace.yaml
โย ย โย ย โโโ kcl.mod
โย ย โย ย โโโ main.k
โย ย โย ย โโโ stack.yaml
โย ย โโโ project.yaml
โโโ kawesome.k
โโโ kcl.mod
โโโ src
โโโ Makefile
โโโ go.mod
โโโ go.sum
โโโ kawesome_generator.go
โโโ kawesome_generator_test.go
When developing a Kusion module with the scaffold repository, you could follow the steps below:
Define the module name and version
- For go files. Rename the module name in the
go.mod
and related files to your Kusion module name.
module kawsome
go 1.22
require (
...
)- For KCL files. Rename package name and version in the
kcl.mod
[package]
name = "kawesome"
version = 0.2.0We assume the module named is
kawesome
and the version is0.2.0
in this guide.- For go files. Rename the module name in the
Define the dev-orient schemas. They would be initialized by app developers. In this scaffold repository, we've defined a schema named Kawesome in
kawesome.k
that consists of two resourcesService
andRandomPassword
and they will be generated into a Kubernetes Service and a Terraform RandomPassword later.
schema Kawesome:
""" Kawesome is a sample module schema consisting of Service
and RandomPassword
Attributes
----------
service: Service, default is Undefined, required.
The exposed port of Workload, which will be generated into Kubernetes Service.
randomPassword: RandomPassword, default is Undefined, required.
The sensitive random string, which will be generated into Terraform random_password.
Examples
--------
import kawesome as ks
... ...
accessories: {
"kawesome": kawesome.Kawesome {
service: kawesome.Service{
port: 5678
}
randomPassword: kawesome.RandomPassword {
length: 20
}
}
}
"""
# The exposed port of Workload, which will be generated into Kubernetes Service.
service: Service
# The sensitive random string, which will be generated into Terraform random_password.
randomPassword: RandomPassword
- Implement the gRPC proto generate interface. The
generate
interface consumes the application developer's config described in theAppConfiguration
and the platform engineer's config described in theworkspace
to generate all infrastructure resources represented by this module.
func (k *Kawesome) Generate(_ context.Context, request *module.GeneratorRequest) (*module.GeneratorResponse, error) {
// generate your infrastructure resoruces
}
// Patcher primarily contains patches for fields associated with Workloads, and additionally offers the capability to patch other resources.
type Patcher struct {
// Environments represent the environment variables patched to all containers in the workload.
Environments []v1.EnvVar `json:"environments,omitempty" yaml:"environments,omitempty"`
// Labels represent the labels patched to the workload.
Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"`
// PodLabels represent the labels patched to the pods.
PodLabels map[string]string `json:"podLabels,omitempty" yaml:"podLabels,omitempty"`
// Annotations represent the annotations patched to the workload.
Annotations map[string]string `json:"annotations,omitempty" yaml:"annotations,omitempty"`
// PodAnnotations represent the annotations patched to the pods.
PodAnnotations map[string]string `json:"podAnnotations,omitempty" yaml:"podAnnotations,omitempty"`
// JSONPatchers represents patchers that can be patched to an arbitrary resource.
// The key of this map represents the ResourceId of the resource to be patched.
JSONPatchers map[string]JSONPatcher `json:"jsonPatcher,omitempty" yaml:"jsonPatcher,omitempty"`
}
The GeneratorRequest
contains the application developer's config, platform engineer's config, workload config and related metadata a module could need to generate infrastructure resources.
In the GeneratorResponse
, there are two fields, Resources
and Patchers
. The Resource
represents resources that should operated by Kusion and they will be appended into the Spec. The Patchers
are used to patch the workload and other resources.
Implicit Resource Dependencyโ
When you need to use an attribute of another resource as the value of a specific resource attribute, Kusion supports declaring the implicit resource dependencies with the $kusion_path
prefix. You can concatenate the implicit resource dependency path with the resource id
, attribute name
and the $kusion_path
prefix, for example:
# Dependency path as an attribute value.
spec:
resources:
- id: v1:Service:test-ns:test-service
type: Kubernetes
attributes:
metadata:
annotations:
deployment-name: $kusion_path.v1:Deployment:test-ns:test-deployment.metadata.name
In addition, please note that:
- The implicit resource dependency path can only be used to replace the value in
Attributes
field of theResource
, but not the key. For example, the followingSpec
is invalid:
# Dependency path not in `attributes`.
spec:
resources:
- id: v1:Service:test:$kusion_path.apps/v1:Deployment:test-ns:test-deployment.metadata.name
# Dependency path in the key, but not in the value.
spec:
resources:
- id: apps/v1:Deployment:test-ns:test-deployment
type: Kubernetes
attributes:
metadata:
annotations:
$kusion_path.v1:Service:test-ns:test-service.metadata.name: test-svc
- The implicit resource dependency path can only be used as a standalone value and cannot be combined with other string. For example, the following
Spec
is invalid:
# Dependency path combined with other string.
spec:
resources:
- id: apps/v1:Deployment:test-ns:test-deployment
type: Kubernetes
attributes:
metadata:
annotations:
test-svc: $kusion_path.v1:Service:test-ns:test-service.metadata.name + "-test"
- The impliciy resource dependency path does not support accessing the value in an array, so the following is currently invalid:
# Dependency path accessing the value in an array.
spec:
resources:
- id: apps/v1:Deployment:test-ns:test-deployment
type: Kubernetes
attributes:
metadata:
annotations:
test-svc: $kusion_path.v1:Service:test-ns:test-service.spec.ports[0].name
Publishโ
Publish the Kusion module to an OCI registry with the command kusion mod push
. If your module is open to the public, we welcome and highly encourage you to contribute it to the module registry catalog, so that more people can benefit from the module. Submit a pull request to this repository, once it is merged, it will be published to the KusionStack GitHub container registry.
Publish a stable version
kusion mod push /path/to/my-module oci://<domain>/<org> --creds <YOUR_TOKEN>
Publish a module of a specific OS arch
kusion mod push /path/to/my-module oci://<domain>/<org> --os-arch==darwin/arm64 --creds <YOUR_TOKEN>
Publish a pre-release version
kusion mod push /path/to/my-module oci://<domain>/<org> --latest=false --creds <YOUR_TOKEN>
The OCI URL format is oci://<domain>/<org>
and please ensure that your token has permissions to write to the registry.
More details can be found in the kusion mod push
reference doc.
Register to the workspaceโ
modules:
kawesome:
path: oci://ghcr.io/kusionstack/kawesome
version: 0.2.0
configs:
default:
service:
labels:
kusionstack.io/module-name: kawesome
annotations:
kusionstack.io/module-version: 0.2.0
Register module platform configuration in the workspace.yaml
to standardize the module's behavior. App developers can list all available modules registered in the workspace.