feat: allow custom binary paths for PostgreSQL extensions#10250
Merged
gbartolini merged 11 commits intomainfrom Mar 11, 2026
Merged
feat: allow custom binary paths for PostgreSQL extensions#10250gbartolini merged 11 commits intomainfrom
gbartolini merged 11 commits intomainfrom
Conversation
Contributor
|
❗ By default, the pull request is configured to backport to all release branches.
|
999e451 to
846b88a
Compare
GabriFedi97
reviewed
Mar 10, 2026
bin_path option to extension images
armru
approved these changes
Mar 11, 2026
Member
|
/test |
Contributor
|
@armru, here's the link to the E2E on CNPG workflow run: https://github.com/cloudnative-pg/cloudnative-pg/actions/runs/22963232450 |
mnencia
approved these changes
Mar 11, 2026
Signed-off-by: Niccolò Fei <[email protected]> Signed-off-by: Armando Ruocco <[email protected]>
Signed-off-by: Niccolò Fei <[email protected]> Signed-off-by: Armando Ruocco <[email protected]>
Signed-off-by: Gabriele Bartolini <[email protected]> Signed-off-by: Armando Ruocco <[email protected]>
Signed-off-by: Niccolò Fei <[email protected]> Signed-off-by: Armando Ruocco <[email protected]>
Signed-off-by: Niccolò Fei <[email protected]> Signed-off-by: Armando Ruocco <[email protected]>
Signed-off-by: Niccolò Fei <[email protected]> Signed-off-by: Armando Ruocco <[email protected]>
Signed-off-by: Niccolò Fei <[email protected]> Signed-off-by: Armando Ruocco <[email protected]>
Improve inconsistent title casing in the extension docs and improve comments on collectLibraryPaths/collectBinPaths to document filepath.Join normalization behavior. Signed-off-by: Armando Ruocco <[email protected]>
Signed-off-by: Niccolò Fei <[email protected]>
Signed-off-by: Marco Nenciarini <[email protected]>
Member
|
/test |
Contributor
|
@mnencia, here's the link to the E2E on CNPG workflow run: https://github.com/cloudnative-pg/cloudnative-pg/actions/runs/22968530154 |
Signed-off-by: Gabriele Bartolini <[email protected]>
gbartolini
approved these changes
Mar 11, 2026
bin_path option to extension images
Member
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.
Add a
bin_pathfield to thepostgresql.extensionsstanza, allowing extensions to specify directory paths for external binaries. These paths are automatically appended to thePATHenvironment variable for the Postgres process. This field is also supported in:ClusterImageCatalog.spec.images[].extensions[].bin_pathImageCatalog.spec.images[].extensions[].bin_pathThis enables extensions that rely on external CLI tools to function correctly within the containerized environment.
Closes #10152