Back off CA validation on OpenSearch#275
Merged
dbutenhof merged 1 commit intocloud-bulldozer:mainfrom Oct 8, 2025
Merged
Conversation
This problem turned out to be a bit more difficult than I'd hoped, since we build our deployment containers on GitHub Actions with external runners which can't reach the internal Red Hat CA URL. Ultimately the solution would have to be grabbing and installing the CA bundle at container startup (e.g., in the entrypoint); but for now I'm going to declare (temporary) defeat and restore the `verify_certs=False`.
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.
Type of change
Description
This problem turned out to be a bit more difficult than I'd hoped, since we build our deployment containers on GitHub Actions with external runners which can't reach the internal Red Hat CA URL. Ultimately the solution would have to be grabbing and installing the CA bundle at container startup (e.g., in the entrypoint); but for now I'm going to declare (temporary) defeat and restore the
verify_certs=False.Related Tickets & Documents
PANDA-1005 Red Hat CA chain
Checklist before requesting a review
Testing
The real problem is that it's difficult to test GitHub Actions outside the normal triggers, which means we don't see container build problems until merging onto
main. And, in this case, a local test wouldn't really help since I can't reproduce the GitHub Action Runner environment enough to be sure it makes any difference.