Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/mta abort tasks #514

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions pipeline/workflow-builder.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ARG BUILDER_IMAGE

# The default builder image is the released OSL 1.33 https://catalog.redhat.com/software/containers/openshift-serverless-1/logic-swf-builder-rhel8/6614edd826a5be569c111884?container-tabs=gti
FROM ${BUILDER_IMAGE:-registry.redhat.io/openshift-serverless-1/logic-swf-builder-rhel8@sha256:9a4093e195bec163c609381e3c0ceeec55f6e229c6a1def6f362517886faea71} AS builder
FROM ${BUILDER_IMAGE:-registry-proxy.engineering.redhat.com/rh-osbs/openshift-serverless-1-logic-swf-builder-rhel8@sha256:c6f95fceccc8b4d0d52b21659af0bac18f03dc2a543c531a69e22776ea65c728} AS builder

#ENV MAVEN_REPO_URL=https://maven.repository.redhat.com/earlyaccess/all

Expand All @@ -13,7 +13,7 @@ FROM ${BUILDER_IMAGE:-registry.redhat.io/openshift-serverless-1/logic-swf-builde
# When using nightly:
# ARG QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:999-SNAPSHOT,org.kie:kie-addons-quarkus-persistence-jdbc:999-SNAPSHOT,io.quarkus:quarkus-jdbc-postgresql:3.8.4,io.quarkus:quarkus-agroal:3.8.4,org.kie:kie-addons-quarkus-monitoring-prometheus:999-SNAPSHOT,org.kie:kie-addons-quarkus-monitoring-sonataflow:999-SNAPSHOT
# When using prod:
ARG QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.101.0.redhat-00007,org.kie:kie-addons-quarkus-persistence-jdbc:9.101.0.redhat-00007,io.quarkus:quarkus-jdbc-postgresql:3.8.4.redhat-00002,io.quarkus:quarkus-agroal:3.8.4.redhat-00002
ARG QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.102.0.redhat-00004,org.kie:kie-addons-quarkus-persistence-jdbc:9.102.0.redhat-00004,io.quarkus:quarkus-jdbc-postgresql:3.8.6.redhat-00004,io.quarkus:quarkus-agroal:3.8.6.redhat-00004

# Args to pass to the Quarkus CLI
# add extension command
Expand All @@ -34,9 +34,6 @@ RUN ls -la ./resources

ENV swf_home_dir=/home/kogito/serverless-workflow-project
RUN if [[ -d "./resources/src" ]]; then cp -r ./resources/src/* ./src/; fi
# Workaround for https://github.com/apache/incubator-kie-kogito-runtimes/issues/3725
RUN mvn quarkus:remove-extension -Dextension=org.kie:kie-addons-quarkus-monitoring-sonataflow:9.101.0.redhat-00007
RUN mvn quarkus:remove-extension -Dextension=org.kie:kie-addons-quarkus-monitoring-prometheus:9.101.0.redhat-00007

RUN /home/kogito/launch/build-app.sh ./resources

Expand Down
2 changes: 1 addition & 1 deletion workflows/create-ocp-project/argfile.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BUILDER_IMAGE=

# FIXME Adding monitoring jar fails the build org.kie.kogito:kogito-addons-monitoring-prometheus:1.13.2.redhat-00011
QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.101.0.redhat-00007,org.kie:kie-addons-quarkus-persistence-jdbc:9.101.0.redhat-00007,io.quarkus:quarkus-jdbc-postgresql:3.8.4.redhat-00002,io.quarkus:quarkus-agroal:3.8.4.redhat-00002
QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.102.0.redhat-00004,org.kie:kie-addons-quarkus-persistence-jdbc:9.102.0.redhat-00004,io.quarkus:quarkus-jdbc-postgresql:3.8.6.redhat-00004,io.quarkus:quarkus-agroal:3.8.6.redhat-00004

FLOW_NAME=create-ocp-project Serverless Workflow
FLOW_SUMMARY=create-ocp-project Serverless Workflow
Expand Down
2 changes: 1 addition & 1 deletion workflows/escalation/argfile.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BUILDER_IMAGE=

# FIXME Adding monitoring jar fails the build org.kie.kogito:kogito-addons-monitoring-prometheus:1.13.2.redhat-00011
QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.101.0.redhat-00007,org.kie:kie-addons-quarkus-persistence-jdbc:9.101.0.redhat-00007,io.quarkus:quarkus-jdbc-postgresql:3.8.4.redhat-00002,io.quarkus:quarkus-agroal:3.8.4.redhat-00002
QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.102.0.redhat-00004,org.kie:kie-addons-quarkus-persistence-jdbc:9.102.0.redhat-00004,io.quarkus:quarkus-jdbc-postgresql:3.8.6.redhat-00004,io.quarkus:quarkus-agroal:3.8.6.redhat-00004

FLOW_NAME=escalation
FLOW_SUMMARY=Ticket escalation workflow
Expand Down
2 changes: 1 addition & 1 deletion workflows/escalation/jira-listener/argfile.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BUILDER_IMAGE=

# FIXME Adding monitoring jar fails the build org.kie.kogito:kogito-addons-monitoring-prometheus:1.13.2.redhat-00011
QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.101.0.redhat-00007,org.kie:kie-addons-quarkus-persistence-jdbc:9.101.0.redhat-00007,io.quarkus:quarkus-jdbc-postgresql:3.8.4.redhat-00002,io.quarkus:quarkus-agroal:3.8.4.redhat-00002
QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.102.0.redhat-00004,org.kie:kie-addons-quarkus-persistence-jdbc:9.102.0.redhat-00004,io.quarkus:quarkus-jdbc-postgresql:3.8.6.redhat-00004,io.quarkus:quarkus-agroal:3.8.6.redhat-00004

FLOW_NAME=jira-listener
FLOW_SUMMARY=jira-listener application
Expand Down
2 changes: 1 addition & 1 deletion workflows/extendable-workflow/argfile.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BUILDER_IMAGE=

# FIXME Adding monitoring jar fails the build org.kie.kogito:kogito-addons-monitoring-prometheus:1.13.2.redhat-00011
QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.101.0.redhat-00007,org.kie:kie-addons-quarkus-persistence-jdbc:9.101.0.redhat-00007,io.quarkus:quarkus-jdbc-postgresql:3.8.4.redhat-00002,io.quarkus:quarkus-agroal:3.8.4.redhat-00002
QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.102.0.redhat-00004,org.kie:kie-addons-quarkus-persistence-jdbc:9.102.0.redhat-00004,io.quarkus:quarkus-jdbc-postgresql:3.8.6.redhat-00004,io.quarkus:quarkus-agroal:3.8.6.redhat-00004

FLOW_NAME=extendable-workflow
FLOW_SUMMARY=extendable-workflow workflow
Expand Down
2 changes: 1 addition & 1 deletion workflows/greeting/argfile.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BUILDER_IMAGE=

# FIXME Adding monitoring jar fails the build org.kie.kogito:kogito-addons-monitoring-prometheus:1.13.2.redhat-00011
QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.101.0.redhat-00007,org.kie:kie-addons-quarkus-persistence-jdbc:9.101.0.redhat-00007,io.quarkus:quarkus-jdbc-postgresql:3.8.4.redhat-00002,io.quarkus:quarkus-agroal:3.8.4.redhat-00002
QUARKUS_EXTENSIONS=

FLOW_NAME=Greeting
FLOW_SUMMARY=Greeting workflow
Expand Down
2 changes: 1 addition & 1 deletion workflows/modify-vm-resources/argfile.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BUILDER_IMAGE=

# FIXME Adding monitoring jar fails the build org.kie.kogito:kogito-addons-monitoring-prometheus:1.13.2.redhat-00011
QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.101.0.redhat-00007,org.kie:kie-addons-quarkus-persistence-jdbc:9.101.0.redhat-00007,io.quarkus:quarkus-jdbc-postgresql:3.8.4.redhat-00002,io.quarkus:quarkus-agroal:3.8.4.redhat-00002
QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.102.0.redhat-00004,org.kie:kie-addons-quarkus-persistence-jdbc:9.102.0.redhat-00004,io.quarkus:quarkus-jdbc-postgresql:3.8.6.redhat-00004,io.quarkus:quarkus-agroal:3.8.6.redhat-00004

FLOW_NAME=modify-vm-resources Serverless Workflow
FLOW_SUMMARY=modify-vm-resources Serverless Workflow
Expand Down
2 changes: 1 addition & 1 deletion workflows/move2kube/argfile.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BUILDER_IMAGE=

# FIXME Adding monitoring jar fails the build org.kie.kogito:kogito-addons-monitoring-prometheus:1.13.2.redhat-00011
QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.101.0.redhat-00007,org.kie:kie-addons-quarkus-persistence-jdbc:9.101.0.redhat-00007,io.quarkus:quarkus-jdbc-postgresql:3.8.4.redhat-00002,io.quarkus:quarkus-agroal:3.8.4.redhat-00002
QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.102.0.redhat-00004,org.kie:kie-addons-quarkus-persistence-jdbc:9.102.0.redhat-00004,io.quarkus:quarkus-jdbc-postgresql:3.8.6.redhat-00004,io.quarkus:quarkus-agroal:3.8.6.redhat-00004

FLOW_NAME=move2kube Serverless Workflow
FLOW_SUMMARY=move2kube Serverless Workflow
Expand Down
3 changes: 1 addition & 2 deletions workflows/mta-v7.x/argfile.conf
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
BUILDER_IMAGE=

# FIXME Adding monitoring jar fails the build org.kie.kogito:kogito-addons-monitoring-prometheus:1.13.2.redhat-00011
QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.101.0.redhat-00007,org.kie:kie-addons-quarkus-persistence-jdbc:9.101.0.redhat-00007,io.quarkus:quarkus-jdbc-postgresql:3.8.4.redhat-00002,io.quarkus:quarkus-agroal:3.8.4.redhat-00002
# For dev/nightly
QUARKUS_EXTENSIONS=
# QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:999-SNAPSHOT,org.kie:kie-addons-quarkus-persistence-jdbc:999-SNAPSHOT,io.quarkus:quarkus-jdbc-postgresql:3.8.4,io.quarkus:quarkus-agroal:3.8.4,org.kie:kie-addons-quarkus-monitoring-prometheus:999-SNAPSHOT,org.kie:kie-addons-quarkus-monitoring-sonataflow:999-SNAPSHOT

FLOW_NAME=MTA v7.x Serverless Workflow
Expand Down
2 changes: 1 addition & 1 deletion workflows/mta-v7.x/mta.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
171 changes: 87 additions & 84 deletions workflows/mta-v7.x/mta.sw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ functions:
- name: filterApplication
type: expression
operation: "{application: .applications|map(select(.repository.url == .repositoryURL))[0]}"
- name: deleteTaskGroup
operation: specs/mta.json#deleteTaskGroup
- name: getApplication
operation: specs/mta.json#getApplications
- name: getApplicationAnalysis
Expand Down Expand Up @@ -102,50 +104,65 @@ functions:
- name: successResult
type: expression
operation: '{
"completedWith":"success",
"message": "MTA v7.x analysis completed for " + .repositoryURL,
"outputs":[
{
"key":"MTA Analysis Result URL",
"value": $SECRET.mta.url + "/hub/applications/" + (.application.id|tostring) + "/analysis/report",
"format":"link"
},
{
"key":"Migration Wave Ticket URL",
"value": (if .migrationWaveJiraTicket != null then .migrationWaveJiraTicket.link else "" end),
"format":"link"
}
],
"nextWorkflows":[
{
"id":"m2k",
"name":"Move2Kube workflow"
}
]
result: {
completedWith:"success",
message: "MTA v7.x analysis completed for " + .repositoryURL,
outputs:[
{
key:"MTA Analysis Result URL",
value: $SECRET.mta.url + "/hub/applications/" + (.application.id|tostring) + "/analysis/report",
format:"link"
},
{
key:"Migration Wave Ticket URL",
value: (if .migrationWaveJiraTicket != null then .migrationWaveJiraTicket.link else "" end),
format:"link"
}
],
nextWorkflows:[
{
id:"m2k",
name:"Move2Kube workflow"
}
]
}
}'
- name: mandatoriesIncidentsResult
type: expression
operation: '{
"completedWith": "warning",
"message": "MTA analysis for " + .application.repository.url + " completed with " + (.application.mandatoriesIncidents|tostring) + " incidents in mandatory issues that need to be fixed before being able to provide any next possible workflow. Check the analysis report." + (if .migrationWaveJiraTicket != null then " Application was exported to issue manager." else "" end),
"outputs": [
{
"key":"MTA Analysis Result URL",
"value": ($SECRET.mta.url + "/hub/applications/" + (.application.id|tostring) + "/analysis/report"),
"format": "link"
},
{
"key":"Migration Wave Ticket URL",
"value": (if .migrationWaveJiraTicket != null then .migrationWaveJiraTicket.link else "" end),
"format": "link"
}
]
result: {
completedWith: "warning",
message: "MTA analysis for " + .application.repository.url + " completed with " + (.application.mandatoriesIncidents|tostring) + " incidents in mandatory issues that need to be fixed before being able to provide any next possible workflow. Check the analysis report." + (if .migrationWaveJiraTicket != null then " Application was exported to issue manager." else "" end),
outputs: [
{
key:"MTA Analysis Result URL",
value: ($SECRET.mta.url + "/hub/applications/" + (.application.id|tostring) + "/analysis/report"),
format: "link"
},
{
key:"Migration Wave Ticket URL",
value: (if .migrationWaveJiraTicket != null then .migrationWaveJiraTicket.link else "" end),
format: "link"
}
]
}
}'
- name: errorResult
type: expression
operation: '{
"completedWith":"error",
"message": "MTA analysis for " + .application.repository.url + " failed: " + .exitMessage + ". Check logs of task pod: " + .taskgroup.tasks[0].pod
result: {
completedWith:"error",
message: "MTA analysis for " + .application.repository.url + " failed: " + .exitMessage + ". Check logs of task pod: " + .taskgroup.tasks[0].pod
}
}'

- name: abortResult
type: expression
operation: '{
result: {
completedWith:"aborted",
message: "MTA analysis for " + .application.repository.url + " aborted, all in progress tasks were cancelled."
}
}'

states:
Expand Down Expand Up @@ -191,6 +208,7 @@ states:
- name: SubmitAnalysis
type: operation
actionMode: sequential
compensatedBy: CancelTaskAbort
actions:
- name: submitTaskgroup
functionRef:
Expand All @@ -213,29 +231,21 @@ states:
transition: pollResults
- name: pollResults
type: operation
compensatedBy: CancelTaskAbort
actionMode: sequential
actions:
- name: "SleepBeforeChecking"
functionRef:
refName: "logInfo"
arguments:
message: '"Sleeping before checking the analysis result "'
sleep:
after: PT30S
- name: "getTaskgroup"
functionRef:
refName: getTaskgroup
arguments:
id: ".taskgroup.id"
actionDataFilter:
toStateData: .taskgroup
- name: "logTaskGroup"
functionRef:
refName: "logInfo"
arguments:
message: "\"Logging data: \\(.)\""
sleep:
before: PT30S
transition: checkReportDone
- name: checkReportDone
compensatedBy: CancelTaskAbort
type: switch
dataConditions:
- condition: (.taskgroup.state == "Ready" and (.taskgroup.tasks[0].state == "Running" or (.taskgroup.tasks[0].state == "Pending" or .taskgroup.tasks[0].state == "Postponed")))
Expand Down Expand Up @@ -273,11 +283,6 @@ states:
toStateData: .application.mandatoriesIncidents
functionRef:
refName: countMandatoriesIncidents
- name: "logMandatoriesIncidents"
functionRef:
refName: "logInfo"
arguments:
message: "\"Mandatory incidents: \\(.application.mandatoriesIncidents|tostring)\""
transition: CountNonMandatoriesIncidents
- name: CountNonMandatoriesIncidents
type: operation
Expand All @@ -288,11 +293,6 @@ states:
toStateData: .application.nonMandatoriesIncidents
functionRef:
refName: countNonMandatoriesIncidents
- name: "logNonMandatoriesIncidents"
functionRef:
refName: "logInfo"
arguments:
message: "\"Non-mandatory incidents: \\(.application.nonMandatoriesIncidents|tostring)\""
transition: CheckMandatoriesIncidents
- name: CheckMandatoriesIncidents
type: switch
Expand Down Expand Up @@ -444,11 +444,6 @@ states:
type: operation
actionMode: sequential
actions:
- name: logInfo
functionRef:
refName: "logInfo"
arguments:
message: "\"Logging data: \\(.)\""
- name: "CreateTickets"
functionRef:
refName: createTicket
Expand Down Expand Up @@ -496,18 +491,9 @@ states:
topic: "MTA Analysis Workflow"
link: '$SECRET.mta.url + "/hub/applications/" + (.application.id|tostring) + "/analysis/report"'
severity: "normal"
transition: reportCompletion
- name: reportCompletion
type: operation
actionMode: sequential
actions:
- name: reportCompletion
functionRef:
refName: successResult
actionDataFilter:
toStateData: ".result"
stateDataFilter:
output: ". += .result"
end: true
- name: NotifyMandatoriesIncidentsInApplication
type: operation
Expand All @@ -524,17 +510,9 @@ states:
topic: "MTA Analysis Workflow"
link: '$SECRET.mta.url + "/hub/applications/" + (.application.id|tostring) + "/analysis/report"'
severity: "high"
transition: reportCompletionWithMandatoriesIncidentsInApplication
- name: reportCompletionWithMandatoriesIncidentsInApplication
type: operation
actions:
- name: reportCompletionWithMandatoriesIncidentsInApplication
functionRef:
refName: mandatoriesIncidentsResult
actionDataFilter:
toStateData: ".result"
stateDataFilter:
output: ". += .result"
end: true
- name: NotifyFailureBackstage
type: operation
Expand All @@ -559,8 +537,33 @@ states:
- name: reportFailure
functionRef:
refName: errorResult
actionDataFilter:
toStateData: ".result"
stateDataFilter:
output: ". += .result"
end: true
- name: CancelTaskAbort
type: operation
usedForCompensation: true
actions:
- name: logInfo
functionRef:
refName: logInfo
arguments:
message: '${"MTA workflow: " + $WORKFLOW.instanceId + " was aborted while task was still in progress}"'
- name: "abortTasks"
functionRef:
refName: deleteTaskGroup
arguments:
id: ".taskgroup.id"
- name: createNotification
functionRef:
refName: createNotification
arguments:
recipients:
type: "entity"
entityRef: .recipients
payload:
title: "MTA analysis aborted"
description: '"MTA analysis for " + .application.repository.url + " aborted while tasks still in progress, tasks were cancelled"'
topic: "MTA Analysis Workflow"
severity: "critical"
- name: reportAbort
functionRef:
refName: abortResult
2 changes: 1 addition & 1 deletion workflows/mtv-migration/argfile.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BUILDER_IMAGE=

# FIXME Adding monitoring jar fails the build org.kie.kogito:kogito-addons-monitoring-prometheus:1.13.2.redhat-00011
QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.101.0.redhat-00007,org.kie:kie-addons-quarkus-persistence-jdbc:9.101.0.redhat-00007,io.quarkus:quarkus-jdbc-postgresql:3.8.4.redhat-00002,io.quarkus:quarkus-agroal:3.8.4.redhat-00002
QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.102.0.redhat-00004,org.kie:kie-addons-quarkus-persistence-jdbc:9.102.0.redhat-00004,io.quarkus:quarkus-jdbc-postgresql:3.8.6.redhat-00004,io.quarkus:quarkus-agroal:3.8.6.redhat-00004

FLOW_NAME=MTV migration workflow
FLOW_SUMMARY=MTV migration workflow
Expand Down
2 changes: 1 addition & 1 deletion workflows/mtv-plan/argfile.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BUILDER_IMAGE=

# FIXME Adding monitoring jar fails the build org.kie.kogito:kogito-addons-monitoring-prometheus:1.13.2.redhat-00011
QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.101.0.redhat-00007,org.kie:kie-addons-quarkus-persistence-jdbc:9.101.0.redhat-00007,io.quarkus:quarkus-jdbc-postgresql:3.8.4.redhat-00002,io.quarkus:quarkus-agroal:3.8.4.redhat-00002
QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.102.0.redhat-00004,org.kie:kie-addons-quarkus-persistence-jdbc:9.102.0.redhat-00004,io.quarkus:quarkus-jdbc-postgresql:3.8.6.redhat-00004,io.quarkus:quarkus-agroal:3.8.6.redhat-00004

FLOW_NAME=MTV plan workflow
FLOW_SUMMARY=MTV plan assessment workflow
Expand Down
2 changes: 1 addition & 1 deletion workflows/request-vm-cnv/argfile.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BUILDER_IMAGE=

# FIXME Adding monitoring jar fails the build org.kie.kogito:kogito-addons-monitoring-prometheus:1.13.2.redhat-00011
QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.101.0.redhat-00007,org.kie:kie-addons-quarkus-persistence-jdbc:9.101.0.redhat-00007,io.quarkus:quarkus-jdbc-postgresql:3.8.4.redhat-00002,io.quarkus:quarkus-agroal:3.8.4.redhat-00002
QUARKUS_EXTENSIONS=org.kie:kogito-addons-quarkus-jobs-knative-eventing:9.102.0.redhat-00004,org.kie:kie-addons-quarkus-persistence-jdbc:9.102.0.redhat-00004,io.quarkus:quarkus-jdbc-postgresql:3.8.6.redhat-00004,io.quarkus:quarkus-agroal:3.8.6.redhat-00004

FLOW_NAME=request-vm-cnv Serverless Workflow
FLOW_SUMMARY=request-vm-cnv Serverless Workflow
Expand Down
Loading
Loading