diff options
Diffstat (limited to 'kubernetes/sdc/values.yaml')
-rw-r--r-- | kubernetes/sdc/values.yaml | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/kubernetes/sdc/values.yaml b/kubernetes/sdc/values.yaml index 9cfae6ac66..fb6da37cec 100644 --- a/kubernetes/sdc/values.yaml +++ b/kubernetes/sdc/values.yaml @@ -37,7 +37,7 @@ global: #serviceName: cassandra #Shared cassandra cluster replicaCount, should be changed if localCluster is enabled #to match with its own cluster replica - #see "cassandra: replicaCount" in file sdc-cs/values.yaml) + #see "cassandra: replicaCount" in file sdc-cs/values.yaml replicaCount: 3 dbCache: true readConsistencyLevel: ONE @@ -49,6 +49,10 @@ global: #and cassandra 4.1.* must be "3.4.6" cqlVersion: "3.4.6" + BE: + http_port: 8080 + https_port: 8443 + centralizedLoggingEnabled: true # global Kafka config passed to sdc-be chart kafka: @@ -94,3 +98,26 @@ sdcHelmValidator: lintable: false strictLintable: false url: http://sdc-helm-validator:8080/validate + +ONBOARDING_BE: + http_port: 8081 + https_port: 8445 + catalog_notification_url: "%s://%s:%s/sdc2/rest/v1/catalog/notif/vsp/" +cassandra: + cassandra_port: 9042 + concurrent_reads: 32 + num_tokens: 256 + data_dir: /var/lib/cassandra/data + hinted_handoff_enabled: true + cassandra_user: asdc_user + cassandra_password: Aa1234%^! + concurrent_writes: 32 + multithreaded_compaction: false + cache_dir: "/var/lib/cassandra/saved_caches" + log_file: "/var/lib/cassandra/log/system.log" + phi_convict_threshold: 8 + commitlog_dir: "/var/lib/cassandra/commitlog" + socket_read_timeout: 20000 + socket_connect_timeout: 20000 + janusgraph_connection_timeout: 10000 + |