Skip to content

Commit

Permalink
[keycloak] Upgrade to 11.0.3 (#394)
Browse files Browse the repository at this point in the history
Co-authored-by: Reinhard Nägele <[email protected]>
Signed-off-by: Reinhard Nägele <[email protected]>
  • Loading branch information
thomasdarimont and unguiculus authored Feb 16, 2021
1 parent 31f3b77 commit 1784b1a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
4 changes: 2 additions & 2 deletions charts/keycloak/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: keycloak
version: 9.9.2
appVersion: 11.0.2
version: 9.9.3
appVersion: 11.0.3
description: Open Source Identity and Access Management For Modern Applications and Services
keywords:
- sso
Expand Down
12 changes: 2 additions & 10 deletions charts/keycloak/templates/test/configmap-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,9 @@ data:
print('Clicking login button...')
login_button.click()
current_url = urlparse(driver.current_url)
expected_url = urlparse('{0}/auth/admin/master/console/'.format(base_url))
WebDriverWait(driver, 30).until(lambda driver: '/auth/admin/master/console/' in driver.current_url)
print('Current URL: {0}'.format(current_url))
print('Expected URL: {0}'.format(expected_url))
if current_url.path != expected_url.path:
print('Login failed. Current url is not expected url')
exit(1)
print('URLs match. Login successful.')
print('Admin console visible. Login successful.')
driver.quit()
Expand Down

0 comments on commit 1784b1a

Please sign in to comment.