Agent and env variables (this is almost duplicate thread )
I’m running simple script:
import os
from dotenv import load_dotenv
from clearml import Dataset, Task
from icecream import ic
load_dotenv()
task = Task.init(project_name = 'image-rating', task_name = 'Test env vars', output_uri=True)
var_1 = os.getenv("test_var1")
var_2 = os.getenv("test_var2")
ic(var_1)
ic(var_2)
Output:
ic| var_1: 'var1_value'
ic| var_2: 'var2_value'
In clearml.conf I have:
apply_environment: true
environment {
test_var1: "var1_value"
test_var2: "var2_value"
}
And in when I’m runnig daemon I see this evn in the log:
sdk.environment.test_var1 = ****
sdk.environment.test_var2 = ****
But when I run the task with Agent it seems that it’s doesn’t have access to this envs:
ic| var_1: None
ic| var_2: None
How to setup everything to use envs?