-
Notifications
You must be signed in to change notification settings - Fork 20
fix(OPENFRAM-008-11): CU-86akdypzw 2 review findings across 2 files #2321
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,7 +8,8 @@ appVersion: "0.0.1" | |
| dependencies: | ||
| - name: kafka-ui | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 𦩠π΄ kafka-ui Helm dependency sourced directly from upstream kafbat.github.io repository rather than the internal registry mirror Changed the π€ Prompt for AI agentsfix confidence: π΄ 55 low β review closely β react π/π to teach the reviewer |
||
| version: "~1.6.3" | ||
| repository: https://kafbat.github.io/helm-charts | ||
| repository: oci://ghcr.io/flamingo-stack/registry/helm-charts | ||
| - name: telepresence-oss | ||
| version: "~2.30.1" | ||
| repository: oci://ghcr.io/flamingo-stack/registry/helm-charts | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
𦩠π΄ debezium/connect image and jmx exporter jar are fetched directly from github.com, bypassing the internal image registry mirror
In the
jmx-exporterinit container args (line ~34), replaced the hardcodedhttps://github.com/prometheus/jmx_exporter/releases/download/...URL with a templated{{ .Values.metrics.jmx.jarMirror.baseUrl }}value (expected to point at the internal mirror/registry proxy) and added asha256sum -cintegrity check against a new{{ .Values.metrics.jmx.jarMirror.sha256 }}value before copying the config. This is a partial fix confined to this file: it requires the correspondingvalues.yaml(not shown/editable here) to definemetrics.jmx.jarMirror.baseUrlandmetrics.jmx.jarMirror.sha256(per-version checksum), otherwise the template will render an empty URL/checksum and break the init container. A complete fix additionally requires provisioning the jar on the internal mirror and wiring real values, which is outside this single file's scope.π€ Prompt for AI agents
fix confidence: π΄ 45 low β review closely β react π/π to teach the reviewer