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 2 years ago
Votes Newest

Answers 16


Does that work?

  
  
Posted 2 years 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 2 years ago

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

  
  
Posted 2 years ago

Ah ok

  
  
Posted 2 years ago

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

  
  
Posted 2 years ago

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

  
  
Posted 2 years ago

What’s overrides_yaml vs template_yaml?

  
  
Posted 2 years ago

So didn’t want to update the defaults

  
  
Posted 2 years ago

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

  
  
Posted 2 years ago

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

  
  
Posted 2 years ago

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

  
  
Posted 2 years ago

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

  
  
Posted 2 years ago

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

` spec:
containers:

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

Thanks for the fast responses as usual AgitatedDove14 🙂

  
  
Posted 2 years ago