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

[DO NOT MERGE] kie-issues#2679: [SonataFlow] [reopen] SonataFlow Management Console on KIE Tools daily dev job #2692

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
20 changes: 20 additions & 0 deletions .ci/jenkins/Jenkinsfile.daily-dev-publish
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,11 @@ pipeline {
SONATAFLOW_DEVMODE_IMAGE__name = 'incubator-kie-sonataflow-devmode'
SONATAFLOW_DEVMODE_IMAGE__buildTag = "${params.BRANCH_NAME}"

SONATAFLOW_MANAGEMENT_CONSOLE__registry = 'docker.io'
SONATAFLOW_MANAGEMENT_CONSOLE__account = 'apache'
SONATAFLOW_MANAGEMENT_CONSOLE__name = 'incubator-kie-sonataflow-management-console'
SONATAFLOW_MANAGEMENT_CONSOLE__buildTag = "${params.BRANCH_NAME}"

SONATAFLOW_OPERATOR__registry = 'docker.io'
SONATAFLOW_OPERATOR__account = 'apache'
SONATAFLOW_OPERATOR__name = 'incubator-kie-sonataflow-operator'
Expand Down Expand Up @@ -273,6 +278,21 @@ pipeline {
}
}

stage('Push sonataflow-management-console to Docker Hub') {
steps {
script {
dockerUtils.pushImageToRegistry(
"${env.SONATAFLOW_MANAGEMENT_CONSOLE__registry}",
"${env.SONATAFLOW_MANAGEMENT_CONSOLE__account}",
"${env.SONATAFLOW_MANAGEMENT_CONSOLE__name}",
"${env.SONATAFLOW_MANAGEMENT_CONSOLE__buildTag}",
"${pipelineVars.dockerHubUserCredentialsId}",
"${pipelineVars.dockerHubTokenCredentialsId}"
)
}
}
}

stage('Push sonataflow-operator to Docker Hub') {
steps {
script {
Expand Down
Loading