diff --git a/workspaces/orchestrator/plugins/orchestrator-common/report.api.md b/workspaces/orchestrator/plugins/orchestrator-common/report.api.md index 585998b9ab..4b2205cb81 100644 --- a/workspaces/orchestrator/plugins/orchestrator-common/report.api.md +++ b/workspaces/orchestrator/plugins/orchestrator-common/report.api.md @@ -141,7 +141,7 @@ export interface ConfigurationParameters { export const DEFAULT_SONATAFLOW_BASE_URL = "http://localhost"; // @public -export const DEFAULT_SONATAFLOW_CONTAINER_IMAGE = "quay.io/kubesmarts/incubator-kie-sonataflow-devmode:9.103.x-prod"; +export const DEFAULT_SONATAFLOW_CONTAINER_IMAGE = "quay.io/kubesmarts/incubator-kie-sonataflow-devmode:main"; // Warning: (ae-missing-release-tag) "DEFAULT_SONATAFLOW_PERSISTENCE_PATH" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal) // diff --git a/workspaces/orchestrator/plugins/orchestrator-common/src/constants.ts b/workspaces/orchestrator/plugins/orchestrator-common/src/constants.ts index 238b4a6144..05e3bcdd88 100644 --- a/workspaces/orchestrator/plugins/orchestrator-common/src/constants.ts +++ b/workspaces/orchestrator/plugins/orchestrator-common/src/constants.ts @@ -22,7 +22,7 @@ * This approach will enable a more smooth dev mode experience, as opposed to using nightly or dayly builds. */ export const DEFAULT_SONATAFLOW_CONTAINER_IMAGE = - 'quay.io/kubesmarts/incubator-kie-sonataflow-devmode:9.103.x-prod'; + 'quay.io/kubesmarts/incubator-kie-sonataflow-devmode:main'; export const DEFAULT_SONATAFLOW_PERSISTENCE_PATH = '/home/kogito/persistence'; export const DEFAULT_SONATAFLOW_BASE_URL = 'http://localhost';