一键导入
add-fbc-ocp-version
Add FBC support for new OCP version in Konflux release data - creates overlays, tenant config, and RPA entries.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Add FBC support for new OCP version in Konflux release data - creates overlays, tenant config, and RPA entries.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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.
Configure Konflux for new Submariner version - creates overlays, tenant config, and RPAs for Y-stream releases.
| name | add-fbc-ocp-version |
| description | Add FBC support for new OCP version in Konflux release data - creates overlays, tenant config, and RPA entries. |
| version | 1.0.0 |
| argument-hint | <ocp-version> <min-submariner-version> |
| user-invocable | true |
| allowed-tools | Bash, Read, Glob |
Adds FBC (File-Based Catalog) support for a new OCP version in Konflux release data.
Usage:
/add-fbc-ocp-version 4.22 0.23
/add-fbc-ocp-version 4-22 0.23 # Hyphenated format also accepted
What it does:
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/add-fbc-ocp-version.sh" ]; then
echo "❌ ERROR: Required orchestrator script not found"
echo "This skill requires: scripts/add-fbc-ocp-version.sh"
exit 1
fi
# Delegate to orchestrator (passes all arguments)
exec "$GIT_ROOT/scripts/add-fbc-ocp-version.sh" $ARGUMENTS