-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: admin-ui updated dependencies and manifests (#208)
* chore: update dependencies Overview: - Alpine upgraded to v3.15 - updated jans-pycloudlib - Python pip is removed after installing all required libraries * feat: admin-ui updated dependencies and manifests * fix: remove admin license params * docs: update charts docs Co-authored-by: Mohammad Abudayyeh <47318409+moabu@users.noreply.github.com>
- Loading branch information
Showing
13 changed files
with
316 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
libcst<0.4 | ||
# pinned to py3-grpcio version to avoid failure on native extension build | ||
grpcio==1.41.0 | ||
git+https://github.com/JanssenProject/jans@f88095b1f52f0639221e4109ed7262099e06d0e9#egg=jans-pycloudlib&subdirectory=jans-pycloudlib | ||
git+https://github.com/JanssenProject/jans@f2e653ef917efd017195f2330b64e64c333f4699#egg=jans-pycloudlib&subdirectory=jans-pycloudlib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
docker-admin-ui/templates/auiConfiguration.properties.tmpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# auth server | ||
authserver.clientId=%(admin_ui_client_id)s | ||
authserver.clientSecret=%(admin_ui_client_pw)s | ||
authserver.authzBaseUrl=https://%(hostname)s/jans-auth/restv1/authorize | ||
authserver.scope=openid+profile+email+user_name | ||
authserver.acrValues=basic | ||
authserver.redirectUrl=https://%(hostname)s/admin | ||
authserver.frontChannelLogoutUrl=https://%(hostname)s/admin/logout | ||
authserver.postLogoutRedirectUri=https://%(hostname)s/admin | ||
authserver.tokenEndpoint=https://%(hostname)s/jans-auth/restv1/token | ||
authserver.introspectionEndpoint=https://%(hostname)s/jans-auth/restv1/introspection | ||
authserver.userInfoEndpoint=https://%(hostname)s/jans-auth/restv1/userinfo | ||
authserver.healthCheckUrl=https://%(hostname)s/jans-auth/sys/health-check | ||
authserver.endSessionEndpoint=https://%(hostname)s/jans-auth/restv1/end_session | ||
|
||
# token server | ||
tokenServer.clientId=%(token_server_admin_ui_client_id)s | ||
tokenServer.clientSecret=%(token_server_admin_ui_client_pw)s | ||
tokenServer.authzBaseUrl=%(token_server_authz_url)s | ||
tokenServer.scope=openid+profile+email+user_name | ||
tokenServer.acrValues=basic | ||
tokenServer.redirectUrl=https://%(hostname)s/admin | ||
tokenServer.logoutUrl=https://%(hostname)s/admin/logout | ||
tokenServer.tokenEndpoint=%(token_server_token_url)s | ||
tokenServer.introspectionEndpoint=%(token_server_introspection_url)s | ||
tokenServer.userInfoEndpoint=%(token_server_userinfo_url)s |
Oops, something went wrong.