blob: 5ae381c74675ddfe824f6d0f9fd46b5dc6f0c8d9 [file] [log] [blame]
Mandeep Khindad6ea9872017-06-24 11:49:37 -04001{
Mandeep Khindaa1047f42018-03-22 02:12:15 +00002 "name": "{{ .Values.global.env.name }}",
3 "description": "OpenSource-{{ .Values.global.env.name }}",
4 "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": {
11 "disableHttp": false,
12 "CS_VIP": "{{.Release.Name}}-sdc-cs.{{include "common.namespace" .}}",
13 "BE_VIP": "{{.Release.Name}}-sdc-be.{{include "common.namespace" .}}",
14 "FE_VIP": "{{.Release.Name}}-sdc-fe.{{include "common.namespace" .}}",
15 "ES_VIP": "{{.Release.Name}}-sdc-es.{{include "common.namespace" .}}",
16 "KB_VIP": "{{.Release.Name}}-sdc-kb.{{include "common.namespace" .}}",
Mandeep Khindad6ea9872017-06-24 11:49:37 -040017 "interfaces": {
18 "application": "eth0",
19 "private": "eth0"
20 },
Mandeep Khindaa1047f42018-03-22 02:12:15 +000021 "ECompP": {
22 "ecomp_rest_url": "http://{{.Release.Name}}-portalapps.{{include "common.namespace" .}}:8989/ONAPPORTAL/auxapi",
23 "ueb_url_list": "{{.Release.Name}}-dmaap.{{include "common.namespace" .}}, {{.Release.Name}}-dmaap.{{include "common.namespace" .}}",
Mandeep Khindad6ea9872017-06-24 11:49:37 -040024 "app_secret": "XftIATw9Jr3VzAcPqt3NnJOu",
25 "app_key": "x9UfO7JsDn8BESVX",
26 "inbox_name": "ECOMP-PORTAL-INBOX",
Mandeep Khindaa1047f42018-03-22 02:12:15 +000027 "ecomp_redirect_url": "http://{{.Release.Name}}-portalapps.{{include "common.namespace" .}}:8989/ONAPPORTAL/login.htm",
Mandeep Khindad6ea9872017-06-24 11:49:37 -040028 "app_topic_name": "ECOMP-PORTAL-OUTBOX-SDC1",
Mandeep Khindaa1047f42018-03-22 02:12:15 +000029 "decryption_key": "AGLDdG4D04BKm2IxIWEr8o=="
Mandeep Khindad6ea9872017-06-24 11:49:37 -040030 },
31 "UEB": {
32 "PublicKey": "iPIxkpAMI8qTcQj8",
33 "SecretKey": "Ehq3WyT4bkif4zwgEbvshGal",
Mandeep Khindaa1047f42018-03-22 02:12:15 +000034 "fqdn": ["{{.Release.Name}}-dmaap.{{include "common.namespace" .}}", "{{.Release.Name}}-dmaap.{{include "common.namespace" .}}"]
Mandeep Khindad6ea9872017-06-24 11:49:37 -040035 },
36 "Nodes": {
Mandeep Khindaa1047f42018-03-22 02:12:15 +000037 "CS": "{{.Release.Name}}-sdc-cs.{{include "common.namespace" .}}",
38 "BE": "{{.Release.Name}}-sdc-be.{{include "common.namespace" .}}",
39 "FE": "{{.Release.Name}}-sdc-fe.{{include "common.namespace" .}}",
40 "ES": "{{.Release.Name}}-sdc-es.{{include "common.namespace" .}}",
41 "KB": "{{.Release.Name}}-sdc-kb.{{include "common.namespace" .}}"
42 },
43 "Plugins": {
44 "DCAE": {
45 "dcae_discovery_url": "{{.Values.config.environment.dcaeUrl}}",
46 "dcae_source_url": "{{.Values.config.environment.dcaeUrl}}"
47 },
48 "WORKFLOW": {
49 "workflow_discovery_url": "{{.Values.config.environment.workflowUrl}}",
50 "workflow_source_url": "{{.Values.config.environment.workflowUrl}}"
51 }
52 },
53 "VnfRepo": {
54 "vnfRepoPort": "{{.Values.config.environment.vnfRepoPort}}",
55 "vnfRepoHost": "{{.Values.config.environment.vnfRepoHost}}"
Mandeep Khindad6ea9872017-06-24 11:49:37 -040056 }
57 },
58 "override_attributes": {
59 "FE": {
60 "http_port": "8181",
61 "https_port": "9443"
62 },
63 "BE": {
64 "http_port": "8080",
65 "https_port": "8443"
66 },
67 "elasticsearch": {
68 "cluster_name": "SDC-ES-",
69 "ES_path_home": "/usr/share/elasticsearch",
70 "ES_path_data": "/usr/share/elasticsearch/data",
71 "num_of_replicas": "0",
72 "num_of_shards": "1"
73 },
74
75 "cassandra": {
76 "concurrent_reads": "32",
77 "num_tokens": "256",
78 "data_dir": "/var/lib/cassandra/data",
79 "hinted_handoff_enabled": "true",
80 "cassandra_user": "asdc_user",
81 "cassandra_password": "Aa1234%^!",
82 "concurrent_writes": "32",
83 "cluster_name": "SDC-CS-",
84 "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",
91 "titan_connection_timeout": "10000"
Mandeep Khindad6ea9872017-06-24 11:49:37 -040092 }
93 }
Mandeep Khindaa1047f42018-03-22 02:12:15 +000094}