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
Can I Ask How Can We Add A Common Docker Credentials To Allow Clearml Agent Pod To Pull Images When Spawned Off? Where Can We Add In Clearml.Conf Or The Agent Values.Yaml

Can I ask how can we add a common docker credentials to allow clearml agent pod to pull images when spawned off? Where can we add in clearml.conf or the agent values.yaml

  
  
Posted 27 days ago
Votes Newest

Answers 3


@<1523701070390366208:profile|CostlyOstrich36> Yes. I'm running on k8s

  
  
Posted 27 days ago

Hey @<1523701304709353472:profile|OddShrimp85> - You can tweak the following section in the clearml-agent override values:

# -- Global parameters section
global:
  # -- Images registry
  imageRegistry: "docker.io"

# -- Private image registry configuration
imageCredentials:
  # -- Use private authentication mode
  enabled: true # <-- Set this to true
  # -- Registry name
  registry: docker.io
  # -- Registry username
  username: someone
  # -- Registry password
  password: pwd
  # -- Email
  email: someone@host.com
  
  
Posted 27 days ago

Hi @<1523701304709353472:profile|OddShrimp85> , I assume you're running on top of K8s?

  
  
Posted 27 days ago
100 Views
3 Answers
27 days ago
26 days ago
Tags