Skip to content

Commit 9b87137

Browse files
Fix SonataFlow project naming (#163)
Signed-off-by: Ricardo Zanini <zanini@redhat.com>
1 parent 732f66a commit 9b87137

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Bug Report
2-
description: Report a bug in the Sonata Flow Operator
2+
description: Report a bug in the SonataFlow Operator
33
labels: kind/bug
44
body:
55
- type: markdown
@@ -52,7 +52,7 @@ body:
5252
label: Operator-sdk version
5353
- type: input
5454
attributes:
55-
label: Sonata Flow Operator version or git rev
55+
label: SonataFlow Operator version or git rev
5656
- type: textarea
5757
attributes:
5858
label: Additional information

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
3-
Welcome to the Sonata Flow Operator! Before contributing, make sure to:
3+
Welcome to the SonataFlow Operator! Before contributing, make sure to:
44
55
- Rebase your branch on the latest upstream main
66
- Link any relevant issues, PR's, or documentation

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ You might need to register our schemes:
4141
utilruntime.Must(v1alpha08.AddToScheme(s))
4242
```
4343

44-
## Container Builder (container-builder)
44+
### Container Builder (container-builder)
4545

4646
Please see the module's [README file](container-builder/README.md).
4747

48-
## Workflow Project Handler (workflowproj)
48+
### Workflow Project Handler (workflowproj)
4949

5050
Please see the module's [README file](workflowproj/README.md).
5151

bundle/manifests/sonataflow-operator.clusterserviceversion.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ spec:
116116
kind: SonataFlow
117117
name: sonataflows.sonataflow.org
118118
version: v1alpha08
119-
description: Sonata Flow Operator
119+
description: SonataFlow Operator
120120
displayName: sonataflow-operator
121121
icon:
122122
- base64data: ""
@@ -517,7 +517,7 @@ spec:
517517
- serverless
518518
- serverlessworkflow
519519
links:
520-
- name: Sonata Flow Operator
520+
- name: SonataFlow Operator
521521
url: https://kiegroup.github.io/kogito-docs/serverlessworkflow/latest/index.html
522522
maturity: alpha
523523
provider:

config/manifests/bases/sonataflow-operator.clusterserviceversion.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spec:
2525
kind: SonataFlow
2626
name: sonataflows.sonataflow.org
2727
version: v1alpha08
28-
description: Sonata Flow Operator
28+
description: SonataFlow Operator
2929
displayName: sonataflow-operator
3030
icon:
3131
- base64data: ""
@@ -49,7 +49,7 @@ spec:
4949
- serverless
5050
- serverlessworkflow
5151
links:
52-
- name: Sonata Flow Operator
52+
- name: SonataFlow Operator
5353
url: https://kiegroup.github.io/kogito-docs/serverlessworkflow/latest/index.html
5454
maturity: alpha
5555
provider:

test/e2e/e2e_suite_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ import (
2525
// Run e2e tests using the Ginkgo runner.
2626
func TestE2E(t *testing.T) {
2727
RegisterFailHandler(Fail)
28-
fmt.Fprintf(GinkgoWriter, "Starting Sonata Flow Operator suite\n")
29-
RunSpecs(t, "Sonata Flow e2e suite")
28+
fmt.Fprintf(GinkgoWriter, "Starting SonataFlow Operator suite\n")
29+
RunSpecs(t, "SonataFlow e2e suite")
3030
}

test/e2e/workflow_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const (
4444
openshiftPlatform = "openshift"
4545
)
4646

47-
var _ = Describe("Sonata Flow Operator", Ordered, func() {
47+
var _ = Describe("SonataFlow Operator", Ordered, func() {
4848

4949
BeforeAll(func() {
5050

0 commit comments

Comments
 (0)