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
Hil All, Is There An Code Sample, How To Use Clearml In Local Deployed K3D Cluster, Using The Helm Charts In Combination With Minio? As Stated In

Hil all,
is there an code sample, how to use clearml in local deployed k3d cluster, using the helm charts in combination with minio? As stated in this blog post, the adjusted should be done in the conf file of the clearml-agent. But I cannot see any option for that in the values file of the corresponding helm chart. Is that option missing?
Any help is highly appreciated. Thanks!

  
  
Posted 3 months ago
Votes Newest

Answers 5


@<1657556312684236800:profile|ManiacalSeaturtle63> yep... that updates indeed the clearml.config in the remote agent pod in the cluster 😃

clearmlConfig: |-
    sdk {
      aws {
        s3 {
            # default, used for any bucket not specified below
            key: ""
            secret: ""
            region: ""
            bucket: "clearml"

            credentials: [
                {
                    # This will apply to all buckets in this host (unless key/value is specifically provided for a given bucket)
                    host: "minio.minio.svc.cluster.local:9000" #your minio instance address
                    key: "admin" #your minio instance access key
                    secret: "password" #your minio instance access secret
                    multipart: false
                    secure: false
                }
            ]
        } 
      }
}
  
  
Posted 3 months ago

@<1657556312684236800:profile|ManiacalSeaturtle63> o.O wow ,... thanks for the awesome hint! how blind I was to not see that in the values file! THANKS a lot... will try that

  
  
Posted 3 months ago

Could you share your configuration ? :) Did you add only storage information under the clearmlConfig parameter in values.yaml file ? @<1661542579272945664:profile|SaltySpider22>

  
  
Posted 3 months ago

Have you try using
"clearmlConfig: |-
sdk{}
" parameter in values.yaml file ? Maybe you can pass storage parameter in here ?

  
  
Posted 3 months ago

actually, that solved my question 😃

  
  
Posted 3 months ago
200 Views
5 Answers
3 months ago
3 months ago
Tags