ワンクリックで
create-fbc-release
Create FBC releases for all OCP versions (stage or prod) with comprehensive verification
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create FBC releases for all OCP versions (stage or prod) with comprehensive verification
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Add FBC support for new OCP version in Konflux release data - creates overlays, tenant config, and RPA entries.
Get FBC catalog URLs for QE sharing (Release CRs, snapshots, or prod index)
Update Konflux Dockerfile version labels across Submariner repositories
Update bundle component image SHAs from Konflux snapshots - automates SHA extraction, config file updates, bundle regeneration, and verification
Automate Konflux bundle setup on new release branches - configures Tekton pipelines for bundle builds including infrastructure, OLM annotations, hermetic builds, and multi-platform support
Automate Konflux component setup on new release branches - configures Tekton pipelines, Dockerfiles, RPM lockfiles, and hermetic builds for Submariner components. Supports 8 component types. Arguments are optional and order-independent.
| name | create-fbc-release |
| description | Create FBC releases for all OCP versions (stage or prod) with comprehensive verification |
| version | 1.0.0 |
| argument-hint | <version> [--stage|--prod] |
| user-invocable | true |
| allowed-tools | Bash |
Automates Step 12 (FBC stage releases) and Step 17 (FBC prod releases) of the Submariner release workflow.
What it does:
Usage:
/create-fbc-release 0.22.1 --stage # Create stage releases
/create-fbc-release 0.22.1 --prod # Create prod releases
/create-fbc-release 0.22 --stage # Auto-detects latest patch version
/create-fbc-release 0.22 # Defaults to stage
Prerequisites:
Arguments: $ARGUMENTS
#!/bin/bash
set -euo pipefail
# Find git repository root
GIT_ROOT=$(git rev-parse --show-toplevel 2>/dev/null)
if [ -z "$GIT_ROOT" ]; then
echo "❌ ERROR: Not in a git repository"
exit 1
fi
# Verify orchestrator script exists
if [ ! -x "$GIT_ROOT/scripts/create-fbc-releases.sh" ]; then
echo "❌ ERROR: Required orchestrator script not found"
echo "This skill requires: scripts/create-fbc-releases.sh"
exit 1
fi
# Delegate to orchestrator (passes all arguments)
exec "$GIT_ROOT/scripts/create-fbc-releases.sh" $ARGUMENTS