Skip to content

Commit

Permalink
AUTH-526: Updated upgrade page. (#141)
Browse files Browse the repository at this point in the history
Removed identity service upgrade jobs and hooks
[release]
  • Loading branch information
jamalkm authored Mar 10, 2021
1 parent efb25c5 commit 42e177f
Show file tree
Hide file tree
Showing 15 changed files with 65 additions and 605 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@

---

### *Alfresco Identity Service 1.4.0*

#### Epics
* [<a href='https://alfresco.atlassian.net/browse/AUTH-493'>ACS-493</a>] - Upgrade to Keycloak 12.0.3-patch


#### Bugs
* [<a href='https://alfresco.atlassian.net/browse/ACA-4286'>ACA-4286</a>] - Fix Alfresco login theme
* Change versioning to SemVer v2


### *Alfresco Identity Service 1.3*

#### Bugs
Expand Down
6 changes: 3 additions & 3 deletions distribution/tests/endpoints.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if [ -n "$PID" ]; then
pkill -KILL -f "standalone"
fi

cd alfresco-identity-service-$IDENTITY_VERSION/bin || exit
cd alfresco-identity-service-"$IDENTITY_VERSION"/bin || exit

log_info "Starting the identity service"
/bin/bash -c './standalone.sh &'
Expand Down Expand Up @@ -70,7 +70,7 @@ else
log_test_passed
fi

RES=$(curl -sSL "http://localhost:8080/auth/realms/alfresco/account" | grep "Alfresco Identity Service")
RES=$(curl -sSL "http://localhost:8080/auth/realms/alfresco/protocol/openid-connect/auth?client_id=security-admin-console&redirect_uri=http%3A%2F%2Flocalhost%3A8080%2Fauth%2Fadmin%2Falfresco%2Fconsole%2F&state=ea46ea9f-c963-4f06-89a9-ea9ec04c9694&response_mode=fragment&response_type=code&scope=openid&nonce=44e4af22-2f82-47ef-864e-364c662ae884&code_challenge=IfHxRz3ftCUq4h-SXrSsfXGhoH5z-NfkUSCVyPiNEIc&code_challenge_method=S256" | grep "Alfresco Identity Service")
if [ -z "$RES" ]; then
log_error "Can't find application-name: 'Alfresco Identity Service'. Status code: : $STATUS_CODE"
else
Expand Down Expand Up @@ -105,7 +105,7 @@ pkill -KILL -f "standalone"

cd "$WORK_DIR" || exit
log_info "Deleting alfresco-identity-service-$IDENTITY_VERSION directory."
rm -rf alfresco-identity-service-$IDENTITY_VERSION
rm -rf alfresco-identity-service-"$IDENTITY_VERSION"

log_info "Done."
exit 0
2 changes: 1 addition & 1 deletion distribution/tests/endpoints_bat.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if ($SERVICEUP -ne 1) {

checkStatus (curl -UseBasicParsing -v http://localhost:8080/auth/).StatusCode "200"
checkStatus (curl -UseBasicParsing -v http://localhost:8080/auth/admin/alfresco/console/).StatusCode "200"
checkStatus (curl -UseBasicParsing "http://localhost:8080/auth/realms/alfresco/account").Content "Identity"
checkStatus (curl -UseBasicParsing "http://localhost:8080/auth/realms/alfresco/protocol/openid-connect/auth?client_id=security-admin-console&redirect_uri=http%3A%2F%2Flocalhost%3A8080%2Fauth%2Fadmin%2Falfresco%2Fconsole%2F&state=ea46ea9f-c963-4f06-89a9-ea9ec04c9694&response_mode=fragment&response_type=code&scope=openid&nonce=44e4af22-2f82-47ef-864e-364c662ae884&code_challenge=IfHxRz3ftCUq4h-SXrSsfXGhoH5z-NfkUSCVyPiNEIc&code_challenge_method=S256").Content "Alfresco Identity Service"
$Body = @{
client_id = "alfresco"
username = "admin"
Expand Down
2 changes: 1 addition & 1 deletion distribution/tests/endpoints_ps.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if ($SERVICEUP -ne 1) {

checkStatus (curl -UseBasicParsing -v http://localhost:8080/auth/).StatusCode "200"
checkStatus (curl -UseBasicParsing -v http://localhost:8080/auth/admin/alfresco/console/).StatusCode "200"
checkStatus (curl -UseBasicParsing -v "http://localhost:8080/auth/realms/alfresco/account").Content "Identity"
checkStatus (curl -UseBasicParsing -v "http://localhost:8080/auth/realms/alfresco/protocol/openid-connect/auth?client_id=security-admin-console&redirect_uri=http%3A%2F%2Flocalhost%3A8080%2Fauth%2Fadmin%2Falfresco%2Fconsole%2F&state=ea46ea9f-c963-4f06-89a9-ea9ec04c9694&response_mode=fragment&response_type=code&scope=openid&nonce=44e4af22-2f82-47ef-864e-364c662ae884&code_challenge=IfHxRz3ftCUq4h-SXrSsfXGhoH5z-NfkUSCVyPiNEIc&code_challenge_method=S256").Content "Alfresco Identity Service"
$Body = @{
client_id = "alfresco"
username = "admin"
Expand Down
Binary file added docs/resource/images/first-broker-login.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion helm/alfresco-identity-service/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: alfresco-identity-service
version: 3.0.0-M1
version: 3.0.0
appVersion: 1.4.0
description: The Alfresco Identity Service will become the central component responsible for identity-related capabilities needed by other Alfresco software, such as managing users, groups, roles, profiles, and authentication. Currently it deals just with authentication.
keywords:
Expand Down
26 changes: 0 additions & 26 deletions helm/alfresco-identity-service/templates/roleBinding.yaml

This file was deleted.

174 changes: 0 additions & 174 deletions helm/alfresco-identity-service/templates/rollback-job.yaml

This file was deleted.

Loading

0 comments on commit 42e177f

Please sign in to comment.