commit | 6c70c4cbfa805aad96e491e7f2e0699c2214b0ed | [log] [tgz] |
---|---|---|
author | Walter Medvedeo <wmedvedeo@gmail.com> | Tue Oct 03 18:50:54 2023 +0200 |
committer | GitHub <noreply@github.com> | Tue Oct 03 13:50:54 2023 -0300 |
tree | 23abf3646c515f0aef81820291742002929bf17c | |
parent | b2a01bc2d1360f0c3d7c3b51051e85f2ade4ed82 [diff] |
KOGITO-9856: [Operator] Operator calculated kogito.service.url don't have protocol (#270) - Adds the missing protocol. - Introduces the ability to have set of properties that the operator generates by default, but the user has the chance to override with their own values if needed.
The SonataFlow Operator defines a set of Kubernetes Custom Resources to help users to deploy SonataFlow projects on Kubernetes and OpenShift.
Please visit our official documentation to know more.
If you're a developer, and you are interested in integrating your project or application with the SonataFlow Operator ecosystem, this repository provides a few Go Modules described below.
Every custom resource managed by the operator is exported in the module api. You can use it to programmatically create any custom type managed by the operator. To use it, simply run:
go get github.com/kiegroup/kogito-serverless-workflow/api
Then you can create any type programmatically, for example:
workflow := &v1alpha08.SonataFlow{
ObjectMeta: metav1.ObjectMeta{Name: w.name, Namespace: w.namespace},
Spec: v1alpha08.SonataFlowSpec{Flow: *myWorkflowDef>}
}
You can use the Kubernetes client-go library to manipulate these objects in the cluster.
You might need to register our schemes:
s := scheme.Scheme
utilruntime.Must(v1alpha08.AddToScheme(s))
Please see the module's README file.
Please see the module's README file.
Contributing is easy, just take a look at our contributors'guide.
In order to productize the Red Hat OpenShift Serverless Logic Operator read the notes into the productization'section.