From a3423f9f367ead18bd3c13d45c27405ab292b948 Mon Sep 17 00:00:00 2001 From: nikitamendelbaum Date: Wed, 13 Sep 2023 21:12:38 +0700 Subject: [PATCH] 4.2.1 --- RELEASE_NOTES.md | 6 ++++++ VERSION | 2 +- identity | 8 -------- 3 files changed, 7 insertions(+), 9 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 7794d96..2c9f69b 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -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+ diff --git a/VERSION b/VERSION index 6aba2b2..fae6e3d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.2.0 +4.2.1 diff --git a/identity b/identity index 4745d1a..f6a77fd 100755 --- a/identity +++ b/identity @@ -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. at deploy time.) VAULT_URL - (required) The URL of STRATO Vault in the format '://:' (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)://:). -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} @@ -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"