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.yamlapiVersion: 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!
178 Views
0
Answers
2 years ago
one year ago