원클릭으로
flogo-deploy
Deploy a TIBCO Flogo application to the TIBCO Platform. Provide the flogo app file path and the target dataplane name.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Deploy a TIBCO Flogo application to the TIBCO Platform. Provide the flogo app file path and the target dataplane name.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
A command line tool to create and modify TIBCO Flogo Integration Applications
A command line tool to build executables for TIBCO Flogo Integration Applications
Description on how to create a flogo file that follows an excel mapping
Step-by-step guide to create a Flogo REST API application that queries a database and returns the result
A command line tool to manage the TIBCO Platform, including Flogo & Business Works Applications. This tool can list and deploy applications.
| name | flogo-deploy |
| description | Deploy a TIBCO Flogo application to the TIBCO Platform. Provide the flogo app file path and the target dataplane name. |
| user-invocable | true |
This skill deploys a .flogo application file to a TIBCO Platform dataplane using the tibcop CLI.
Use the TIBCO Platform CLI profile configured for your environment (e.g. set in your project's CLAUDE.md as <YOUR_PROFILE>).
.flogo file (check the Flogo apps folder if not specified, e.g. ./Flogo_Apps/)Follow these steps in order:
Find the .flogo file. If the user provides just an app name, look for it in the configured apps folder (e.g. ./Flogo_Apps/<appName>.flogo) first, then search the project.
tibcop flogo:list-flogo-versions --profile <YOUR_PROFILE> --dataplane-name <DATAPLANE_NAME> --json
Pick the available buildtypeTag from the response (e.g. 2.25.9-b300).
tibcop flogo:create-build --profile <YOUR_PROFILE> --dataplane-name <DATAPLANE_NAME> --flogo-version <FLOGO_VERSION> --json <PATH_TO_FLOGO_FILE>
This will return a buildId and status. Wait for status Success before proceeding.
tibcop flogo:generate-values-from-build --profile <YOUR_PROFILE> --dataplane-name <DATAPLANE_NAME> --build-id <BUILD_ID> --output-dir <OUTPUT_DIR>
Use the same directory as the flogo file for the output. This generates a values.yaml with all the correct deployment configuration.
If the user specified a custom app name, update both of these fields in values.yaml before deploying:
appConfig.originalAppName — the display name in the platformfullnameOverride — the runtime name (Kubernetes release name)If you skip fullnameOverride, the app will appear as the generic flogo-project in the runtime even though originalAppName is correct.
Important: Use deploy-app-release (NOT deploy-app) because it supports the required --eula flag. The deploy-app command will fail with a "TIBCO End User Agreement (EUA)" error.
tibcop flogo:deploy-app-release --profile <YOUR_PROFILE> --dataplane-name <DATAPLANE_NAME> --eula --json <PATH_TO_VALUES_YAML>
This will return an appId and success status.
The app is deployed with 0 replicas by default. Scale it to 1 to start it:
tibcop flogo:scale-app --profile <YOUR_PROFILE> --dataplane-name <DATAPLANE_NAME> --app-id <APP_ID> --count 1 --json
This accepts the scale request asynchronously. The app will start running shortly after.
Provide the user with:
tibcop login --profile <YOUR_PROFILE> to re-authenticate.deploy-app-release with the --eula flag. The deploy-app command does not support EUA acceptance in its JSON payload.tibcop flogo:get-build-status --profile <YOUR_PROFILE> --dataplane-name <DATAPLANE_NAME> --build-id <BUILD_ID> --jsontibcop flogo:provision-flogo-version to provision one first.