forked from opendatahub-io/notebooks
-
Notifications
You must be signed in to change notification settings - Fork 32
[rhoai-2.25] chore(ci): RPM lock renewal workflow + CI triage docs for rhoai-2.25 #2643
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
jiridanek
merged 3 commits into
rhoai-2.25
from
fix/rhoai-2.25-rpms-lock-renewal-workflow
Jul 30, 2026
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,219 @@ | ||
| --- | ||
| # Regenerate rpms.lock.yaml from rpms.in.yaml for ODH (upstream) or RHDS (downstream). | ||
| # Manual-only on rhoai-2.25 — keep RPM lock renewals separate from pylock/piplock updates. | ||
| # | ||
| # Important difference from main: | ||
| # On rhoai-2.25 the only RPM-prefetch / Hermeto rpms.lock.yaml consumer is codeserver, | ||
| # and codeserver is on UBI (ubi9/python-312) with public UBI repos. No RHEL subscription | ||
| # is required for RHDS lock regen here. On main, RHDS lock renewal can still need | ||
| # subscription secrets for entitled content. | ||
| name: RPM Lock Files Renewal Action | ||
|
|
||
| permissions: {} # least-privilege: grant per-job below | ||
|
|
||
| on: # yamllint disable-line rule:truthy | ||
| workflow_dispatch: | ||
| inputs: | ||
| variant: | ||
| description: 'Which RPM lockfile variant to regenerate' | ||
| required: true | ||
| default: 'rhds' | ||
| type: choice | ||
| options: | ||
| - 'odh' | ||
| - 'rhds' | ||
| branch: | ||
| description: 'Branch to update' | ||
| required: false | ||
| default: 'rhoai-2.25' | ||
| use_cache: | ||
| description: 'Use GHCR layer cache (Uncheck to rebuild from scratch)' | ||
| required: false | ||
| default: true | ||
| type: boolean | ||
|
|
||
| jobs: | ||
| refresh-rpm-lock-files: | ||
| if: github.event_name == 'workflow_dispatch' | ||
| runs-on: ubuntu-latest | ||
| concurrency: | ||
| group: refresh-rpm-lock-files-${{ github.ref }} | ||
| cancel-in-progress: false | ||
| permissions: | ||
| contents: read # checkout only; push and PR creation use the PAT | ||
| packages: write # push/pull rpm-lockfile build cache to ghcr.io | ||
| env: | ||
| BRANCH: ${{ github.event.inputs.branch || 'rhoai-2.25' }} | ||
| VARIANT: ${{ github.event.inputs.variant || 'rhds' }} | ||
| TMPDIR: /var/tmp | ||
| CI: "true" | ||
| USE_CACHE: ${{ github.event.inputs.use_cache != 'false' && 'true' || 'false' }} | ||
| CACHE: "ghcr.io/${{ github.repository }}/rpm-lockfile-build-cache-${{ github.event.inputs.variant || 'rhds' }}" | ||
| # Optional; empty on rhoai-2.25 public-UBI path. | ||
| GIT_CRYPT_KEY: ${{ secrets.GIT_CRYPT_KEY }} | ||
| SUBSCRIPTION_ACTIVATION_KEY: ${{ secrets.SUBSCRIPTION_ACTIVATION_KEY }} | ||
| SUBSCRIPTION_ORG: ${{ secrets.SUBSCRIPTION_ORG }} | ||
|
|
||
| steps: | ||
| - name: Downcase CACHE registry path | ||
| run: echo "CACHE=${CACHE,,}" >> "${GITHUB_ENV}" | ||
|
|
||
| - name: Checkout code | ||
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | ||
| with: | ||
| ref: ${{ env.BRANCH }} | ||
| persist-credentials: false | ||
|
|
||
| - name: Configure Git | ||
| run: | | ||
| git config --global user.email "github-actions[bot]@users.noreply.github.com" | ||
| git config --global user.name "GitHub Actions" | ||
|
|
||
| - name: Prepare Podman temp directory | ||
| run: mkdir -p "$TMPDIR" | ||
|
|
||
| # Optional RHDS extras. On rhoai-2.25, create-rpm-lockfile.sh uses public UBI | ||
| # when subscription env is unset; skip git-crypt when GIT_CRYPT_KEY is empty. | ||
| - name: Install git-crypt | ||
| if: env.VARIANT == 'rhds' && env.GIT_CRYPT_KEY != '' | ||
| uses: ./.github/actions/apt-install | ||
| with: | ||
| packages: git-crypt | ||
|
|
||
| - name: Unlock encrypted secrets with git-crypt | ||
| if: env.VARIANT == 'rhds' && env.GIT_CRYPT_KEY != '' | ||
| run: | | ||
| echo "${GIT_CRYPT_KEY}" | base64 --decode > ./git-crypt-key | ||
| trap 'rm -f ./git-crypt-key' EXIT | ||
| git-crypt unlock ./git-crypt-key | ||
|
|
||
| - name: Configure registry auth from pull-secret | ||
| if: env.VARIANT == 'rhds' | ||
| run: | | ||
| # git-crypt leaves a tracked encrypted blob when GIT_CRYPT_KEY is unset; | ||
| # only install auth when the file is real JSON (unlocked / plaintext). | ||
| if [[ -f ci/secrets/pull-secret.json ]] && | ||
| jq -e 'type == "object"' ci/secrets/pull-secret.json >/dev/null 2>&1; then | ||
| mkdir -p "$HOME/.config/containers" | ||
| cp ci/secrets/pull-secret.json "$HOME/.config/containers/auth.json" | ||
| else | ||
| echo "No usable ci/secrets/pull-secret.json — continuing with public UBI repos only." | ||
| fi | ||
|
|
||
| - name: Mask subscription credentials (optional) | ||
| if: env.VARIANT == 'rhds' | ||
| run: | | ||
| if [[ -n "${SUBSCRIPTION_ACTIVATION_KEY:-}" && -n "${SUBSCRIPTION_ORG:-}" ]]; then | ||
| echo "::add-mask::${SUBSCRIPTION_ACTIVATION_KEY}" | ||
| echo "::add-mask::${SUBSCRIPTION_ORG}" | ||
| else | ||
| echo "No subscription secrets — RHDS lock regen will use public UBI (rhoai-2.25)." | ||
| fi | ||
|
|
||
| - name: Login to GitHub Container Registry | ||
| uses: docker/login-action@abd2ef45e78c5afb21d64d4ca52ee8550d9572c7 # v4.5.1 | ||
| with: | ||
| registry: ghcr.io | ||
| username: ${{ github.actor }} | ||
| password: ${{ secrets.GITHUB_TOKEN }} | ||
|
|
||
| - name: Install Podman | ||
| uses: ./.github/actions/install-podman-action | ||
| with: | ||
| platform: linux/amd64 | ||
|
|
||
| - name: Compute CONTAINER_BUILD_CACHE_ARGS | ||
| id: container-build-cache-args | ||
| run: | | ||
| set -euo pipefail | ||
| if [[ "$VARIANT" == "rhds" ]]; then | ||
| if [[ "$USE_CACHE" == "true" ]]; then | ||
| cache_args="--cache-from ${CACHE}" | ||
| echo "RHDS: read-only GHCR cache (no --cache-to)" >&2 | ||
| else | ||
| cache_args="" | ||
| echo "RHDS: rebuild from scratch (no GHCR cache)" >&2 | ||
| fi | ||
| else | ||
| if [[ "$USE_CACHE" == "true" ]]; then | ||
| cache_args="--cache-from ${CACHE} --cache-to ${CACHE}" | ||
| echo "ODH: using and updating GHCR layer cache" >&2 | ||
| else | ||
| cache_args="--cache-to ${CACHE}" | ||
| echo "ODH: rebuild from scratch; will refresh GHCR cache after build" >&2 | ||
| fi | ||
| fi | ||
| echo "CONTAINER_BUILD_CACHE_ARGS=${cache_args}" >> "${GITHUB_OUTPUT}" | ||
|
|
||
| - name: Regenerate rpms.lock.yaml | ||
| env: | ||
| CONTAINER_BUILD_CACHE_ARGS: ${{ steps.container-build-cache-args.outputs.CONTAINER_BUILD_CACHE_ARGS }} | ||
| run: | | ||
| set -euo pipefail | ||
|
|
||
| # ODH must not see subscription credentials (create-rpm-lockfile.sh would switch mode). | ||
| if [[ "$VARIANT" != "rhds" ]]; then | ||
| unset SUBSCRIPTION_ACTIVATION_KEY SUBSCRIPTION_ORG | ||
| fi | ||
|
|
||
| RPM_INPUTS=( | ||
| "prefetch-input/${VARIANT}/rpms.in.yaml" | ||
| "codeserver/ubi9-python-3.12/prefetch-input/${VARIANT}/rpms.in.yaml" | ||
| ) | ||
|
|
||
| echo "Regenerating RPM lockfiles for variant: ${VARIANT} (USE_CACHE=${USE_CACHE})" | ||
| if [[ "$USE_CACHE" == "false" ]]; then | ||
| podman rmi -f localhost/notebook-rpm-lockfile:latest 2>/dev/null || true | ||
| fi | ||
| for rpm_input in "${RPM_INPUTS[@]}"; do | ||
| if [[ ! -f "$rpm_input" ]]; then | ||
| echo "Skipping missing input: $rpm_input" | ||
| continue | ||
| fi | ||
| echo "=== Generating lockfile from $rpm_input ===" | ||
| ./scripts/lockfile-generators/create-rpm-lockfile.sh --rpm-input "$rpm_input" | ||
| done | ||
|
|
||
| - name: Create Pull Request | ||
| env: | ||
| GH_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} | ||
| run: | | ||
| set -euo pipefail | ||
|
|
||
| for lockfile in \ | ||
| "prefetch-input/${VARIANT}/rpms.lock.yaml" \ | ||
| "codeserver/ubi9-python-3.12/prefetch-input/${VARIANT}/rpms.lock.yaml"; do | ||
| if [[ -f "$lockfile" ]]; then | ||
| git add "$lockfile" | ||
| fi | ||
| done | ||
|
|
||
| if git diff --cached --quiet; then | ||
| echo "No changes to commit." | ||
| exit 0 | ||
| fi | ||
|
|
||
| VARIANT_UPPER=$(echo "$VARIANT" | tr '[:lower:]' '[:upper:]') | ||
| BRANCH_NAME="rpms-lockfile-${VARIANT}-update-$(date +%Y%m%d-%H%M)" | ||
| git checkout -b "$BRANCH_NAME" | ||
| git commit -m "Update ${VARIANT_UPPER} rpms.lock.yaml lock files" | ||
| git push -u "https://x-access-token:${GH_TOKEN}@github.com/${{ github.repository }}.git" "$BRANCH_NAME" | ||
|
|
||
| gh label create "automated-rpms-lockfile-update" \ | ||
| --description "Auto-created RPM lockfile update PR" \ | ||
| --color "0E8A16" \ | ||
| 2>/dev/null || true | ||
|
|
||
| gh pr create \ | ||
| --title "GHA: Update ${VARIANT_UPPER} rpms.lock.yaml lock files" \ | ||
| --head "$BRANCH_NAME" \ | ||
| --body "$(cat <<EOF | ||
| Automated regeneration of \`rpms.lock.yaml\` from \`rpms.in.yaml\` for the **${VARIANT_UPPER}** variant. | ||
|
|
||
| Updated paths (when present): | ||
| - \`prefetch-input/${VARIANT}/rpms.lock.yaml\` | ||
| - \`codeserver/ubi9-python-3.12/prefetch-input/${VARIANT}/rpms.lock.yaml\` | ||
| EOF | ||
| )" \ | ||
| --label "automated-rpms-lockfile-update" \ | ||
| --base "$BRANCH" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,91 @@ | ||
| # CI failure triage (`rhoai-2.25`) | ||
|
|
||
| Short playbook for recurring GitHub Actions / hermetic-build failures on the | ||
| `rhoai-2.25` branch. Prefer this over one-off Dockerfile workarounds when the | ||
| symptom matches a known class below. | ||
|
|
||
| ## Hermeto / DNF: RPM lock pins out of date | ||
|
|
||
| ### Symptom | ||
|
|
||
| During a codeserver (or other hermetic) image build, `dnf install` fails with a | ||
| package conflict similar to: | ||
|
|
||
| ```text | ||
| Error: | ||
| Problem: cannot install both nodejs-1:22.23.1-1.module+… from ubi-9-for-*-appstream-rpms | ||
| and nodejs-1:22.23.1-2.module+… from @System | ||
| - package nodejs-devel-1:22.23.1-1.module+… requires nodejs(…) = 1:22.23.1-1.module+… | ||
| - conflicting requests | ||
| (try to add '--allowerasing' …) | ||
| ``` | ||
|
|
||
| Repo IDs in the log often look like `ubi-9-for-x86_64-appstream-rpms` (hermeto / | ||
| cachi2 overlay), not the image’s default `ubi-9-appstream-rpms`. | ||
|
|
||
| ### What it usually means | ||
|
|
||
| Build CI mounts locked Hermeto RPM repos over `/etc/yum.repos.d/` (from | ||
| `cachi2/output/deps/rpm/<arch>/repos.d/`, generated from committed | ||
| `rpms.lock.yaml`). Those locks pin exact NEVRs. | ||
|
|
||
| Meanwhile the floating base image (for example | ||
| `registry.access.redhat.com/ubi9/python-312:latest`) may already ship a **newer** | ||
| build of the same package (for example `nodejs` `22.23.1-2` on `@System`). | ||
|
|
||
| DNF then tries to install a locked `*-devel` (or related) package that requires | ||
| the **older** NEVR and refuses to replace the newer base package without | ||
| `--allowerasing`. | ||
|
|
||
| So this is usually **stale Hermeto RPM pins**, not a broken Dockerfile `dnf` | ||
| line and not a one-off “add `--allowerasing`” product fix. | ||
|
|
||
| ### Fix | ||
|
|
||
| Relock RPMs so `rpms.lock.yaml` matches current UBI content, then merge that PR | ||
| before retrying the image build. | ||
|
|
||
| **Difference from `main`:** on `rhoai-2.25`, codeserver is the only | ||
| RPM-prefetch / Hermeto consumer and it uses public UBI — no RHEL subscription | ||
| is required for RHDS lock regen. On `main`, RHDS renewal can still need | ||
| subscription secrets. | ||
|
|
||
| 1. Run the **RPM Lock Files Renewal Action** workflow | ||
| (`.github/workflows/rpms-lock-renewal.yaml`) via **Actions → workflow_dispatch**. | ||
| 2. Inputs for this branch: | ||
| - `variant`: `rhds` (downstream / RHOAI) | ||
| - `branch`: `rhoai-2.25` | ||
| - Leave subscription / git-crypt secrets unset (public UBI path). | ||
| 3. Review and merge the automated PR (label `automated-rpms-lockfile-update`). | ||
| On `rhoai-2.25` today that typically updates | ||
| `codeserver/ubi9-python-3.12/prefetch-input/rhds/rpms.lock.yaml`. | ||
|
|
||
| Local equivalent (from repo root, public UBI — no subscription required on this | ||
| branch): | ||
|
|
||
| ```bash | ||
| ./scripts/lockfile-generators/create-rpm-lockfile.sh \ | ||
| --rpm-input codeserver/ubi9-python-3.12/prefetch-input/rhds/rpms.in.yaml | ||
| ``` | ||
|
coderabbitai[bot] marked this conversation as resolved.
|
||
|
|
||
| Do **not** fold this into pylock / `piplock-renewal` PRs; keep RPM lock renewals | ||
| separate. | ||
|
|
||
| ### Related reading | ||
|
|
||
| - Codeserver hermetic / prefetch notes: | ||
| [`codeserver/ubi9-python-3.12/README.md`](../codeserver/ubi9-python-3.12/README.md) | ||
| - Lockfile generators: | ||
| [`scripts/lockfile-generators/README.md`](../scripts/lockfile-generators/README.md) | ||
|
|
||
| ## Other failure classes (pointers) | ||
|
|
||
| | Symptom | Likely cause | Direction | | ||
| | --- | --- | --- | | ||
| | `ModuleNotFoundError: ci.logging_config` | Incomplete GHA infra backport | Backport `ci/logging_config.py` (or stop importing it) | | ||
| | Podman `runroot must be set` | Incomplete `storage.conf` in CI | Set explicit `runroot` in `ci/cached-builds/storage.conf` | | ||
| | Kind / papermill timeouts on qemu arches | Slow startup under emulation | Probe / wait timeouts (image or test harness) | | ||
| | ROCm `ENOSPC` under `/var/tmp` | Large layers + tmp on small root FS | Point Podman tmp/copy dirs at large disk | | ||
|
|
||
| When unsure, treat hermetic `dnf` NEVR conflicts as **relock RPMs first**, then | ||
| re-evaluate. | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.