diff --git a/charts/clearml/Chart.yaml b/charts/clearml/Chart.yaml index 980198b..585a72c 100644 --- a/charts/clearml/Chart.yaml +++ b/charts/clearml/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: clearml description: MLOps platform type: application -version: "3.1.0" +version: "3.2.0" appVersion: "1.1.1" home: https://clear.ml icon: https://raw.githubusercontent.com/allegroai/clearml/master/docs/clearml-logo.svg diff --git a/charts/clearml/README.md b/charts/clearml/README.md index 3abbd15..fb9d9e6 100644 --- a/charts/clearml/README.md +++ b/charts/clearml/README.md @@ -1,6 +1,6 @@ # ClearML Ecosystem for Kubernetes -![Version: 3.1.0](https://img.shields.io/badge/Version-3.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.1.1](https://img.shields.io/badge/AppVersion-1.1.1-informational?style=flat-square) +![Version: 3.2.0](https://img.shields.io/badge/Version-3.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.1.1](https://img.shields.io/badge/AppVersion-1.1.1-informational?style=flat-square) MLOps platform @@ -191,6 +191,7 @@ For detailed instructions, see the [Optional Configuration](https://github.com/a | agentservices.tolerations | list | `[]` | | | apiserver.additionalConfigs | object | `{}` | | | apiserver.affinity | object | `{}` | | +| apiserver.authCoockiesMaxAge | int | `864000` | Amount of seconds the authorization cookie will last in user browser | | apiserver.configDir | string | `"/opt/clearml/config"` | | | apiserver.extraEnvs | list | `[]` | | | apiserver.image.pullPolicy | string | `"IfNotPresent"` | | diff --git a/charts/clearml/templates/deployment-apiserver.yaml b/charts/clearml/templates/deployment-apiserver.yaml index 86ca05d..609173a 100644 --- a/charts/clearml/templates/deployment-apiserver.yaml +++ b/charts/clearml/templates/deployment-apiserver.yaml @@ -70,6 +70,8 @@ spec: value: "{{ .Values.apiserver.prepopulateZipFiles }}" - name: CLEARML_SERVER_DEPLOYMENT_TYPE value: "helm-cloud" + - name: CLEARML__APISERVER__AUTH__COOKIES__MAX_AGE + value: "{{ .Values.apiserver.authCoockiesMaxAge }}" - name: CLEARML_CONFIG_DIR value: /opt/clearml/config - name: CLEARML__APISERVER__DEFAULT_COMPANY diff --git a/charts/clearml/values.yaml b/charts/clearml/values.yaml index 22a9815..e5eb005 100644 --- a/charts/clearml/values.yaml +++ b/charts/clearml/values.yaml @@ -37,6 +37,9 @@ apiserver: prepopulateArtifactsPath: "/mnt/fileserver" configDir: /opt/clearml/config + # -- Amount of seconds the authorization cookie will last in user browser + authCoockiesMaxAge: 864000 + service: # -- This will set to service's spec.type field type: NodePort