Tagged by Jenkins.
Merge pull request #254 from kiegroup/kogito-1.44.1

[1.44.x] Update project version to 1.44.1
tree: cdbcec113692de2d093cc0d64617c4e18fd9d4b3
  1. .ci/
  2. .github/
  3. api/
  4. bundle/
  5. config/
  6. container-builder/
  7. controllers/
  8. docs/
  9. hack/
  10. log/
  11. modules/
  12. osbs-extra/
  13. tekton/
  14. test/
  15. utils/
  16. version/
  17. workflowproj/
  18. .gitignore
  19. buildkitd.toml
  20. bundle.Dockerfile
  21. content_sets.yaml
  22. Dockerfile
  23. go.mod
  24. go.sum
  25. go.work
  26. go.work.sum
  27. image.yaml
  28. LICENSE
  29. main.go
  30. Makefile
  31. operator.yaml
  32. osl-image-prod.yaml
  33. PROJECT
  34. README.md
  35. RELEASE_NOTES.md
README.md

SonataFlow Operator

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.

Available modules for integrations

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.

SonataFlow Operator Types (api)

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))

Container Builder (container-builder)

Please see the module's README file.

Workflow Project Handler (workflowproj)

Please see the module's README file.

Development and Contributions

Contributing is easy, just take a look at our contributors'guide.