generated from EOEPCA/um-service-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add helm charts * Rename to identity portal * Add portal components * Fix ci * Fix ci * Update configs * Update keycloak realm * Revert realm to master * Add service calls and cookies * Clear request uri on service change * Fix cookie delete * Add more service links * Update ci * Update ci * Fix issue * Fix ci * Fix scrollbars * Add refresh token * Fix dockerfile * Add offline access * Revert offline token * Add demo workflow * Fix workflow * Fix angular config * Fix dockerfile * Update README.md * Update README.md * Add env variables * Add configmap
- Loading branch information
1 parent
d502bf7
commit 4fcb22e
Showing
27 changed files
with
1,086 additions
and
330 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
IDENTITY_URL="https://identity.keycloak.develop.eoepca.org" | ||
REALM="master" | ||
CLIENT_ID="eoepca-portal" | ||
IDENTITY_API_URL="https://identity.api.develop.eoepca.org" | ||
ADES_URL="https://ades.develop.eoepca.org/ogc-api/processes" | ||
RESOURCE_CATALOGUE_URL="https://resource-catalogue.develop.eoepca.org" | ||
DATA_ACCESS_URL="https://data-access.develop.eoepca.org" | ||
WORKSPACE_URL="https://workspace-api.develop.eoepca.org" | ||
WORKSPACE_DOCS_URL="https://workspace-api.develop.eoepca.org/docs#" | ||
IMAGES_REGISTRY_URL="https://harbor.develop.eoepca.org" | ||
DUMMY_SERVICE_URL="https://identity.dummy-service.develop.eoepca.org" | ||
ACCESS_TOKEN_NAME="auth_user_id" | ||
ACCESS_TOKEN_DOMAIN=".develop.eoepca.org" | ||
REFRESH_TOKEN_NAME="auth_refresh_token" | ||
REFRESH_TOKEN_DOMAIN=".develop.eoepca.org" |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ include "eoepca-portal.name" . }} | ||
labels: | ||
{{- include "eoepca-portal.labels" . | nindent 4 }} | ||
data: | ||
AUTH_SERVER_URL: "{{ .Values.configMap.auth_server_url }}" | ||
IDENTITY_URL: "{{ .Values.configMap.identity_url }}" | ||
REALM: "{{ .Values.configMap.realm }}" | ||
CLIENT_ID: "{{ .Values.configMap.client_id }}" | ||
IDENTITY_API_URL: "{{ .Values.configMap.identity_api_url }}" | ||
ADES_URL: "{{ .Values.configMap.ades_url }}" | ||
RESOURCE_CATALOGUE_URL: "{{ .Values.configMap.resource_catalogue_url }}" | ||
DATA_ACCESS_URL: "{{ .Values.configMap.data_access_url }}" | ||
WORKSPACE_URL: "{{ .Values.configMap.workspace_url }}" | ||
WORKSPACE_DOCS_URL: "{{ .Values.configMap.workspace_docs_url }}" | ||
IMAGES_REGISTRY_URL: "{{ .Values.configMap.images_registry_url }}" | ||
DUMMY_SERVICE_URL: "{{ .Values.configMap.dummy_service_url }}" | ||
ACCESS_TOKEN_NAME: "{{ .Values.configMap.access_token_name }}" | ||
ACCESS_TOKEN_DOMAIN: "{{ .Values.configMap.access_token_domain }}" | ||
REFRESH_TOKEN_NAME: "{{ .Values.configMap.refresh_token_name }}" | ||
REFRESH_TOKEN_DOMAIN: "{{ .Values.configMap.refresh_token_domain }}" |
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
Oops, something went wrong.