Skip to content

Commit 30c45e9

Browse files
Gkrumbach07Ambient Code Botclaude
authored
fix: restore OPERATOR_IMAGE valueFrom in backend manifest (#1160)
## Summary PR #1159 removed the `OPERATOR_IMAGE` env var from the backend deployment manifest. It should stay — the manifest declares `valueFrom` (ConfigMap ref) and CI writes the SHA tag to the ConfigMap. This keeps the deployment declarative. 🤖 Generated with [Claude Code](https://claude.com/claude-code) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Updated backend deployment configuration to source environment variables from ConfigMap instead of CI-based injection, providing improved flexibility in managing operational settings. <!-- end of auto-generated comment: release notes by coderabbit.ai --> Co-authored-by: Ambient Code Bot <bot@ambient-code.local> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 7fc332f commit 30c45e9

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

components/manifests/base/core/backend-deployment.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,13 @@ spec:
104104
name: google-workflow-app-secret
105105
key: BACKEND_URL
106106
optional: true
107-
# OPERATOR_IMAGE for scheduled session triggers is set by CI via oc set env
107+
# Operator image for scheduled session trigger jobs (CI pins via ConfigMap)
108+
- name: OPERATOR_IMAGE
109+
valueFrom:
110+
configMapKeyRef:
111+
name: operator-config
112+
key: OPERATOR_IMAGE
113+
optional: true
108114
# OOTB Workflows Configuration
109115
- name: OOTB_WORKFLOWS_REPO
110116
value: "https://github.com/ambient-code/workflows.git"

0 commit comments

Comments
 (0)