summaryrefslogtreecommitdiffstats
path: root/kubernetes/vfc/charts/vfc-vnfmgr/values.yaml
diff options
context:
space:
mode:
authorKrzysztof Opasiak <k.opasiak@samsung.com>2020-02-26 23:36:22 +0100
committerKrzysztof Opasiak <k.opasiak@samsung.com>2020-03-09 13:47:50 +0000
commita9010dbb8d78fd31f419d659532440c27ad3ee7b (patch)
treefedf8c32f18fe8f046722862cf1dd36353857ccc /kubernetes/vfc/charts/vfc-vnfmgr/values.yaml
parentf8a5330a6d1cfab6dd454a532c60466b5d2a8134 (diff)
[VFC] Use common secret template for DB root password
Issue-ID: VFC-1600 Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com> Change-Id: I9f83c6f6eaace60c3e974218810e5943c5758c06
Diffstat (limited to 'kubernetes/vfc/charts/vfc-vnfmgr/values.yaml')
-rw-r--r--kubernetes/vfc/charts/vfc-vnfmgr/values.yaml18
1 files changed, 16 insertions, 2 deletions
diff --git a/kubernetes/vfc/charts/vfc-vnfmgr/values.yaml b/kubernetes/vfc/charts/vfc-vnfmgr/values.yaml
index fdd38e68e9..9cceb9f051 100644
--- a/kubernetes/vfc/charts/vfc-vnfmgr/values.yaml
+++ b/kubernetes/vfc/charts/vfc-vnfmgr/values.yaml
@@ -23,6 +23,16 @@ global:
loggingImage: beats/filebeat:5.5.0
#################################################################
+# Secrets metaconfig
+#################################################################
+secrets:
+ - uid: "db-root-pass"
+ externalSecret: '{{ tpl (default "" .Values.config.mariadbRootPasswordExternalSecret) . }}'
+ type: password
+ password: '{{ .Values.config.mariadbRootPassword }}'
+ policy: required
+
+#################################################################
# Application configuration defaults.
#################################################################
# application image
@@ -39,7 +49,11 @@ istioSidecar: true
debugEnabled: false
# application configuration
-config: {}
+config:
+ mariadbService: vfc-mariadb
+ mariadbPort: 3306
+ # mariadbRootPassword: secretpassword
+ # mariadbRootPasswordExternalSecret: some secret
# default number of instances
replicaCount: 1
@@ -87,4 +101,4 @@ resources:
requests:
cpu: 200m
memory: 500Mi
- unlimited: {} \ No newline at end of file
+ unlimited: {}