Skip to content
Snippets Groups Projects
Commit 4da1a423 authored by Andrei Skorkin [EPAM / GCP]'s avatar Andrei Skorkin [EPAM / GCP] Committed by Mikhail Piatliou (EPAM)
Browse files

dataBootstrapEnabled for legal and schema (GONRG-7224)

parent ae899bdf
No related branches found
No related tags found
3 merge requests!438Draft: CG Vulnerability for Woodstox - CVE-2022-40151,!430Upgraded Version of spring-security-config due to Component Governance CVE-2023-34034,!411dataBootstrapEnabled for legal and schema (GONRG-7224)
......@@ -98,6 +98,7 @@ First you need to set variables in **values.yaml** file using any code editor. S
|------|-------------|------|---------|---------|
**global.domain** | your domain for the external endpoint, ex `example.com` | string | - | yes
**global.onPremEnabled** | whether on-prem is enabled | boolean | false | yes
**global.dataBootstrapEnabled** | whether bootstrap is enabled | boolean | false | yes
### Configmap variables
......@@ -135,7 +136,6 @@ First you need to set variables in **values.yaml** file using any code editor. S
**conf.postgresSecretName** | Secret name for postgres service | string | legal-postgres-secret | yes
**conf.rabbitmqSecretName** | Secret name for rabbitmq service | string | rabbitmq-secret | yes
**conf.bootstrapSecretName** | Secret name for bootstrap | string | datafier-secret | yes
**conf.bootstrapEnabled** | whether bootstrap is enabled | boolean | false | yes
### Istio variables
......
{{- if .Values.conf.bootstrapEnabled }}
{{- if .Values.global.dataBootstrapEnabled }}
apiVersion: apps/v1
kind: Deployment
metadata:
......
{{- if .Values.conf.bootstrapEnabled }}
{{- if .Values.global.dataBootstrapEnabled }}
apiVersion: v1
kind: ConfigMap
metadata:
......
......@@ -5,6 +5,7 @@
global:
domain: ""
onPremEnabled: false
dataBootstrapEnabled: false
data:
# configmaps
......@@ -33,7 +34,6 @@ conf:
postgresSecretName: "legal-postgres-secret"
rabbitmqSecretName: "rabbitmq-secret"
bootstrapSecretName: "datafier-secret"
bootstrapEnabled: false
istio:
proxyCPU: "5m"
......
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