Skip to content
Snippets Groups Projects
Commit a8cb51a0 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 31f7c956
No related branches found
No related tags found
2 merge requests!620Update version of default branch to 0.27.0-SNAPSHOT,!543[GONRG-9422]: Remove springProfilesActive explicit setting
......@@ -105,7 +105,6 @@ First you need to set variables in **values.yaml** file using any code editor. S
| Name | Description | Type | Default |Required |
|------|-------------|------|---------|---------|
**data.logLevel** | logging level | string | ERROR | yes
**data.springProfilesActive** | active spring profile | string | gcp | yes
**data.acceptHttp** | accept Http traffic | string | true | yes
**data.entitlementsHost** | Entitlements host URL | string | <http://entitlements> | yes
**data.defaultLegalTag** | Default legal tag | string | default-data-tag| yes
......
......@@ -8,4 +8,8 @@ metadata:
data:
ACCEPT_HTTP: {{ .Values.data.acceptHttp | quote }}
LOG_LEVEL: {{ .Values.data.logLevel | quote }}
SPRING_PROFILES_ACTIVE: {{ .Values.data.springProfilesActive | quote }}
{{- if .Values.global.onPremEnabled }}
SPRING_PROFILES_ACTIVE: "anthos"
{{- else }}
SPRING_PROFILES_ACTIVE: "gcp"
{{- end }}
......@@ -10,7 +10,6 @@ global:
data:
# configmaps
logLevel: "ERROR"
springProfilesActive: "gcp"
acceptHttp: "true"
entitlementsHost: "http://entitlements"
defaultLegalTag: "default-data-tag"
......
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