Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hi , I Am New To Clearml , I Am Trying To Create A Pipeline That Have Multiple Steps That Run Inside A Gitlab Repo , So I Pass It Add_Function_Step With A Token Like : Repo=F"

Hi ,
I am new to clearml , I am trying to create a pipeline that have multiple steps that run inside a gitlab repo , so i pass it add_function_step with a token like :
repo=f" None :{token}@gitlab.com/user/reponame.git"
where token is defined at the begging of the script of the pipeline using token = os.environ.get('GITLAB_TOKEN')
this works fine when i run the pipeline from the script directly but when i run it from the web interface it dosn't find the token.
i understand that i can define the token in clearml config but how ? i wasn't able to find instructions in the docs.

  
  
Posted one month ago
Votes Newest

Answers


Hi BlushingElephant78

have multiple steps that run inside a gitlab repo

one thing to make sure that is not missed, "inside a gitlab repo" , notice the actual pipeline is running on agents/workers/k8s gitlab will be the trigger and monitor it, but the actual execution should probably happen somewhere with proper compute

this works fine when i run the pipeline from the script directly but when i run it from the web interface

try to configure your git_user/git_pass with your user/app-key (or token)
None
it will essentially create the same link to pull the git from, i.e. None ... "

  
  
Posted one month ago
173 Views
1 Answer
one month ago
one month ago
Tags
Similar posts