Skip to content
Snippets Groups Projects
Commit fc6b68da authored by Mykola Ronik [EPAM / GCP]'s avatar Mykola Ronik [EPAM / GCP] Committed by Mikhail Piatliou (EPAM)
Browse files

[GONRG-9422]: Remove springProfilesActive explicit setting

parent 70ee2737
No related branches found
No related tags found
1 merge request!723[GONRG-9422]: Remove springProfilesActive explicit setting
......@@ -42,7 +42,6 @@ First you need to set variables in **values.yaml** file using any code editor. S
**data.partitionHost** | partition host | string | "http://partition" | yes
**data.schemaHost** | schema host | string | "http://schema" | yes
**data.securityHttpsCertificateTrust** | whether https is enabled | boolean | true | yes
**data.springProfilesActive** | active spring profile | string | gcp | yes
**data.storageHost** | storage host | string | "http://storage" | yes
**data.redisIndexerHost** | The host for redis instance. If empty (by default), helm installs an internal redis instance | string | - | yes
**data.redisIndexerPort** | The port for redis instance | digit | 6379 | yes
......
......@@ -20,6 +20,10 @@ data:
REDIS_GROUP_PORT: {{ .Values.data.redisIndexerPort | quote }}
SCHEMA_BASE_HOST: {{ .Values.data.schemaHost | quote }}
SECURITY_HTTPS_CERTIFICATE_TRUST: {{ .Values.data.securityHttpsCertificateTrust | quote }}
SPRING_PROFILES_ACTIVE: {{ .Values.data.springProfilesActive | quote }}
{{- if .Values.global.onPremEnabled }}
SPRING_PROFILES_ACTIVE: "anthos"
{{- else }}
SPRING_PROFILES_ACTIVE: "gcp"
{{- end }}
STORAGE_HOST: {{ .Values.data.storageHost | quote }}
SEARCH_BASE_HOST: {{ .Values.data.searchHost | quote }}
......@@ -14,7 +14,6 @@ data:
partitionHost: "http://partition"
schemaHost: "http://schema"
securityHttpsCertificateTrust: "true"
springProfilesActive: "gcp"
storageHost: "http://storage"
searchHost: "http://search"
# Deployment
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment