skills/bundle-image-update/SKILL.md
Update bundle component image SHAs from Konflux snapshots - automates SHA extraction, config file updates, bundle regeneration, and verification
npx skillsauth add stolostron/submariner-release-management bundle-image-updateInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Update bundle component image SHAs from Konflux snapshots.
What this skill does: Queries Konflux for latest passing snapshot, extracts 7 component SHAs, updates config files, regenerates bundle with make bundle, updates Dockerfile labels (version bumps), verifies all SHAs match, and creates a single commit.
Usage:
/bundle-image-update # Auto: latest snapshot, SHA-only
/bundle-image-update 0.21.2 # Version bump to 0.21.2
/bundle-image-update --snapshot submariner-0-21-xxxxx # Specific snapshot
make bundle-image-update VERSION=0.21.2
Requirements: ~/go/src/submariner-io/submariner-operator must exist on a release branch.
Must be logged into Konflux cluster. Bash 4.0+.
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/bundle-image-update.sh" ]; then
echo "ERROR: Required orchestrator script not found"
echo "This skill requires: scripts/bundle-image-update.sh"
exit 1
fi
# Delegate to orchestrator (passes all arguments)
exec "$GIT_ROOT/scripts/bundle-image-update.sh" $ARGUMENTS
data-ai
Add FBC support for new OCP version in Konflux release data - creates overlays, tenant config, and RPA entries.
devops
Update Konflux Dockerfile version labels across Submariner repositories
tools
Get FBC catalog URLs for QE sharing (Release CRs, snapshots, or prod index)
tools
Update RPM lockfiles across Submariner repositories