Allowing extraEnv to be added to agentservices and agent deployments. (#76)

* Allowing extraEnv to be added to agentservices and agent deployments.

* Bumped version and generated documentation chart

* Lint fix

* Chart version update

* helm-docs update

Co-authored-by: Valeriano Manassero <14011549+valeriano-manassero@users.noreply.github.com>
This commit is contained in:
Luca Cerone 2022-06-08 08:06:20 +02:00 committed by GitHub
parent 69048b5c96
commit 16f172fc1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 2 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v2
name: clearml
description: MLOps platform
type: application
version: "3.10.3"
version: "3.10.4"
appVersion: "1.4.0"
home: https://clear.ml
icon: https://raw.githubusercontent.com/allegroai/clearml/master/docs/clearml-logo.svg

View File

@ -1,6 +1,6 @@
# ClearML Ecosystem for Kubernetes
![Version: 3.10.3](https://img.shields.io/badge/Version-3.10.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.4.0](https://img.shields.io/badge/AppVersion-1.4.0-informational?style=flat-square)
![Version: 3.10.4](https://img.shields.io/badge/Version-3.10.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.4.0](https://img.shields.io/badge/AppVersion-1.4.0-informational?style=flat-square)
MLOps platform
@ -142,6 +142,7 @@ For detailed instructions, see the [Optional Configuration](https://github.com/a
| agentGroups.agent-group-cpu.clearmlGitUser | string | `nil` | |
| agentGroups.agent-group-cpu.clearmlSecretKey | string | `nil` | |
| agentGroups.agent-group-cpu.enabled | bool | `false` | |
| agentGroups.agent-group-cpu.extraEnvs | list | `[]` | |
| agentGroups.agent-group-cpu.image.pullPolicy | string | `"IfNotPresent"` | |
| agentGroups.agent-group-cpu.image.repository | string | `"ubuntu"` | |
| agentGroups.agent-group-cpu.image.tag | string | `"18.04"` | |

View File

@ -87,6 +87,9 @@ spec:
secretKeyRef:
name: clearml-conf
key: tests_user_secret
{{- if .extraEnvs }}
{{ toYaml .extraEnvs | nindent 10 }}
{{- end }}
command:
- /bin/sh
- -c

View File

@ -81,6 +81,9 @@ spec:
secretKeyRef:
name: clearml-conf
key: tests_user_secret
{{- if .Values.agentservices.extraEnvs }}
{{ toYaml .Values.agentservices.extraEnvs | nindent 10 }}
{{- end }}
args:
- agentservices
volumeMounts:

View File

@ -282,6 +282,8 @@ agentGroups:
pullPolicy: IfNotPresent
tag: "18.04"
extraEnvs: []
podAnnotations: {}
nodeSelector: {}