blob: dae086086121def35754ac8a25e7fe2ab8724539 [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001{
2 "name": "xxx",
3 "description": "OpenSource-xxx",
4 "cookbook_versions": {
5 "Deploy-SDandC": "= 1.0.0"
6 },
7 "json_class": "Chef::Environment",
8 "chef_type": "environment",
9
10 "default_attributes": {
Tal Gitelman7cb0f892018-01-07 19:06:47 +020011 "disableHttp": false,
Michael Lando451a3402017-02-19 10:28:42 +020012 "CS_VIP": "yyy",
13 "BE_VIP": "yyy",
Avi Zivc175a0d2018-03-15 13:21:44 +020014 "ONBOARDING_BE_VIP": "yyy",
Michael Lando451a3402017-02-19 10:28:42 +020015 "FE_VIP": "yyy",
16 "ES_VIP": "yyy",
Tal Gitelman51d50f02017-12-10 18:55:03 +020017 "KB_VIP": "yyy",
Michael Lando451a3402017-02-19 10:28:42 +020018 "interfaces": {
19 "application": "eth0",
20 "private": "eth1"
21 },
22 "ECompP": {
Michael Landod7cc2df2017-10-24 23:10:45 +030023 "ecomp_rest_url": "http://portal.api.simpledemo.onap.org:8989/ONAPPORTAL/auxapi",
Tal Gitelman51d50f02017-12-10 18:55:03 +020024 "ueb_url_list": "10.0.11.1,10.0.11.1",
25 "app_secret": "XftIATw9Jr3VzAcPqt3NnJOu",
26 "app_key": "x9UfO7JsDn8BESVX",
27 "inbox_name": "ECOMP-PORTAL-INBOX",
28 "ecomp_redirect_url": "http://portal.api.simpledemo.openecomp.org:8989/ECOMPPORTAL/login.htm",
Michael Lando451a3402017-02-19 10:28:42 +020029 "app_topic_name": "ECOMP-PORTAL-OUTBOX-SDC1",
30 "decryption_key": "AGLDdG4D04BKm2IxIWEr8o=="
Tal Gitelman51d50f02017-12-10 18:55:03 +020031 },
Michael Lando451a3402017-02-19 10:28:42 +020032 "UEB": {
33 "PublicKey": "iPIxkpAMI8qTcQj8",
34 "SecretKey": "Ehq3WyT4bkif4zwgEbvshGal",
Grinberg Motib47f06a2017-02-23 17:57:18 +020035 "fqdn": ["10.0.11.1", "10.0.11.1"]
Michael Lando451a3402017-02-19 10:28:42 +020036 },
37 "Nodes": {
Areli, Fuss (af732p)c033cdc2018-04-24 13:59:00 +030038 "CS": [
39 "yyy"
40 ],
Avi Zivc175a0d2018-03-15 13:21:44 +020041 "BE": "yyy",
42 "ONBOARDING_BE": "yyy",
43 "FE": "yyy",
Areli, Fuss (af732p)c033cdc2018-04-24 13:59:00 +030044 "ES": [
45 "yyy"
46 ],
47 "KB": "yyy"
Idan Amit2c285722017-12-29 09:40:43 +020048 },
Idan Amit71904f22018-02-13 10:38:16 +020049 "Plugins": {
Idan Amit2c285722017-12-29 09:40:43 +020050 "DCAE": {
Idan Amit71904f22018-02-13 10:38:16 +020051 "dcae_discovery_url": "yyy",
52 "dcae_source_url": "yyy"
Idan Amit2c285722017-12-29 09:40:43 +020053 },
54 "WORKFLOW": {
Idan Amit71904f22018-02-13 10:38:16 +020055 "workflow_discovery_url": "yyy",
56 "workflow_source_url": "yyy"
Idan Amit2c285722017-12-29 09:40:43 +020057 }
Idan Amit71904f22018-02-13 10:38:16 +020058 },
Yuli Shlosberge56a2a82018-02-25 14:39:45 +020059 "VnfRepo": {
60 "vnfRepoPort": "8702",
61 "vnfRepoHost": "192.168.50.5"
62 }
Michael Lando451a3402017-02-19 10:28:42 +020063 },
64 "override_attributes": {
65 "FE": {
66 "http_port": "8181",
67 "https_port": "9443"
68 },
69 "BE": {
70 "http_port": "8080",
71 "https_port": "8443"
72 },
Avi Zivc175a0d2018-03-15 13:21:44 +020073 "ONBOARDING_BE": {
74 "http_port": "8081",
75 "https_port": "8445"
76 },
Michael Lando451a3402017-02-19 10:28:42 +020077 "elasticsearch": {
78 "cluster_name": "SDC-ES-",
79 "ES_path_home": "/usr/share/elasticsearch",
80 "ES_path_data": "/usr/share/elasticsearch/data",
81 "num_of_replicas": "0",
82 "num_of_shards": "1"
83 },
84
85 "cassandra": {
86 "concurrent_reads": "32",
87 "num_tokens": "256",
88 "data_dir": "/var/lib/cassandra/data",
89 "hinted_handoff_enabled": "true",
90 "cassandra_user": "asdc_user",
91 "cassandra_password": "Aa1234%^!",
92 "concurrent_writes": "32",
93 "cluster_name": "SDC-CS-",
94 "multithreaded_compaction": "false",
95 "cache_dir": "/var/lib/cassandra/saved_caches",
96 "log_file": "/var/lib/cassandra/log/system.log",
97 "phi_convict_threshold": "8",
Michael Lando50ffa6b2018-01-08 10:52:07 +020098 "commitlog_dir": "/var/lib/cassandra/commitlog",
99 "socket_read_timeout": "20000",
100 "socket_connect_timeout": "20000",
101 "titan_connection_timeout": "10000"
Michael Lando451a3402017-02-19 10:28:42 +0200102 }
103 }
104}
105