-
Notifications
You must be signed in to change notification settings - Fork 46
✨ test lightspeed [ do not merge ] #521
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
Changes from 4 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 | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -329,7 +329,7 @@ kai_database_address: kai-db.{{ app_namespace }}.svc | |||||||||||||||
|
|
||||||||||||||||
| # LLM Proxy configuration | ||||||||||||||||
| kai_llm_proxy_enabled: false | ||||||||||||||||
| kai_llm_proxy_image_fqin: "{{ lookup('env', 'RELATED_IMAGE_LLAMA_STACK') | default('docker.io/llamastack/distribution-starter:latest', true) }}" | ||||||||||||||||
| kai_llm_proxy_image_fqin: "registry.redhat.io/lightspeed-core/lightspeed-stack-rhel9:latest" | ||||||||||||||||
|
Comment on lines
330
to
+332
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. Hardcoded image breaks the environment override pattern. All other 🔧 Suggested fix to maintain consistency with other image variables # LLM Proxy configuration
kai_llm_proxy_enabled: false
-kai_llm_proxy_image_fqin: "registry.redhat.io/lightspeed-core/lightspeed-stack-rhel9:latest"
+kai_llm_proxy_image_fqin: "{{ lookup('env', 'RELATED_IMAGE_LLM_PROXY') or 'registry.redhat.io/lightspeed-core/lightspeed-stack-rhel9:latest' }}"This maintains consistency with the established pattern while still using the Red Hat registry image as the default. 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||
|
|
||||||||||||||||
| # Internal URL for the LLM proxy service (used by UI reverse proxy) | ||||||||||||||||
| kai_llm_proxy_url: "http://llm-proxy.{{ app_namespace }}.svc.cluster.local:8321" | ||||||||||||||||
|
|
||||||||||||||||
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.
🧩 Analysis chain
🏁 Script executed:
Repository: konveyor/operator
Length of output: 1447
Update ClusterServiceVersion manifests and configure imagePullSecrets for authenticated registry.
The
helm/values.yamlchange toregistry.redhat.io/lightspeed-core/lightspeed-stack-rhel9:latestis out of sync withbundle/manifests/konveyor-operator.clusterserviceversion.yaml(lines 363, 567), which still referencesdocker.io/llamastack/distribution-starter:latest. Additionally, noimagePullSecretsare configured anywhere in the codebase, yetregistry.redhat.iorequires authentication to pull images. Either:If the Red Hat registry image is intentional, ensure imagePullSecrets are configured in deployments to enable authentication.
🤖 Prompt for AI Agents