Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-farache committed Oct 23, 2024
1 parent 52c6fe7 commit 7a23029
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion charts/greeting/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.3.0-rc4
version: 1.3.0-rc5

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
12 changes: 6 additions & 6 deletions charts/greeting/templates/03-sonataflow_greeting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ spec:
stateName: ChooseOnLanguage
states:
- dataConditions:
- condition: ${$.[?(@.language == 'English')]}
- condition: .language == "English"
transition:
nextState: GreetInEnglish
- condition: ${$.[?(@.language == 'Spanish')]}
- condition: .language == "Spanish"
transition:
nextState: GreetInSpanish
defaultCondition:
Expand All @@ -38,13 +38,13 @@ spec:
name: ChooseOnLanguage
type: switch
- data:
greeting: 'Hello from YAML Workflow, '
greeting: Hello from YAML Workflow
name: GreetInEnglish
transition:
nextState: GreetPerson
type: inject
- data:
greeting: 'Saludos desde YAML Workflow, '
greeting: Saludos desde YAML Workflow
name: GreetInSpanish
transition:
nextState: GreetPerson
Expand All @@ -55,7 +55,7 @@ spec:
useResults: true
functionRef:
arguments:
message: $.greeting $.name
message: .greeting
invoke: sync
refName: greetFunction
name: greetAction
Expand All @@ -66,7 +66,7 @@ spec:
podTemplate:
container:
resources: {}
image: quay.io/orchestrator/serverless-workflow-greeting:6765367bcc62b9f71c7bc8ea34ca073669edc229
image: quay.io/orchestrator/serverless-workflow-greeting:c3b7031d91ae42fa423d1d25060e50dc6267031c
resources:
configMaps:
- configMap:
Expand Down

0 comments on commit 7a23029

Please sign in to comment.