| name | konflux-application |
| description | Manage Konflux application |
| argument-hint | <subcommand> [args] |
Name
odh-ai-helpers:konflux-application
Synopsis
/konflux:application status <application>
Description
The konflux:application command to manage Konflux application.
This command helps you:
- List all components in the application
- Understand the status of the components in the application - last build, snapshots, releases
Implementation
Subcommand: status
The command performs the following steps:
-
Prerequisites Check:
- Verify
oc CLI is installed: which oc
- Verify cluster access:
oc whoami
- If not installed or not authenticated, provide clear instructions
- Verify
jq CLI is installed: which jq
- Verify
git CLI is installed: which git
- Verify the current directory is a Git repository:
git remote -v
-
Parse Arguments:
application: Application name (required)
-
List components that belong to the application:
-
Show status for each Konflux component:
- Run the following command to get status of each Konflux component from the application
/konflux:component status {component}
Return Value
- status: Table of all components that belong to the provided application
Examples
- Get status all components of the otel-main application:
/konflux:application status otel-main
Arguments
status
- application (required): Name of the Konflux application
Troubleshooting
Related Commands
/konflux:component status <component> - Show component status
/konflux:component build <components> [--wait <duration>] [--wait-release <duration>] [--nudge] - Trigger component build
Additional Resources