mirror of
https://github.com/clearml/clearml-helm-charts
synced 2025-03-10 06:00:27 +00:00
Fix agent clearml conf (#18)
* fix agent mount clearml.conf * bump up version
This commit is contained in:
parent
732bb970aa
commit
898089b7fb
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
name: clearml
|
name: clearml
|
||||||
description: MLOps platform
|
description: MLOps platform
|
||||||
type: application
|
type: application
|
||||||
version: "2.1.0"
|
version: "2.1.1"
|
||||||
appVersion: "1.1.1"
|
appVersion: "1.1.1"
|
||||||
home: https://clear.ml
|
home: https://clear.ml
|
||||||
icon: https://raw.githubusercontent.com/allegroai/clearml/master/docs/clearml-logo.svg
|
icon: https://raw.githubusercontent.com/allegroai/clearml/master/docs/clearml-logo.svg
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# ClearML Ecosystem for Kubernetes
|
# ClearML Ecosystem for Kubernetes
|
||||||
|
|
||||||
  
|
  
|
||||||
|
|
||||||
MLOps platform
|
MLOps platform
|
||||||
|
|
||||||
|
@ -91,6 +91,13 @@ spec:
|
|||||||
python3 -m pip install -U pip ;
|
python3 -m pip install -U pip ;
|
||||||
python3 -m pip install clearml-agent{{ .agentVersion}} ;
|
python3 -m pip install clearml-agent{{ .agentVersion}} ;
|
||||||
CLEARML_AGENT_K8S_HOST_MOUNT=/root/.clearml:/root/.clearml clearml-agent daemon --queue {{ .queues}}"
|
CLEARML_AGENT_K8S_HOST_MOUNT=/root/.clearml:/root/.clearml clearml-agent daemon --queue {{ .queues}}"
|
||||||
|
{{ if .clearmlConfig }}
|
||||||
|
volumeMounts:
|
||||||
|
- name: agent-clearml-conf-volume
|
||||||
|
mountPath: /root/clearml.conf
|
||||||
|
subPath: clearml.conf
|
||||||
|
readOnly: true
|
||||||
|
{{- end }}
|
||||||
{{- with .nodeSelector }}
|
{{- with .nodeSelector }}
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
|
Loading…
Reference in New Issue
Block a user