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 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 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 it point to a specific version of the helm chart.
It complains that the Helm repo https://allegroai.github.io/clearml-helm-charts/ returns a 404 error (which actually it does if I point my browser to it),
although I can access https://allegroai.github.io/clearml-helm-charts/index.yaml without issues

  
  
Posted one year ago
Votes Newest

Answers 6


Thanks SuccessfulKoala55 . Any idea why going to the address https://allegroai.github.io/clearml-helm-charts
returns a 404 error?

Other repositories that are used in Argo CD examples (e.g. https://bitnami-labs.github.io/sealed-secrets , which is also hosted on Github) instead of returning a 404, the index.yaml page is loaded instead.

I suspect this might be the reason why I can't make it work with ClearML.

  
  
Posted one year ago

I see in bitnami's gh-pages branch a file https://github.com/bitnami-labs/sealed-secrets/blob/gh-pages/index.html to do the redirect that contains:

` <html>

<head> <meta http-equiv="refresh" content="0; url= ` ` "> </head> <p><a href=" ` ` ">Redirect to repo index.yaml</a></p> </html> ` A similar file is missing in the ` clearml-helm-chart ` ` gh-pages ` branch.

  
  
Posted one year ago

Super!!! many thanks CostlyFox64 !

  
  
Posted one year ago

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

Sorry, nope 😞 - I've never used ArgoCD...

  
  
Posted one year ago

Hmmm maybe SuccessfulKoala55 can help 🙂

  
  
Posted one year ago
650 Views
6 Answers
one year ago
one year ago
Tags
Similar posts