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
Any Pointers On Running Gpu Tasks With K8S Glue?

Any pointers on running gpu tasks with k8s glue?

  
  
Posted one year ago
Votes Newest

Answers 16


AgitatedDove14 - does having this template work for updating hte base image:

` spec:
containers:

  • image: nvidia/cuda:11.4.1-cudnn8-runtime-ubuntu20.04 `
  
  
Posted one year ago

Correct,
Notice that the glue has it's own defaults and the ability to override containers from the UI

  
  
Posted one year ago

I am seeing that it still picks up nvidia/cuda:10.1-cudnn7-runtime-ubuntu18.04

  
  
Posted one year ago

I don’t use the UI. Which param do you mean?

  
  
Posted one year ago

Can you let me know if i can override the docker image using template.yaml?

No, you cannot.
But you can pass OS environment "CLEARML_DOCKER_IMAGE" to set a diff default one

  
  
Posted one year ago

basically use the template 🙂 we will deprecate the override option soon

  
  
Posted one year ago

Can you let me know if i can override the docker image using template.yaml?

  
  
Posted one year ago

overrides -> "kubectl run --overrides "
template -> "kubectl apply template.yaml"

  
  
Posted one year ago

Oh yeah I wanted to update only for the gpu stuff for now

  
  
Posted one year ago

What’s overrides_yaml vs template_yaml?

  
  
Posted one year ago

So didn’t want to update the defaults

  
  
Posted one year ago

Does that work?

  
  
Posted one year ago

Ah ok

  
  
Posted one year ago

Thanks for the fast responses as usual AgitatedDove14 🙂

  
  
Posted one year ago