mirror of
https://github.com/clearml/clearml-helm-charts
synced 2025-04-17 01:31:13 +00:00
Switch enabler agentservices (#31)
* switch to enable/disable agentservices * bump up version
This commit is contained in:
parent
d3f6f3e50d
commit
b7f73e3bd9
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
name: clearml
|
name: clearml
|
||||||
description: MLOps platform
|
description: MLOps platform
|
||||||
type: application
|
type: application
|
||||||
version: "3.0.3"
|
version: "3.0.4"
|
||||||
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
|
||||||
|
|
||||||
@ -170,6 +170,7 @@ For detailed instructions, see the [Optional Configuration](https://github.com/a
|
|||||||
| agentservices.clearmlHostIp | string | `nil` | |
|
| agentservices.clearmlHostIp | string | `nil` | |
|
||||||
| agentservices.clearmlWebHost | string | `nil` | |
|
| agentservices.clearmlWebHost | string | `nil` | |
|
||||||
| agentservices.clearmlWorkerId | string | `"clearml-services"` | |
|
| agentservices.clearmlWorkerId | string | `"clearml-services"` | |
|
||||||
|
| agentservices.enabled | bool | `false` | |
|
||||||
| agentservices.extraEnvs | list | `[]` | |
|
| agentservices.extraEnvs | list | `[]` | |
|
||||||
| agentservices.googleCredentials | string | `nil` | |
|
| agentservices.googleCredentials | string | `nil` | |
|
||||||
| agentservices.image.pullPolicy | string | `"IfNotPresent"` | |
|
| agentservices.image.pullPolicy | string | `"IfNotPresent"` | |
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
{{- if .Values.agentservices.enabled }}
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
metadata:
|
metadata:
|
||||||
@ -98,3 +99,4 @@ spec:
|
|||||||
tolerations:
|
tolerations:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
{{- if .Values.agentservices.enabled }}
|
||||||
kind: PersistentVolumeClaim
|
kind: PersistentVolumeClaim
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
metadata:
|
metadata:
|
||||||
@ -11,3 +12,4 @@ spec:
|
|||||||
requests:
|
requests:
|
||||||
storage: {{ .Values.agentservices.storage.data.size | quote }}
|
storage: {{ .Values.agentservices.storage.data.size | quote }}
|
||||||
storageClassName: {{ .Values.agentservices.storage.data.class | quote }}
|
storageClassName: {{ .Values.agentservices.storage.data.class | quote }}
|
||||||
|
{{- end }}
|
||||||
|
@ -141,6 +141,7 @@ webserver:
|
|||||||
affinity: {}
|
affinity: {}
|
||||||
|
|
||||||
agentservices:
|
agentservices:
|
||||||
|
enabled: false
|
||||||
clearmlHostIp: null
|
clearmlHostIp: null
|
||||||
agentVersion: ""
|
agentVersion: ""
|
||||||
clearmlWebHost: null
|
clearmlWebHost: null
|
||||||
|
Loading…
Reference in New Issue
Block a user