Skip to content

Update docker.io/library/postgres Docker tag to v14.23#147

Closed
red-hat-konflux-kflux-prd-rh02[bot] wants to merge 1 commit into
mainfrom
konflux/mintmaker/main/docker.io-library-postgres-14.x
Closed

Update docker.io/library/postgres Docker tag to v14.23#147
red-hat-konflux-kflux-prd-rh02[bot] wants to merge 1 commit into
mainfrom
konflux/mintmaker/main/docker.io-library-postgres-14.x

Conversation

@red-hat-konflux-kflux-prd-rh02
Copy link
Copy Markdown

@red-hat-konflux-kflux-prd-rh02 red-hat-konflux-kflux-prd-rh02 Bot commented May 13, 2026

This PR contains the following updates:

Package Update Change
docker.io/library/postgres minor 14.214.23

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

To execute skipped test pipelines write comment /ok-to-test.


Documentation

Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.

@openshift-ci openshift-ci Bot requested a review from ciaranRoche May 13, 2026 16:04
@openshift-ci
Copy link
Copy Markdown

openshift-ci Bot commented May 13, 2026

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign tirthct for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-ci
Copy link
Copy Markdown

openshift-ci Bot commented May 13, 2026

Hi @red-hat-konflux-kflux-prd-rh02[bot]. Thanks for your PR.

I'm waiting for a openshift-hyperfleet member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work.

Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented May 13, 2026

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Central YAML (base), Organization UI (inherited)

Review profile: ASSERTIVE

Plan: Enterprise

Run ID: 08ac2713-ef34-4671-8e1c-2d74d6c8b02b

📥 Commits

Reviewing files that changed from the base of the PR and between 34a7c37 and 3f35b0b.

📒 Files selected for processing (1)
  • charts/values.yaml

📝 Walkthrough

Summary by CodeRabbit

  • Chores
    • Updated PostgreSQL image to version 14.23

Walkthrough

The Helm chart values file charts/values.yaml is updated to change the built-in PostgreSQL image from docker.io/library/postgres:14.2 to docker.io/library/postgres:14.23.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and specifically describes the main change: updating the PostgreSQL Docker image tag from 14.2 to 14.23 in the Helm chart configuration.
Description check ✅ Passed The description is related to the changeset, providing details about the PostgreSQL image update from 14.2 to 14.23 via a dependency update table.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch konflux/mintmaker/main/docker.io-library-postgres-14.x

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@charts/values.yaml`:
- Line 225: Update the Helm chart version in Chart.yaml to reflect the values
change (bump the version from 1.0.0 to the next patch, e.g., 1.0.1) so the chart
revision matches the updated PostgreSQL image tag; modify the version field in
Chart.yaml accordingly and commit the change alongside the values.yaml update.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Central YAML (base), Organization UI (inherited)

Review profile: ASSERTIVE

Plan: Enterprise

Run ID: d27148b6-53aa-4968-aac2-68eb08cdd4f9

📥 Commits

Reviewing files that changed from the base of the PR and between 19fe72e and 34a7c37.

📒 Files selected for processing (1)
  • charts/values.yaml

Comment thread charts/values.yaml Outdated
postgresql:
enabled: true
image: docker.io/library/postgres:14.2
image: docker.io/library/postgres:14.22
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Check if Chart.yaml version has been bumped in this PR

# Get the Chart.yaml from main branch
git fetch origin main
MAIN_VERSION=$(git show origin/main:charts/Chart.yaml | grep -E '^version:' | awk '{print $2}')

# Get the current Chart.yaml version
CURRENT_VERSION=$(grep -E '^version:' charts/Chart.yaml | awk '{print $2}')

echo "Main branch version: $MAIN_VERSION"
echo "Current branch version: $CURRENT_VERSION"

if [ "$MAIN_VERSION" = "$CURRENT_VERSION" ]; then
  echo "⚠️  WARNING: Chart.yaml version has not been bumped"
  exit 1
else
  echo "✓ Chart.yaml version has been bumped from $MAIN_VERSION to $CURRENT_VERSION"
fi

Repository: openshift-hyperfleet/hyperfleet-api

Length of output: 312


Bump the Chart.yaml version.

Chart.yaml version must be bumped when making Helm chart changes per coding guidelines. Currently, the version remains at 1.0.0. Update it to reflect this change to the PostgreSQL image tag.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@charts/values.yaml` at line 225, Update the Helm chart version in Chart.yaml
to reflect the values change (bump the version from 1.0.0 to the next patch,
e.g., 1.0.1) so the chart revision matches the updated PostgreSQL image tag;
modify the version field in Chart.yaml accordingly and commit the change
alongside the values.yaml update.

Signed-off-by: red-hat-konflux-kflux-prd-rh02 <190377777+red-hat-konflux-kflux-prd-rh02[bot]@users.noreply.github.com>
@red-hat-konflux-kflux-prd-rh02 red-hat-konflux-kflux-prd-rh02 Bot changed the title Update docker.io/library/postgres Docker tag to v14.22 Update docker.io/library/postgres Docker tag to v14.23 May 15, 2026
@red-hat-konflux-kflux-prd-rh02 red-hat-konflux-kflux-prd-rh02 Bot force-pushed the konflux/mintmaker/main/docker.io-library-postgres-14.x branch from 34a7c37 to 3f35b0b Compare May 15, 2026 00:06
@ciaranRoche
Copy link
Copy Markdown
Contributor

Closing: superseded by renovate.json config in #158 (HYPERFLEET-1095). MintMaker will re-create grouped updates on the next Monday cycle.

@red-hat-konflux-kflux-prd-rh02
Copy link
Copy Markdown
Author

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update (14.23). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the ignoreDeps array of your Renovate config.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

@red-hat-konflux-kflux-prd-rh02 red-hat-konflux-kflux-prd-rh02 Bot deleted the konflux/mintmaker/main/docker.io-library-postgres-14.x branch May 15, 2026 12:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant