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
Profile picture
KindArcticwolf58
Moderator
1 Question, 1 Answer
  Active since 11 June 2025
  Last activity 2 months ago

Reputation

0

Badges 1

Eureka!
0 Votes
3 Answers
332 Views
0 Votes 3 Answers 332 Views
2 months ago
0 Hello! I Am New To Clearml. I Have Clearml Installation With Helm Chart. I Am Using K8S Agent. I Have Configured A Queue For The Agent. I Have Created A Simple Task With A Simple Python Script. When I Execute This Task In The Agent Log I Get An Error: Err
# -- Global parameters section
global:
  # -- Images registry
  imageRegistry: "docker.io"

# -- Private image registry configuration
imageCredentials:
  # -- Use private authentication mode
  enabled: false
  # -- If this is set, chart will not generate a secret but will use what is defined here
  existingSecret: ""
  # -- Registry name
  registry: docker.io
  # -- Registry username
  username: someone
  # -- Registry password
  password: pwd
  # -- Email
  email: someone@host.com

# -...
2 months ago