fix: reload Connect API and UI TLS certificate when rotated#93
fix: reload Connect API and UI TLS certificate when rotated#93markgoddard merged 1 commit intomainfrom
Conversation
Summary of ChangesHello @markgoddard, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request addresses the critical need for automatic TLS certificate rotation within the Connect API and UI services. By transitioning Envoy's TLS configuration from static definitions to a dynamic Secret Discovery Service (SDS) approach, the system can now automatically detect and reload updated certificates and private keys from the filesystem. This enhancement significantly improves operational security and reduces manual intervention for certificate management. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request correctly updates the Envoy configuration to use the Secret Discovery Service (SDS) for TLS certificates, enabling automatic reloading when they are rotated. However, it introduces a security-sensitive flaw by including a redundant static secret definition in the Connect API's Envoy configuration (charts/cofide-connect/templates/configmap-envoy.yaml). This redundancy will likely prevent the dynamic rotation from functioning as intended for the API component, undermining the PR's objective. Removing this static definition is crucial to ensure Envoy correctly utilizes the dynamic SDS source and the certificate rotation works as intended.
77af20c to
85ba414
Compare
By using SDS to define the certificate secrets, Envoy will watch the directory for changes, and reload when certificates are rotated. Note that the SDS resources cannot be in static_resources, which is why we use a separate file as a dynamic SDS configuration source. See example 3 in [1]. [1] https://www.envoyproxy.io/docs/envoy/latest/configuration/security/secret#key-rotation Fixes: cofide/cofide-connect#1383
85ba414 to
31fa5cb
Compare
By using SDS to define the certificate secrets, Envoy will watch the
directory for changes, and reload when certificates are rotated.
Note that the SDS resources cannot be in static_resources, which is why
we use a separate file as a dynamic SDS configuration source. See
example 3 in [1].
[1] https://www.envoyproxy.io/docs/envoy/latest/configuration/security/secret#key-rotation
Fixes: https://github.com/cofide/cofide-connect/issues/1383