diff options
author | Mike Elliott <mike.elliott@amdocs.com> | 2019-04-30 19:17:52 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-04-30 19:17:52 +0000 |
commit | 354afbbf205d4c7e34337d7af184560882966d91 (patch) | |
tree | c3c7d813d64a6451b5630ab02183abe0727cde02 /kubernetes/sdc/values.yaml | |
parent | d9054f9a949d5a5842818ec51731f9889028e06f (diff) | |
parent | 35f83f5ba9cf0e7053160710fa18d73156bdba66 (diff) |
Merge "Upgrade SDC to use common Cassandra Cluster"
Diffstat (limited to 'kubernetes/sdc/values.yaml')
-rw-r--r-- | kubernetes/sdc/values.yaml | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/kubernetes/sdc/values.yaml b/kubernetes/sdc/values.yaml index ea95bd7f53..cafa59ad77 100644 --- a/kubernetes/sdc/values.yaml +++ b/kubernetes/sdc/values.yaml @@ -20,10 +20,21 @@ global: secrets: sdc_user: YXNkY191c2Vy sdc_password: QWExMjM0JV4h - cs_password: b25hcDEyMyNAIQ== + #Should be the password of shared cassandra instance/chart + cs_password: Y2Fzc2FuZHJh ubuntuInitRepository: oomk8s ubuntuInitImage: ubuntu-init:1.0.0 - + cassandra: + #This flag allows SDC to instantiate its own cluster, serviceName + #should be sdc-cs if this flag is enabled + localCluster: false + #The cassandra service name to connect to (default: shared cassandra service) + serviceName: cassandra + #Shared cassandra cluster replicaCount, should be changed if localCluster is enabled + #to match with its own cluster replica + replicaCount: 3 + clusterName: cassandra + dataCenter: Pod config: logstashServiceName: log-ls @@ -32,7 +43,16 @@ config: workflowUrl: 10.0.2.15 vnfRepoPort: 8702 - sdc-es: service: name: sdc-es + +#Used only if localCluster is enabled. Instantiates SDC's own cassandra cluster +cassandra: + nameOverride: sdc-cs + replicaCount: 1 + service: + name: sdc-cs + persistence: + mountSubPath: sdc/sdc-cs/CS + enabled: true |