File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/agentex/lib/cli/handlers Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -260,8 +260,10 @@ def merge_deployment_configs(
260260 helm_values ["global" ]["imagePullSecrets" ] = pull_secrets
261261 helm_values ["imagePullSecrets" ] = pull_secrets
262262
263- # Add dynamic ACP command based on manifest configuration
264- add_acp_command_to_helm_values (helm_values , manifest , manifest_path )
263+ # Add dynamic ACP command based on manifest configuration if command is not set in helm overrides
264+ helm_overrides_command = agent_env_config and agent_env_config .helm_overrides and "command" in agent_env_config .helm_overrides
265+ if not helm_overrides_command :
266+ add_acp_command_to_helm_values (helm_values , manifest , manifest_path )
265267
266268 print ("Deploying with the following helm values: " , helm_values )
267269 return helm_values
You can’t perform that action at this time.
0 commit comments