Skip to content

Commit

Permalink
4.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitamendelbaum committed Sep 13, 2023
1 parent aa45e95 commit a3423f9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
6 changes: 6 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# STRATO Getting Started release notes

## 4.2.1

STRATO versions supported: v9.0+

- Removed the OAUTH_ vars checks from identity script to comply with newer Identity Provider

## 4.2.0

STRATO versions supported: v9.0+
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.2.0
4.2.1
8 changes: 0 additions & 8 deletions identity
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ HTTPS_PORT - (default: 8093) Port for HTTPS traffic listener; only used
ssl - (default: false) [true|false] to run the node with SSL/TLS.
sslCertFileType - (default: pem) [pem|crt] the SSL certificate type and file extension (should be accessible at ./ssl/certs/server.<sslCertFileType> at deploy time.)
VAULT_URL - (required) The URL of STRATO Vault in the format '<protocol>://<hostname>:<port>' (e.g. https://example.com or https://example.com:8090)
OAUTH_DISCOVERY_URL - (required) OAuth provider's OpenID Connect discovery URL.
OAUTH_CLIENT_ID - (required) Client ID of OAuth provider valid for the future STRATO url (http(s)://<NODE_HOST>:<HTTP_PORT/HTTPS_PORT>).
OAUTH_CLIENT_SECRET - (required) Client Secret for the client ID specified.
SENDGRID_APIKEY - (optional) API key to send welcome emails after registering a user
${Yellow}Mounted volumes:${NC}
Expand Down Expand Up @@ -168,11 +165,6 @@ else
fi
export sslCertFileType=${sslCertFileType:-pem}

if [[ -z ${OAUTH_DISCOVERY_URL} || -z ${OAUTH_CLIENT_ID} || -z ${OAUTH_CLIENT_SECRET} ]] ; then
echo -e "${Red}OAUTH_DISCOVERY_URL, OAUTH_CLIENT_ID, and OAUTH_CLIENT_SECRET are required to start the STRATO identity server.\nFor additional help see './identity-server --help'${NC}"
exit 13
fi

echo "" && echo "*** Common Config ***"
echo "HTTP_PORT: $HTTP_PORT"
echo "HTTPS_PORT: $HTTPS_PORT"
Expand Down

0 comments on commit a3423f9

Please sign in to comment.