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.
3 files changed
tree: 23abf3646c515f0aef81820291742002929bf17c
  1. .ci/
  2. .github/
  3. api/
  4. bundle/
  5. bundle.osl/
  6. config/
  7. container-builder/
  8. controllers/
  9. docs/
  10. hack/
  11. log/
  12. modules/
  13. osbs-extra/
  14. tekton/
  15. test/
  16. utils/
  17. version/
  18. workflowproj/
  19. .gitignore
  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. Makefile.osl
  32. operator.yaml
  33. osl-bundle-prod.yaml
  34. osl-image-prod.yaml
  35. PROJECT
  36. README.md
  37. 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.

Productization notes

In order to productize the Red Hat OpenShift Serverless Logic Operator read the notes into the productization'section.