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
Unanswered
Hi Folks, Any Of You Has Experience In Deploying Clearml To Kubernetes Using Argocd? I Managed To Make It Run Pointing It To The Clearml-Charts-Repo, It Recognizes The Helm Chart And It Works. But I Am Struggling A Bit To Write My Own Definition To Make I


Hi Luca. We have ClearML deployed through ArgoCD and have the following configs:

Chart.yaml
` apiVersion: v2
name: clearml
description: A Helm chart for Kubernetes
version: 0.0.1
dependencies:

  • name: clearml
    version: 3.5.1
    repository: http://values.dev .yaml # insert your own config here `
    Both of above files are pushed into our own private gitops repository.

Apply the following file with kubectl:
clearml-argocd.yaml
apiVersion: argoproj.io/v1alpha1 kind: Application metadata: name: clearml namespace: argocd spec: project: default destination: server: `
namespace: clearml

syncPolicy:
automated: {}
syncOptions:
- CreateNamespace=true

source:
repoURL: <YOUR GITOPS REPO>
targetRevision: main
path: charts/clearml
helm:
valueFiles:
- "values.dev.yaml" `
Hope this helps you!

  
  
Posted one year ago
101 Views
0 Answers
one year ago
one year ago