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
Hey, Has Any Of You Have Experience With Setting Up Authentication When Self-Hosting Clearml On Kubernetes? I Found Only

Hey, has any of you have experience with setting up authentication when self-hosting ClearML on Kubernetes? I found only https://clear.ml/docs/latest/docs/deploying_clearml/clearml_server_config/#web-login-authentication which I don't know how to config when running on Kubernetes. I would like to also set up workspaces per team, is that possible when self hosting?

  
  
Posted 2 years ago
Votes Newest

Answers 6


additionalConfigs: auth.conf: | auth { # Fixed users login credentials # No other user will be able to login fixed_users { enabled: true pass_hashed: false users: [ { username: "jane" password: "12345678" name: "Jane Doe" }, { username: "john" password: "12345678" name: "John Doe" }, ] } }

  
  
Posted 2 years ago

additionaConfigs is a section under apiserver

  
  
Posted 2 years ago

so you should be able to pass additional stuff in this field directly during Helm apply

  
  
Posted 2 years ago

Regarding workspaces - workspaces aren't supported in the self hosted version. I think that's feature on http://app.clear.ml

  
  
Posted 2 years ago

Thank you!

  
  
Posted 2 years ago