Skip to content

Commit

Permalink
Commit triggered by a change on the main branch of helm-charts-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-pimenta-DME committed Feb 23, 2024
1 parent 0952f20 commit bead053
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 5 deletions.
4 changes: 2 additions & 2 deletions charts/eoepca-portal/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
appVersion: v1.4.0
17 changes: 16 additions & 1 deletion charts/eoepca-portal/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,19 @@ metadata:
{{- include "eoepca-portal.labels" . | nindent 4 }}
namespace: {{ .Release.Namespace }}
data:
CONFIGURATION: "{{ .Values.configmap.configuration }}"
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 }}"
19 changes: 17 additions & 2 deletions charts/eoepca-portal/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,20 @@ autoscaling:
nodeSelector: {}
tolerations: []
affinity: {}
configmap:
configuration: demo
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"

0 comments on commit bead053

Please sign in to comment.