File tree 4 files changed +5
-4
lines changed
4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ RUN apk update \
7
7
# TODO:
8
8
# - use NODE_ENV=production
9
9
# - download build package (not git clone)
10
- ENV ADMIN_UI_VERSION=9c01b841e5a5c28d58d7b3aed6cbe87ff1c2126f
10
+ ENV ADMIN_UI_VERSION=1a57928d7e2bfdfa009e9de37f8785854d9e97e0
11
11
12
12
# note that as we're pulling from a monorepo (with multiple project in it)
13
13
# we are using partial-clone and sparse-checkout to get the admin-ui code
Original file line number Diff line number Diff line change 1
1
libcst < 0.4
2
2
# pinned to py3-grpcio version to avoid failure on native extension build
3
3
grpcio == 1.41.0
4
- git+https://github.com/JanssenProject/jans@e74ea8e27e59d35ff6e3c6f997e6c1df6a04ec83 #egg=jans-pycloudlib&subdirectory=jans-pycloudlib
4
+ git+https://github.com/JanssenProject/jans@63722ea7372f33bf2ad2c3ff01b068383e81e746 #egg=jans-pycloudlib&subdirectory=jans-pycloudlib
Original file line number Diff line number Diff line change @@ -158,6 +158,7 @@ def ctx(self):
158
158
def export_plugin_properties (self ):
159
159
with open ("/app/templates/auiConfiguration.properties.tmpl" ) as f :
160
160
txt = f .read () % self .ctx
161
+ logger .info ("Creating/updating plugins_admin_ui_properties secrets" )
161
162
self .manager .secret .set ("plugins_admin_ui_properties" , txt )
162
163
163
164
@cached_property
Original file line number Diff line number Diff line change 1
1
# auth server
2
2
authserver.clientId=%(admin_ui_client_id)s
3
- authserver.clientSecret=%(admin_ui_client_pw )s
3
+ authserver.clientSecret=%(admin_ui_client_encoded_pw )s
4
4
authserver.authzBaseUrl=https://%(hostname)s/jans-auth/restv1/authorize
5
5
authserver.scope=openid+profile+email+user_name
6
6
authserver.acrValues=%(admin_ui_auth_method)s
@@ -15,7 +15,7 @@ authserver.endSessionEndpoint=https://%(hostname)s/jans-auth/restv1/end_session
15
15
16
16
# token server
17
17
tokenServer.clientId=%(token_server_admin_ui_client_id)s
18
- tokenServer.clientSecret=%(token_server_admin_ui_client_pw )s
18
+ tokenServer.clientSecret=%(token_server_admin_ui_client_encoded_pw )s
19
19
tokenServer.authzBaseUrl=%(token_server_authz_url)s
20
20
tokenServer.scope=openid+profile+email+user_name
21
21
tokenServer.acrValues=basic
You can’t perform that action at this time.
0 commit comments