diff --git a/charts/eoepca-portal/Chart.yaml b/charts/eoepca-portal/Chart.yaml index a666bdf..92749df 100644 --- a/charts/eoepca-portal/Chart.yaml +++ b/charts/eoepca-portal/Chart.yaml @@ -15,9 +15,9 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.0.9 +version: 1.0.10 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: v1.3.8 \ No newline at end of file +appVersion: v1.4.0 \ No newline at end of file diff --git a/charts/eoepca-portal/templates/configmap.yaml b/charts/eoepca-portal/templates/configmap.yaml index d735844..711c13a 100644 --- a/charts/eoepca-portal/templates/configmap.yaml +++ b/charts/eoepca-portal/templates/configmap.yaml @@ -6,4 +6,19 @@ metadata: {{- include "eoepca-portal.labels" . | nindent 4 }} namespace: {{ .Release.Namespace }} data: - CONFIGURATION: "{{ .Values.configmap.configuration }}" \ No newline at end of file + 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 }}" \ No newline at end of file diff --git a/charts/eoepca-portal/values.yaml b/charts/eoepca-portal/values.yaml index 7fe549e..4248714 100644 --- a/charts/eoepca-portal/values.yaml +++ b/charts/eoepca-portal/values.yaml @@ -39,5 +39,20 @@ autoscaling: nodeSelector: {} tolerations: [] affinity: {} -configmap: - configuration: demo \ No newline at end of file +configMap: + auth_server_url: "https://identity.keycloak.develop.eoepca.org" + identity_url: "master" + realm: "eoepca-portal" + 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" \ No newline at end of file