We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fd4443 commit d390a73Copy full SHA for d390a73
src/agentex/lib/cli/handlers/deploy_handlers.py
@@ -165,11 +165,12 @@ def merge_deployment_configs(
165
helm_values[TEMPORAL_WORKER_KEY]["secretEnvVars"] = secret_env_vars
166
167
# Set the agent_config env vars first to the helm values and so then it can be overriden by the cluster config
168
- encoded_principal = _encode_principal_context(manifest)
169
if agent_config.env:
170
helm_values["env"] = agent_config.env
171
if TEMPORAL_WORKER_KEY in helm_values:
172
helm_values[TEMPORAL_WORKER_KEY]["env"] = agent_config.env
+
173
+ encoded_principal = _encode_principal_context(manifest)
174
if encoded_principal:
175
helm_values["env"][EnvVarKeys.AUTH_PRINCIPAL_B64] = encoded_principal
176
0 commit comments