mirror of
https://github.com/clearml/clearml-helm-charts
synced 2025-04-17 01:31:13 +00:00
Configurable auth cookies age (#38)
* configurable auth cookies age * version bump up
This commit is contained in:
parent
b494a8c0cf
commit
1b5b9407f6
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
name: clearml
|
name: clearml
|
||||||
description: MLOps platform
|
description: MLOps platform
|
||||||
type: application
|
type: application
|
||||||
version: "3.1.0"
|
version: "3.2.0"
|
||||||
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
|
||||||
|
|
||||||
@ -191,6 +191,7 @@ For detailed instructions, see the [Optional Configuration](https://github.com/a
|
|||||||
| agentservices.tolerations | list | `[]` | |
|
| agentservices.tolerations | list | `[]` | |
|
||||||
| apiserver.additionalConfigs | object | `{}` | |
|
| apiserver.additionalConfigs | object | `{}` | |
|
||||||
| apiserver.affinity | 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.configDir | string | `"/opt/clearml/config"` | |
|
||||||
| apiserver.extraEnvs | list | `[]` | |
|
| apiserver.extraEnvs | list | `[]` | |
|
||||||
| apiserver.image.pullPolicy | string | `"IfNotPresent"` | |
|
| apiserver.image.pullPolicy | string | `"IfNotPresent"` | |
|
||||||
|
@ -70,6 +70,8 @@ spec:
|
|||||||
value: "{{ .Values.apiserver.prepopulateZipFiles }}"
|
value: "{{ .Values.apiserver.prepopulateZipFiles }}"
|
||||||
- name: CLEARML_SERVER_DEPLOYMENT_TYPE
|
- name: CLEARML_SERVER_DEPLOYMENT_TYPE
|
||||||
value: "helm-cloud"
|
value: "helm-cloud"
|
||||||
|
- name: CLEARML__APISERVER__AUTH__COOKIES__MAX_AGE
|
||||||
|
value: "{{ .Values.apiserver.authCoockiesMaxAge }}"
|
||||||
- name: CLEARML_CONFIG_DIR
|
- name: CLEARML_CONFIG_DIR
|
||||||
value: /opt/clearml/config
|
value: /opt/clearml/config
|
||||||
- name: CLEARML__APISERVER__DEFAULT_COMPANY
|
- name: CLEARML__APISERVER__DEFAULT_COMPANY
|
||||||
|
@ -37,6 +37,9 @@ apiserver:
|
|||||||
prepopulateArtifactsPath: "/mnt/fileserver"
|
prepopulateArtifactsPath: "/mnt/fileserver"
|
||||||
configDir: /opt/clearml/config
|
configDir: /opt/clearml/config
|
||||||
|
|
||||||
|
# -- Amount of seconds the authorization cookie will last in user browser
|
||||||
|
authCoockiesMaxAge: 864000
|
||||||
|
|
||||||
service:
|
service:
|
||||||
# -- This will set to service's spec.type field
|
# -- This will set to service's spec.type field
|
||||||
type: NodePort
|
type: NodePort
|
||||||
|
Loading…
Reference in New Issue
Block a user