Open
Conversation
Fryguy
reviewed
Mar 5, 2026
| { yum -y module enable postgresql:13 || :; } && \ | ||
| INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper postgresql-server postgresql-contrib" && \ | ||
| yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \ | ||
| { dnf -y module enable postgresql:13 || :; } && \ |
Member
There was a problem hiding this comment.
Should this be 16?
Suggested change
| { dnf -y module enable postgresql:13 || :; } && \ | |
| { dnf -y module enable postgresql:16 || :; } && \ |
Member
|
cc @jrafanie |
jrafanie
reviewed
Mar 5, 2026
| yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \ | ||
| { dnf -y module enable postgresql:13 || :; } && \ | ||
| INSTALL_PKGS="rsync tar gettext-envsubst nss_wrapper-libs glibc-locale-source xz" && \ | ||
| PSQL_PKGS="postgresql16-server postgresql16-contrib postgresql16-upgrade postgresql16-pgvector pgaudit" && \ |
Member
There was a problem hiding this comment.
are they called postgresql16* packages even if pg16 is the default in el10 and we enable postgresql:16?
I always chuckle when we upgrade postgresql because there's new dependencies we need to install with it.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Part of: ManageIQ/manageiq#23737