Open
Conversation
Signed-off-by: ntkathole <nikhilkathole2683@gmail.com>
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.
Root cause: PR #6217 switched Docker images from ubi9/python-312:1 (full UBI) to ubi9/python-312-minimal:1. The full image includes git by default; the minimal image does not. The PR added other system packages (gcc, libpq-devel, etc.) via microdnf but missed git.
Impact: The feast operator's init container uses git clone to set up the feature repository when feastProjectDir.Git is configured (see setInitContainer in services.go). Without git in the image, this fails with git: command not found.
Why tests didn't catch it: The operator's unit tests verify that the init container spec is constructed correctly (correct command, args, env vars), but they don't actually run the container. The missing git binary is a runtime issue inside the actual Docker image, which no existing test exercises.