Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user authored and masayag committed Feb 1, 2024
1 parent 2ee3e20 commit e527a07
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
apiVersion: v1
data:
greeting.sw.input-schema.json: |-
greeting.sw.input-schema.json: |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"language": {
"type": "string"
"title": "Language",
"description": "Language to greet",
"type": "string",
"enum": ["English", "Spanish"],
"default": "English"
}
}
}
kind: ConfigMap
metadata:
creationTimestamp: null
name: 01-greeting-resources
namespace: default
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ metadata:
app: greeting
sonataflow.org/workflow-app: greeting
name: greeting
namespace: default
spec:
flow:
dataInputSchema:
Expand Down Expand Up @@ -64,7 +63,7 @@ spec:
podTemplate:
container:
resources: {}
image: quay.io/orchestrator/serverless-workflow-greeting:8d13ff0400cfa3bfee76a2975357dd3d5160a4fa
image: quay.io/orchestrator/serverless-workflow-greeting:cc43bcae9e65d99bce64b7ab23f3665ab243a2d3
resources:
configMaps:
- configMap:
Expand Down

0 comments on commit e527a07

Please sign in to comment.