blob: c9535592d86fca2f9c7f1aded1518a50c06889d9 [file] [log] [blame]
Mandeep Khindad6ea9872017-06-24 11:49:37 -04001{
ChrisC742a7b22020-09-04 11:29:57 +02002 "name": "{{ .Values.env.name }}",
3 "description": "OpenSource-{{ .Values.env.name }}",
Mandeep Khindaa1047f42018-03-22 02:12:15 +00004 "cookbook_versions": {
5 "Deploy-SDandC": "= 1.0.0"
6 },
7 "json_class": "Chef::Environment",
8 "chef_type": "environment",
Mandeep Khindad6ea9872017-06-24 11:49:37 -04009
Mandeep Khindaa1047f42018-03-22 02:12:15 +000010 "default_attributes": {
othman touijer2b764d02022-01-05 14:40:37 +010011 "disableHttp": {{ (eq "true" (include "common.needTLS" .)) | ternary "true" "false" }},
Andreas Geisslerfd450c42021-12-10 08:36:45 +000012 "CS_VIP": "{{.Values.global.sdc_cassandra.serviceName}}.{{include "common.namespace" .}}",
BorislavG1ffbd992018-04-24 07:56:27 +000013 "BE_VIP": "sdc-be.{{include "common.namespace" .}}",
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000014 "ONBOARDING_BE_VIP": "sdc-onboarding-be.{{include "common.namespace" .}}",
BorislavG1ffbd992018-04-24 07:56:27 +000015 "FE_VIP": "sdc-fe.{{include "common.namespace" .}}",
Mandeep Khindad6ea9872017-06-24 11:49:37 -040016 "interfaces": {
17 "application": "eth0",
18 "private": "eth0"
19 },
Mandeep Khindaa1047f42018-03-22 02:12:15 +000020 "ECompP": {
Ofir Sonsinodaaf1c92020-03-12 19:28:12 +020021 "ecomp_rest_url": "https://portal-app.{{include "common.namespace" .}}:8443/ONAPPORTAL/auxapi",
BorislavG1ffbd992018-04-24 07:56:27 +000022 "ueb_url_list": "message-router.{{include "common.namespace" .}}, message-router.{{include "common.namespace" .}}",
Mandeep Khindad6ea9872017-06-24 11:49:37 -040023 "app_secret": "XftIATw9Jr3VzAcPqt3NnJOu",
24 "app_key": "x9UfO7JsDn8BESVX",
25 "inbox_name": "ECOMP-PORTAL-INBOX",
Ofir Sonsinodaaf1c92020-03-12 19:28:12 +020026 "ecomp_redirect_url": "https://portal-app.{{include "common.namespace" .}}:30225/ONAPPORTAL/login.htm",
Mandeep Khindad6ea9872017-06-24 11:49:37 -040027 "app_topic_name": "ECOMP-PORTAL-OUTBOX-SDC1",
Mandeep Khindaa1047f42018-03-22 02:12:15 +000028 "decryption_key": "AGLDdG4D04BKm2IxIWEr8o=="
Mandeep Khindad6ea9872017-06-24 11:49:37 -040029 },
30 "UEB": {
31 "PublicKey": "iPIxkpAMI8qTcQj8",
32 "SecretKey": "Ehq3WyT4bkif4zwgEbvshGal",
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000033 "fqdn": [
34 "message-router.{{include "common.namespace" .}}",
35 "message-router.{{include "common.namespace" .}}"
36 ]
Mandeep Khindad6ea9872017-06-24 11:49:37 -040037 },
38 "Nodes": {
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000039 "CS": [
Andreas Geisslerfd450c42021-12-10 08:36:45 +000040 "{{.Values.global.sdc_cassandra.serviceName}}.{{include "common.namespace" .}}"
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000041 ],
BorislavG1ffbd992018-04-24 07:56:27 +000042 "BE": "sdc-be.{{include "common.namespace" .}}",
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000043 "ONBOARDING_BE": "sdc-onboarding-be.{{include "common.namespace" .}}",
shrek2000f336f6d2020-02-25 16:11:26 +020044 "FE": "sdc-fe.{{include "common.namespace" .}}"
Mandeep Khindaa1047f42018-03-22 02:12:15 +000045 },
Mandeep Khindaa1047f42018-03-22 02:12:15 +000046 "VnfRepo": {
47 "vnfRepoPort": "{{.Values.config.environment.vnfRepoPort}}",
Michael Lando65f60bc2018-05-16 00:38:09 +030048 "vnfRepoHost": "refrepo.{{include "common.namespace" .}}"
Joanna Jeremiczfe52bf52021-04-21 14:31:29 +020049 },
50 "HelmValidator": {
51 "validator_enabled": "{{.Values.sdcHelmValidator.enabled}}",
52 "helm_version": "{{.Values.sdcHelmValidator.helmVersion}}",
53 "deployable": "{{.Values.sdcHelmValidator.deployable}}",
54 "lintable": "{{.Values.sdcHelmValidator.lintable}}",
55 "strict_lintable": "{{.Values.sdcHelmValidator.strictLintable}}",
56 "validator_url": "{{.Values.sdcHelmValidator.url}}"
Mandeep Khindad6ea9872017-06-24 11:49:37 -040057 }
58 },
59 "override_attributes": {
60 "FE": {
61 "http_port": "8181",
62 "https_port": "9443"
63 },
64 "BE": {
65 "http_port": "8080",
66 "https_port": "8443"
67 },
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000068 "ONBOARDING_BE": {
69 "http_port": "8081",
priyanshu36cede62018-11-20 13:05:12 +020070 "https_port": "8445",
71 "catalog_notification_url": "%s://%s:%s/sdc2/rest/v1/catalog/notif/vsp/"
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000072 },
Mandeep Khindad6ea9872017-06-24 11:49:37 -040073 "cassandra": {
Areli, Fuss (af732p)6c9e6002019-04-04 15:47:22 +030074 "cassandra_port": 9042,
Mandeep Khindad6ea9872017-06-24 11:49:37 -040075 "concurrent_reads": "32",
76 "num_tokens": "256",
77 "data_dir": "/var/lib/cassandra/data",
78 "hinted_handoff_enabled": "true",
79 "cassandra_user": "asdc_user",
80 "cassandra_password": "Aa1234%^!",
81 "concurrent_writes": "32",
Andreas Geisslerfd450c42021-12-10 08:36:45 +000082 "cluster_name": "{{.Values.global.sdc_cassandra.clusterName}}",
83 "datacenter_name": "{{.Values.global.sdc_cassandra.dataCenter}}",
Mandeep Khindad6ea9872017-06-24 11:49:37 -040084 "multithreaded_compaction": "false",
85 "cache_dir": "/var/lib/cassandra/saved_caches",
86 "log_file": "/var/lib/cassandra/log/system.log",
87 "phi_convict_threshold": "8",
Mandeep Khindaa1047f42018-03-22 02:12:15 +000088 "commitlog_dir": "/var/lib/cassandra/commitlog",
89 "socket_read_timeout": "20000",
90 "socket_connect_timeout": "20000",
shrikantawacharca99d772019-06-12 15:57:09 +053091 "janusgraph_connection_timeout": "10000",
Andreas Geisslerfd450c42021-12-10 08:36:45 +000092 "replication_factor": "{{.Values.global.sdc_cassandra.replicaCount}}",
93 "db_cache": "{{.Values.global.sdc_cassandra.dbCache}}",
94 "read_consistency_level": "{{.Values.global.sdc_cassandra.readConsistencyLevel}}",
95 "write_consistency_level":"{{.Values.global.sdc_cassandra.writeConsistencyLevel}}"
shrek2000f336f6d2020-02-25 16:11:26 +020096 },
97 "DMAAP": {
98 "consumer": {
99 "host": "dcae-mrtr.com:3905",
100 "topic": "operationalEnvironmentEvent",
101 "serviceName": "dcae-mrtr.com:3905/events",
102 "environment": "TEST",
103 "partner": "BOT_R",
104 "username": "user1@sdc.com",
105 "password": "password=="
106 },
107 "producer": {
108 "host": "olsd004.com:3905",
109 "topic": "SDC-FACADE-NOTIF-v1 ",
110 "serviceName": "dmaap.com:3905/events",
111 "environment": "TEST",
112 "username": "user1@sdc.com",
113 "password": "password=="
114 }
othman touijer2b764d02022-01-05 14:40:37 +0100115 {{- if .Values.global.aafEnabled }}
k.kedron2774ab12020-03-26 11:13:46 +0100116 },
117 "jetty": {
118 "keystore_pwd": "${KEYSTORE_PASS}",
ChrisC742a7b22020-09-04 11:29:57 +0200119 "truststore_pwd": "${TRUSTSTORE_PASS}",
120 "keymanager_pwd": "${KEYMANAGER_PASS}"
othman touijer2b764d02022-01-05 14:40:37 +0100121 {{- end }}
shrek2000f336f6d2020-02-25 16:11:26 +0200122 }
Mandeep Khindad6ea9872017-06-24 11:49:37 -0400123 }
BorislavG1ffbd992018-04-24 07:56:27 +0000124}