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
Hi! I’Ve Checked The Docs For Clearml-Helm Charts, And I’Ve Seen The Possibility To Add Additional Volumes/Volume Mounts. Could You Please Provide An Example Of How To Do It Properly?

Hi! I’ve checked the docs for clearml-helm charts, and I’ve seen the possibility to add additional volumes/volume mounts. Could you please provide an example of how to do it properly?

  
  
Posted one month ago
Votes Newest

Answers


Hi @<1523701907598610432:profile|ReassuredArcticwolf33> - Are you referring to the clearml helm chart or to the clearml-agent one?
Either case, the respective values.yaml file is self-documented and contains example. Here I am reporting an example for adding additional volumes and volume mounts to the apiserver component of the clearml chart:

apiserver:
  # -- # Defines extra Kubernetes volumes to be attached to the pod.
  additionalVolumes:
    - name: ramdisk
      emptyDir:
        medium: Memory
        sizeLimit: 32Gi
  # -- Specifies where and how the volumes defined in additionalVolumes.
  additionalVolumeMounts:
    - mountPath: /dev/shm
      name: ramdisk

Let me know if you have any other question 🙂

  
  
Posted one month ago
208 Views
1 Answer
one month ago
one month ago
Tags