Skip to content

Commit 4156011

Browse files
author
mcolinde
committed
feat: add env vars for access and refresh tokens lifetime
1 parent f0e43e9 commit 4156011

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

charts/rs-server-staging/templates/deployment.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ spec:
6969
- secretRef:
7070
name: {{ .Release.Name }}-jupyterhub-api-token
7171
env:
72+
- name: RSPY_EXPIRES_IN
73+
value: {{ .Values.app.AccessTokenLifetime | default 1200 | quote }}
74+
- name: RSPY_REFRESH_EXPIRES_IN
75+
value: {{ .Values.app.RefreshTokenLifetime | default 3600 | quote }}
7276
- name: RSPY_TIME_BEFORE_ACCESS_TOKEN_EXPIRE
7377
value: {{ .Values.app.NbSecsBeforeAccessTokenExpire | default 60 | quote }}
7478
- name: RSPY_TIME_BEFORE_REFRESH_TOKEN_EXPIRE

charts/rs-server-staging/values.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ app:
3737
endpointCatalog: http://rs-server-catalog.processing.svc.cluster.local:8080
3838
# -- Object Storage bucket for the catalog
3939
catalogBucket: rs-cluster-catalog
40+
41+
# -- Access token validity duration (in seconds)
42+
AccessTokenLifetime: 1200
43+
# -- Refresh token validity duration (in seconds)
44+
RefreshTokenLifetime: 3600
4045
# -- Duration before expiration of the access token
4146
NbSecsBeforeAccessTokenExpire: 60
4247
# -- Duration before expiration of the refresh token

0 commit comments

Comments
 (0)