Diesel93 commented on issue #6534:
URL: https://github.com/apache/camel-k/issues/6534#issuecomment-4116511635

   Thank you for getting back to me so quickly. I tried to implement the custom 
kaniko task solution but ran into an issue with how the operator handles the 
output.
   
   What's happening:
   - Kaniko successfully builds and pushes images to ECR
   - But the operator automatically adds "@" to the beginning of whatever the 
builder task writes to the termination log
   - This breaks the image reference before Kubernetes tries to pull it
   
   example:
   If my kaniko task writes: sha256:abc123...
   The operator changes it to: @sha256:abc123...
   Kubernetes sees this and rejects it as invalid (missing the registry address)
   
   If I try to work around it by writing the full reference: 
myregistry.amazonaws.com/repo@sha256:abc123...
   The operator changes it to: @myregistry.amazonaws.com/repo@sha256:abc123...
   Still invalid - image references can't start with "@"
   
   This blocks using ECR with passwordless authentication method im using with 
EKS Pod Identity


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to