Rich Bennett | 4b00193 | 2017-10-16 09:25:01 -0400 | [diff] [blame] | 1 | .. This work is licensed under a Creative Commons Attribution 4.0 International License. |
| 2 | .. http://creativecommons.org/licenses/by/4.0 |
| 3 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 4 | ============= |
Rich Bennett | 4b00193 | 2017-10-16 09:25:01 -0400 | [diff] [blame] | 5 | Configuration |
| 6 | ============= |
| 7 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 8 | .. contents:: |
| 9 | :depth: 3 |
| 10 | .. |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 11 | |
| 12 | Global Configuration |
| 13 | ==================== |
| 14 | |
| 15 | environment.json |
| 16 | ---------------- |
| 17 | |
| 18 | :: |
| 19 | |
| 20 | { |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 21 | # Environment name |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 22 | "name": "xxx", |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 23 | |
| 24 | # Environment description |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 25 | "description": "OpenSource-xxx", |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 26 | "json_class": "Chef::Environment", |
| 27 | "chef_type": "environment", |
Michael Lando | 594a8c6 | 2018-11-29 14:51:16 +0200 | [diff] [blame] | 28 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 29 | "default_attributes": { |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 30 | "disableHttp": false, |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 31 | # IPs used for docker configuration |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 32 | "CS_VIP": "yyy", |
| 33 | "BE_VIP": "yyy", |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 34 | "ONBOARDING_BE_VIP": "yyy", |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 35 | "FE_VIP": "yyy", |
| 36 | "ES_VIP": "yyy", |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 37 | "KB_VIP": "yyy", |
| 38 | "DCAE_BE_VIP": "yyy", |
| 39 | "DCAE_FE_VIP": "yyy", |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 40 | "interfaces": { |
| 41 | "application": "eth0", |
| 42 | "private": "eth1" |
| 43 | }, |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 44 | |
| 45 | # Configuration parameters used in portal properties |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 46 | "ECompP": { |
| 47 | "ecomp_rest_url": "http://portal.api.simpledemo.onap.org:8989/ONAPPORTAL/auxapi", |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 48 | "ecomp_redirect_url": "http://portal.api.simpledemo.openecomp.org:8989/ECOMPPORTAL/login.htm", |
Michael Lando | 594a8c6 | 2018-11-29 14:51:16 +0200 | [diff] [blame] | 49 | "cipher_key": "AGLDdG4D04BKm2IxIWEr8o==", |
| 50 | "portal_user": "Ipwxi2oLvDxctMA1royaRw1W0jhucLx+grHzci3ePIA=", |
| 51 | "portal_pass": "j85yNhyIs7zKYbR1VlwEfNhS6b7Om4l0Gx5O8931sCI=" |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 52 | }, |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 53 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 54 | # Configuration parameters used by SDC to work with Dmaap |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 55 | "UEB": { |
| 56 | "PublicKey": "iPIxkpAMI8qTcQj8", |
| 57 | "SecretKey": "Ehq3WyT4bkif4zwgEbvshGal", |
| 58 | "fqdn": ["10.0.11.1", "10.0.11.1"] |
| 59 | }, |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 60 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 61 | # IPs used for docker configuration |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 62 | "Nodes": { |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 63 | "CS": ["yyy"], |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 64 | "BE": "yyy", |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 65 | "ONBOARDING_BE": "yyy", |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 66 | "FE": "yyy", |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 67 | "ES": ["yyy"], |
| 68 | "KB": "yyy" |
| 69 | }, |
| 70 | "Plugins": { |
| 71 | "DCAE": { |
| 72 | "dcae_discovery_url": "yyy", |
| 73 | "dcae_source_url": "yyy" |
| 74 | }, |
| 75 | "WORKFLOW": { |
| 76 | "workflow_discovery_url": "yyy", |
| 77 | "workflow_source_url": "yyy" |
| 78 | } |
| 79 | }, |
| 80 | "VnfRepo": { |
| 81 | "vnfRepoPort": "8702", |
| 82 | "vnfRepoHost": "10.0.14.1" |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 83 | } |
| 84 | }, |
| 85 | "override_attributes": { |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 86 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 87 | # FE and BE listening ports |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 88 | "FE": { |
| 89 | "http_port": "8181", |
| 90 | "https_port": "9443" |
| 91 | }, |
| 92 | "BE": { |
| 93 | "http_port": "8080", |
| 94 | "https_port": "8443" |
| 95 | }, |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 96 | "ONBOARDING_BE": { |
| 97 | "http_port": "8081", |
| 98 | "https_port": "8445" |
| 99 | }, |
| 100 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 101 | # Elasticsearch configuration |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 102 | "elasticsearch": { |
| 103 | "cluster_name": "SDC-ES-", |
| 104 | "ES_path_home": "/usr/share/elasticsearch", |
| 105 | "ES_path_data": "/usr/share/elasticsearch/data", |
| 106 | "num_of_replicas": "0", |
| 107 | "num_of_shards": "1" |
| 108 | }, |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 109 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 110 | # Cassandra configuration |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 111 | "cassandra": { |
| 112 | "concurrent_reads": "32", |
| 113 | "num_tokens": "256", |
| 114 | "data_dir": "/var/lib/cassandra/data", |
| 115 | "hinted_handoff_enabled": "true", |
Ofir Sonsino | bdfb8dc | 2020-02-23 18:36:46 +0200 | [diff] [blame] | 116 | "cassandra_user": "sdc_user", |
| 117 | "cassandra_password": "changeme", |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 118 | "concurrent_writes": "32", |
| 119 | "cluster_name": "SDC-CS-", |
Michael Lando | 594a8c6 | 2018-11-29 14:51:16 +0200 | [diff] [blame] | 120 | "datacenter_name": "SDC-CS-", |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 121 | "multithreaded_compaction": "false", |
| 122 | "cache_dir": "/var/lib/cassandra/saved_caches", |
| 123 | "log_file": "/var/lib/cassandra/log/system.log", |
| 124 | "phi_convict_threshold": "8", |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 125 | "commitlog_dir": "/var/lib/cassandra/commitlog", |
| 126 | "socket_read_timeout": "20000", |
| 127 | "socket_connect_timeout": "20000", |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 128 | "janusgraph_connection_timeout": "10000" |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 129 | } |
| 130 | } |
| 131 | } |
| 132 | |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 133 | |
| 134 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 135 | Backend Configurations |
| 136 | ====================== |
| 137 | |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 138 | Catalog Configurations |
| 139 | ---------------------- |
| 140 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 141 | BE-configuration.yaml |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 142 | ********************** |
| 143 | |
| 144 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 145 | |
| 146 | :: |
| 147 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 148 | # Request headers for identification of the user that made the request |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 149 | identificationHeaderFields: |
| 150 | - HTTP_IV_USER |
| 151 | - HTTP_CSP_FIRSTNAME |
| 152 | - HTTP_CSP_LASTNAME |
| 153 | - HTTP_IV_REMOTE_ADDRESS |
| 154 | - HTTP_CSP_WSTYPE |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 155 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 156 | # Catalog backend hostname |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 157 | beFqdn: <%= @catalog_ip %> |
| 158 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 159 | # Catalog backend http port |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 160 | beHttpPort: <%= @catalog_port %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 161 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 162 | # Catalog backend http context |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 163 | beContext: /sdc/rest/config/get |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 164 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 165 | # Catalog backend protocol |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 166 | beProtocol: http |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 167 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 168 | # Catalog backend ssl port |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 169 | beSslPort: <%= @ssl_port %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 170 | |
seshukm | 333941e | 2018-09-26 18:11:24 +0800 | [diff] [blame] | 171 | # Catalog backend configuration version |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 172 | version: 1.1.0 |
| 173 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 174 | # Catalog backend configuration release date |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 175 | released: 2012-11-30 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 176 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 177 | # Catalog tosca current conformance version |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 178 | toscaConformanceLevel: 5.0 |
| 179 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 180 | # Catalog minimum tosca conformance version |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 181 | minToscaConformanceLevel: 3.0 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 182 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 183 | # JanusGraph configuration file location |
| 184 | janusGraphCfgFile: /var/lib/jetty/config/catalog-be/janusgraph.properties |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 185 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 186 | # Does JanusGraph hold the persistence data in memory |
| 187 | janusGraphInMemoryGraph: false |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 188 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 189 | # The timeout for JanusGraph to lock on an object in a transaction |
| 190 | janusGraphLockTimeout: 1800 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 191 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 192 | # The interval to try and reconnect to JanusGraph DB when it is down during SDC startup |
| 193 | janusGraphReconnectIntervalInSeconds: 3 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 194 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 195 | # The read timeout towards JanusGraph DB when health check is invoked |
| 196 | janusGraphHealthCheckReadTimeout: 1 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 197 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 198 | # The interval to try and reconnect to Elasticsearch when it is down during SDC startup |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 199 | esReconnectIntervalInSeconds: 3 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 200 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 201 | # The interval to try and reconnect to UEB health check when it is down during SDC startup |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 202 | uebHealthCheckReconnectIntervalInSeconds: 15 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 203 | |
seshukm | 333941e | 2018-09-26 18:11:24 +0800 | [diff] [blame] | 204 | # The read timeout towards UEB when health check is invoked |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 205 | uebHealthCheckReadTimeout: 4 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 206 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 207 | # Protocols being used in SDC |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 208 | protocols: |
| 209 | - http |
| 210 | - https |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 211 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 212 | # Default imports |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 213 | # Under each import there is the file the data will be imported from |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 214 | defaultImports: |
| 215 | - nodes: |
| 216 | file: nodes.yml |
| 217 | - datatypes: |
| 218 | file: data.yml |
| 219 | - capabilities: |
| 220 | file: capabilities.yml |
| 221 | - relationships: |
| 222 | file: relationships.yml |
| 223 | - groups: |
| 224 | file: groups.yml |
| 225 | - policies: |
| 226 | file: policies.yml |
Michael Lando | 594a8c6 | 2018-11-29 14:51:16 +0200 | [diff] [blame] | 227 | - annotations: |
| 228 | file: annotations.yml |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 229 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 230 | # Users |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 231 | # Deprecated. Will be removed in future releases |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 232 | users: |
| 233 | tom: passwd |
| 234 | bob: passwd |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 235 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 236 | cassandraConfig: |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 237 | # Cassandra hostname |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 238 | cassandraHosts: <%= @cassandra_ip %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 239 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 240 | # Cassandra local data center name |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 241 | localDataCenter: <%= @DC_NAME %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 242 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 243 | # The read timeout towards Cassandra when health check is invoked |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 244 | reconnectTimeout : 30000 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 245 | # The amount of time the Cassandra client will wait for a socket |
| 246 | socketReadTimeout: <%= @socket_read_timeout %> |
| 247 | # The amount of time the Cassandra client will wait for a response |
| 248 | socketConnectTimeout: <%= @socket_connect_timeout %> |
| 249 | |
kaihlavi | e9135d2 | 2019-05-17 14:54:25 +0300 | [diff] [blame] | 250 | # Should authentication be used when accessing Cassandra |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 251 | authenticate: true |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 252 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 253 | # Username for accessing Cassandra |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 254 | username: asdc_user |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 255 | |
seshukm | 333941e | 2018-09-26 18:11:24 +0800 | [diff] [blame] | 256 | # Password for accessing Cassandra |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 257 | password: {{cassandra_password}} |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 258 | |
kaihlavi | e9135d2 | 2019-05-17 14:54:25 +0300 | [diff] [blame] | 259 | # Should ssl be used |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 260 | ssl: false |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 261 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 262 | # Location of .truststore file |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 263 | truststorePath : /config/.truststore |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 264 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 265 | # The .truststore file password |
Ofir Sonsino | bdfb8dc | 2020-02-23 18:36:46 +0200 | [diff] [blame] | 266 | truststorePassword : changeme |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 267 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 268 | # Keyspaces configuration for Cassandra |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 269 | keySpaces: |
| 270 | - { name: dox, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['<%= @DC_NAME %>','<%= @rep_factor %>']} |
| 271 | - { name: sdcaudit, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['<%= @DC_NAME %>','<%= @rep_factor %>']} |
| 272 | - { name: sdcartifact, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['<%= @DC_NAME %>','<%= @rep_factor %>']} |
| 273 | - { name: sdccomponent, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['<%= @DC_NAME %>','<%= @rep_factor %>']} |
| 274 | - { name: sdcrepository, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['<%= @DC_NAME %>','<%= @rep_factor %>']} |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 275 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 276 | # Application-specific settings of ES |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 277 | elasticSearch: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 278 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 279 | # Mapping of index prefix to time-based frame. For example, if below is configured: |
| 280 | # |
seshukm | 86b2f6d | 2018-10-03 20:35:52 +0800 | [diff] [blame] | 281 | # - indexPrefix: auditing events |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 282 | # creationPeriod: minute |
| 283 | # |
| 284 | # then ES object of type which is mapped to "auditingevents-*" template, and created on 2015-12-23 13:24:54, will enter "auditingevents-2015-12-23-13-24" index. |
| 285 | # Another object created on 2015-12-23 13:25:54, will enter "auditingevents-2015-12-23-13-25" index. |
| 286 | # If creationPeriod: month, both of the above will enter "auditingevents-2015-12" index. |
| 287 | # |
| 288 | # PLEASE NOTE: the timestamps are created in UTC/GMT timezone! This is needed so that timestamps will be correctly presented in Kibana. |
| 289 | # |
| 290 | # Legal values for creationPeriod - year, month, day, hour, minute, none (meaning no time-based behaviour). |
| 291 | # |
| 292 | # If no creationPeriod is configured for indexPrefix, default behavour is creationPeriod: month. |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 293 | indicesTimeFrequency: |
| 294 | - indexPrefix: auditingevents |
| 295 | creationPeriod: month |
| 296 | - indexPrefix: monitoring_events |
| 297 | creationPeriod: month |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 298 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 299 | # Artifact types placeholder |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 300 | artifactTypes: |
| 301 | - CHEF |
| 302 | - PUPPET |
| 303 | - SHELL |
| 304 | - YANG |
| 305 | - YANG_XML |
| 306 | - HEAT |
| 307 | - BPEL |
| 308 | - DG_XML |
| 309 | - MURANO_PKG |
| 310 | - WORKFLOW |
| 311 | - NETWORK_CALL_FLOW |
| 312 | - TOSCA_TEMPLATE |
| 313 | - TOSCA_CSAR |
| 314 | - AAI_SERVICE_MODEL |
| 315 | - AAI_VF_MODEL |
| 316 | - AAI_VF_MODULE_MODEL |
| 317 | - AAI_VF_INSTANCE_MODEL |
| 318 | - OTHER |
| 319 | - SNMP_POLL |
| 320 | - SNMP_TRAP |
| 321 | - GUIDE |
| 322 | - PLAN |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 323 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 324 | # License types placeholder |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 325 | licenseTypes: |
| 326 | - User |
| 327 | - Installation |
| 328 | - CPU |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 329 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 330 | # Resource types placeholder |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 331 | resourceTypes: &allResourceTypes |
| 332 | - VFC |
| 333 | - CP |
| 334 | - VL |
| 335 | - VF |
Michael Lando | 594a8c6 | 2018-11-29 14:51:16 +0200 | [diff] [blame] | 336 | - CR |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 337 | - VFCMT |
| 338 | - Abstract |
| 339 | - CVFC |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 340 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 341 | #Deployment resource artifacts placeHolder |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 342 | deploymentResourceArtifacts: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 343 | |
Satyaki Mallick | 56309f4 | 2018-10-16 18:20:53 +0530 | [diff] [blame] | 344 | # Deployment resource instance artifact placeholders |
| 345 | # For each artifact the following properties exist: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 346 | # |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 347 | # displayName - The display name of the artifact |
| 348 | # type - The type of the artifact |
| 349 | # description - The description of the artifact |
| 350 | # fileExtension - The file extension of the artifact file for uploading |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 351 | deploymentResourceInstanceArtifacts: |
| 352 | heatEnv: |
| 353 | displayName: "HEAT ENV" |
| 354 | type: HEAT_ENV |
| 355 | description: "Auto-generated HEAT Environment deployment artifact" |
| 356 | fileExtension: "env" |
| 357 | VfHeatEnv: |
| 358 | displayName: "VF HEAT ENV" |
| 359 | type: HEAT_ENV |
| 360 | description: "VF Auto-generated HEAT Environment deployment artifact" |
| 361 | fileExtension: "env" |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 362 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 363 | # Tosca artifacts placeholders |
kaihlavi | e9135d2 | 2019-05-17 14:54:25 +0300 | [diff] [blame] | 364 | # For each artifact there is a template and a csar. |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 365 | # For each one the following properties exists: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 366 | # |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 367 | # artifactName - The suffix of the artifact file |
| 368 | # displayName - The display name of the artifact |
| 369 | # type - The type of the artifact |
| 370 | # description - The description of the artifact |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 371 | toscaArtifacts: |
| 372 | assetToscaTemplate: |
| 373 | artifactName: -template.yml |
| 374 | displayName: Tosca Template |
| 375 | type: TOSCA_TEMPLATE |
| 376 | description: TOSCA representation of the asset |
| 377 | assetToscaCsar: |
| 378 | artifactName: -csar.csar |
| 379 | displayName: Tosca Model |
| 380 | type: TOSCA_CSAR |
| 381 | description: TOSCA definition package of the asset |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 382 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 383 | # Resource category to exclude |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 384 | excludeResourceCategory: |
| 385 | - Generic |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 386 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 387 | # Resource type to exclude |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 388 | excludeResourceType: |
| 389 | - PNF |
Michael Lando | 594a8c6 | 2018-11-29 14:51:16 +0200 | [diff] [blame] | 390 | - CR |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 391 | # Informational resource artifacts placeHolder |
| 392 | # For each artifact the following properties exists: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 393 | # |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 394 | # displayName - The display name of the artifact |
| 395 | # type - The type of the artifact |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 396 | informationalResourceArtifacts: |
| 397 | features: |
| 398 | displayName: Features |
| 399 | type: OTHER |
| 400 | capacity: |
| 401 | displayName: Capacity |
| 402 | type: OTHER |
| 403 | vendorTestResult: |
| 404 | displayName: Vendor Test Result |
| 405 | type: OTHER |
| 406 | testScripts: |
| 407 | displayName: Test Scripts |
| 408 | type: OTHER |
| 409 | CloudQuestionnaire: |
| 410 | displayName: Cloud Questionnaire (completed) |
| 411 | type: OTHER |
| 412 | HEATTemplateFromVendor: |
| 413 | displayName: HEAT Template from Vendor |
| 414 | type: HEAT |
| 415 | resourceSecurityTemplate: |
| 416 | displayName: Resource Security Template |
| 417 | type: OTHER |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 418 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 419 | # Service category to exclude |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 420 | excludeServiceCategory: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 421 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 422 | # Informational service artifacts placeHolder |
| 423 | # For each artifact the following properties exists: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 424 | # |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 425 | # displayName - The display name of the artifact |
| 426 | # type - The type of the artifact |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 427 | informationalServiceArtifacts: |
| 428 | serviceArtifactPlan: |
| 429 | displayName: Service Artifact Plan |
| 430 | type: OTHER |
| 431 | summaryOfImpactsToECOMPElements: |
| 432 | displayName: Summary of impacts to ECOMP elements,OSSs, BSSs |
| 433 | type: OTHER |
| 434 | controlLoopFunctions: |
| 435 | displayName: Control Loop Functions |
| 436 | type: OTHER |
| 437 | dimensioningInfo: |
| 438 | displayName: Dimensioning Info |
| 439 | type: OTHER |
| 440 | affinityRules: |
| 441 | displayName: Affinity Rules |
| 442 | type: OTHER |
| 443 | operationalPolicies: |
| 444 | displayName: Operational Policies |
| 445 | type: OTHER |
| 446 | serviceSpecificPolicies: |
| 447 | displayName: Service-specific Policies |
| 448 | type: OTHER |
| 449 | engineeringRules: |
| 450 | displayName: Engineering Rules (ERD) |
| 451 | type: OTHER |
| 452 | distributionInstructions: |
| 453 | displayName: Distribution Instructions |
| 454 | type: OTHER |
| 455 | certificationTestResults: |
| 456 | displayName: TD Certification Test Results |
| 457 | type: OTHER |
| 458 | deploymentVotingRecord: |
| 459 | displayName: Deployment Voting Record |
| 460 | type: OTHER |
| 461 | serviceQuestionnaire: |
| 462 | displayName: Service Questionnaire |
| 463 | type: OTHER |
| 464 | serviceSecurityTemplate: |
| 465 | displayName: Service Security Template |
| 466 | type: OTHER |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 467 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 468 | # Service api artifacts placeHolder |
| 469 | # For each artifact the following properties exists: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 470 | # |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 471 | # displayName - The display name of the artifact |
| 472 | # type - The type of the artifact |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 473 | serviceApiArtifacts: |
| 474 | configuration: |
| 475 | displayName: Configuration |
| 476 | type: OTHER |
| 477 | instantiation: |
| 478 | displayName: Instantiation |
| 479 | type: OTHER |
| 480 | monitoring: |
| 481 | displayName: Monitoring |
| 482 | type: OTHER |
| 483 | reporting: |
| 484 | displayName: Reporting |
| 485 | type: OTHER |
| 486 | logging: |
| 487 | displayName: Logging |
| 488 | type: OTHER |
| 489 | testing: |
| 490 | displayName: Testing |
| 491 | type: OTHER |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 492 | |
seshukm | 333941e | 2018-09-26 18:11:24 +0800 | [diff] [blame] | 493 | # The maximum number of keys permitted for additional information on service |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 494 | additionalInformationMaxNumberOfKeys: 50 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 495 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 496 | # Collect process statistics |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 497 | systemMonitoring: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 498 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 499 | # Should monitoring be enabled |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 500 | enabled: false |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 501 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 502 | # In case of going through the FE server proxy the information to the BE |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 503 | isProxy: false |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 504 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 505 | # What is the interval of the statistics collection |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 506 | probeIntervalInSeconds: 15 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 507 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 508 | defaultHeatArtifactTimeoutMinutes: 60 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 509 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 510 | # Service deployment artifacts placeHolder |
| 511 | # For each artifact the following properties exists: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 512 | # |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 513 | # acceptedTypes - File types that can be uploaded as each artifact |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 514 | serviceDeploymentArtifacts: |
| 515 | YANG_XML: |
| 516 | acceptedTypes: |
| 517 | - xml |
| 518 | VNF_CATALOG: |
| 519 | acceptedTypes: |
| 520 | - xml |
| 521 | MODEL_INVENTORY_PROFILE: |
| 522 | acceptedTypes: |
| 523 | - xml |
| 524 | MODEL_QUERY_SPEC: |
| 525 | acceptedTypes: |
| 526 | - xml |
Michael Lando | 594a8c6 | 2018-11-29 14:51:16 +0200 | [diff] [blame] | 527 | UCPE_LAYER_2_CONFIGURATION: |
| 528 | acceptedTypes: |
| 529 | - xml |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 530 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 531 | #AAI Artifacts |
| 532 | AAI_SERVICE_MODEL: |
| 533 | acceptedTypes: |
| 534 | - xml |
| 535 | AAI_VF_MODULE_MODEL: |
| 536 | acceptedTypes: |
| 537 | - xml |
| 538 | AAI_VF_INSTANCE_MODEL: |
| 539 | acceptedTypes: |
| 540 | - xml |
Michael Lando | 594a8c6 | 2018-11-29 14:51:16 +0200 | [diff] [blame] | 541 | UCPE_LAYER_2_CONFIGURATION: |
| 542 | acceptedTypes: |
| 543 | - xml |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 544 | OTHER: |
| 545 | acceptedTypes: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 546 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 547 | #PLAN |
| 548 | PLAN: |
| 549 | acceptedTypes: |
| 550 | - xml |
Michael Lando | 594a8c6 | 2018-11-29 14:51:16 +0200 | [diff] [blame] | 551 | WORKFLOW: |
| 552 | acceptedTypes: |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 553 | # Resource deployment artifacts placeHolder |
| 554 | # For each artifact the following properties exists: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 555 | # |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 556 | # acceptedTypes - File types that can be uploaded as each artifact |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 557 | # validForRespurceTypes - Resource types that support each artifact. |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 558 | # If left empty it means all resource types are valid |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 559 | resourceDeploymentArtifacts: |
| 560 | HEAT: |
| 561 | acceptedTypes: |
| 562 | - yaml |
| 563 | - yml |
| 564 | validForResourceTypes: *allResourceTypes |
| 565 | HEAT_VOL: |
| 566 | acceptedTypes: |
| 567 | - yaml |
| 568 | - yml |
| 569 | validForResourceTypes: *allResourceTypes |
| 570 | HEAT_NET: |
| 571 | acceptedTypes: |
| 572 | - yaml |
| 573 | - yml |
| 574 | validForResourceTypes: *allResourceTypes |
| 575 | HEAT_NESTED: |
| 576 | acceptedTypes: |
| 577 | - yaml |
| 578 | - yml |
| 579 | validForResourceTypes: *allResourceTypes |
| 580 | HEAT_ARTIFACT: |
| 581 | acceptedTypes: |
| 582 | validForResourceTypes: *allResourceTypes |
| 583 | YANG_XML: |
| 584 | acceptedTypes: |
| 585 | - xml |
| 586 | validForResourceTypes: *allResourceTypes |
| 587 | VNF_CATALOG: |
| 588 | acceptedTypes: |
| 589 | - xml |
| 590 | validForResourceTypes: *allResourceTypes |
| 591 | VF_LICENSE: |
| 592 | acceptedTypes: |
| 593 | - xml |
| 594 | validForResourceTypes: *allResourceTypes |
| 595 | VENDOR_LICENSE: |
| 596 | acceptedTypes: |
| 597 | - xml |
| 598 | validForResourceTypes: *allResourceTypes |
| 599 | MODEL_INVENTORY_PROFILE: |
| 600 | acceptedTypes: |
| 601 | - xml |
| 602 | validForResourceTypes: *allResourceTypes |
| 603 | MODEL_QUERY_SPEC: |
| 604 | acceptedTypes: |
| 605 | - xml |
| 606 | validForResourceTypes: *allResourceTypes |
| 607 | LIFECYCLE_OPERATIONS: |
| 608 | acceptedTypes: |
| 609 | - yaml |
| 610 | - yml |
| 611 | validForResourceTypes: |
| 612 | - VF |
| 613 | - VFC |
| 614 | VES_EVENTS: |
| 615 | acceptedTypes: |
| 616 | - yaml |
| 617 | - yml |
| 618 | validForResourceTypes: *allResourceTypes |
| 619 | PERFORMANCE_COUNTER: |
| 620 | acceptedTypes: |
| 621 | - csv |
| 622 | validForResourceTypes: *allResourceTypes |
| 623 | APPC_CONFIG: |
| 624 | acceptedTypes: |
| 625 | validForResourceTypes: |
| 626 | - VF |
| 627 | DCAE_TOSCA: |
| 628 | acceptedTypes: |
| 629 | - yml |
| 630 | - yaml |
| 631 | validForResourceTypes: |
| 632 | - VF |
| 633 | - VFCMT |
| 634 | DCAE_JSON: |
| 635 | acceptedTypes: |
| 636 | - json |
| 637 | validForResourceTypes: |
| 638 | - VF |
| 639 | - VFCMT |
| 640 | DCAE_POLICY: |
| 641 | acceptedTypes: |
| 642 | - emf |
| 643 | validForResourceTypes: |
| 644 | - VF |
| 645 | - VFCMT |
| 646 | DCAE_DOC: |
| 647 | acceptedTypes: |
| 648 | validForResourceTypes: |
| 649 | - VF |
| 650 | - VFCMT |
| 651 | DCAE_EVENT: |
| 652 | acceptedTypes: |
| 653 | validForResourceTypes: |
| 654 | - VF |
| 655 | - VFCMT |
| 656 | AAI_VF_MODEL: |
| 657 | acceptedTypes: |
| 658 | - xml |
| 659 | validForResourceTypes: |
| 660 | - VF |
| 661 | AAI_VF_MODULE_MODEL: |
| 662 | acceptedTypes: |
| 663 | - xml |
| 664 | validForResourceTypes: |
| 665 | - VF |
| 666 | OTHER: |
| 667 | acceptedTypes: |
| 668 | validForResourceTypes: *allResourceTypes |
| 669 | SNMP_POLL: |
| 670 | acceptedTypes: |
| 671 | validForResourceTypes: *allResourceTypes |
| 672 | SNMP_TRAP: |
| 673 | acceptedTypes: |
| 674 | validForResourceTypes: *allResourceTypes |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 675 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 676 | #PLAN |
| 677 | PLAN: |
| 678 | acceptedTypes: |
| 679 | - xml |
| 680 | validForResourceTypes: |
| 681 | - VF |
| 682 | - VFC |
Michael Lando | 594a8c6 | 2018-11-29 14:51:16 +0200 | [diff] [blame] | 683 | WORKFLOW: |
| 684 | acceptedTypes: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 685 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 686 | # Resource instance deployment artifacts placeHolder |
| 687 | # For each artifact the following properties exists: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 688 | # |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 689 | # acceptedTypes - File types that can be uploaded as each artifact |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 690 | # validForRespurceTypes - Resource types that support each artifact. |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 691 | # If left empty it means all resource types are valid |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 692 | resourceInstanceDeploymentArtifacts: |
| 693 | HEAT_ENV: |
| 694 | acceptedTypes: |
| 695 | - env |
| 696 | VF_MODULES_METADATA: |
| 697 | acceptedTypes: |
| 698 | - json |
| 699 | VES_EVENTS: |
| 700 | acceptedTypes: |
| 701 | - yaml |
| 702 | - yml |
| 703 | PERFORMANCE_COUNTER: |
| 704 | acceptedTypes: |
| 705 | - csv |
| 706 | DCAE_INVENTORY_TOSCA: |
| 707 | acceptedTypes: |
| 708 | - yml |
| 709 | - yaml |
| 710 | DCAE_INVENTORY_JSON: |
| 711 | acceptedTypes: |
| 712 | - json |
| 713 | DCAE_INVENTORY_POLICY: |
| 714 | acceptedTypes: |
| 715 | - emf |
| 716 | DCAE_INVENTORY_DOC: |
| 717 | acceptedTypes: |
| 718 | DCAE_INVENTORY_BLUEPRINT: |
| 719 | acceptedTypes: |
| 720 | DCAE_INVENTORY_EVENT: |
| 721 | acceptedTypes: |
| 722 | SNMP_POLL: |
| 723 | acceptedTypes: |
| 724 | validForResourceTypes: *allResourceTypes |
| 725 | SNMP_TRAP: |
| 726 | acceptedTypes: |
| 727 | validForResourceTypes: *allResourceTypes |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 728 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 729 | #PLAN |
| 730 | PLAN: |
| 731 | acceptedTypes: |
| 732 | - xml |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 733 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 734 | # Resource informational artifacts placeHolder |
| 735 | # For each artifact the following properties exists: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 736 | # |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 737 | # acceptedTypes - File types that can be uploaded as each artifact |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 738 | # validForRespurceTypes - Resource types that support each artifact. |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 739 | # If left empty it means all resource types are valid |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 740 | resourceInformationalArtifacts: |
| 741 | CHEF: |
| 742 | acceptedTypes: |
| 743 | validForResourceTypes: *allResourceTypes |
| 744 | PUPPET: |
| 745 | acceptedTypes: |
| 746 | validForResourceTypes: *allResourceTypes |
| 747 | SHELL: |
| 748 | acceptedTypes: |
| 749 | validForResourceTypes: *allResourceTypes |
| 750 | YANG: |
| 751 | acceptedTypes: |
| 752 | validForResourceTypes: *allResourceTypes |
| 753 | YANG_XML: |
| 754 | acceptedTypes: |
| 755 | validForResourceTypes: *allResourceTypes |
| 756 | HEAT: |
| 757 | acceptedTypes: |
| 758 | validForResourceTypes: *allResourceTypes |
| 759 | BPEL: |
| 760 | acceptedTypes: |
| 761 | validForResourceTypes: *allResourceTypes |
| 762 | DG_XML: |
| 763 | acceptedTypes: |
| 764 | validForResourceTypes: *allResourceTypes |
| 765 | MURANO_PKG: |
| 766 | acceptedTypes: |
| 767 | validForResourceTypes: *allResourceTypes |
| 768 | OTHER: |
| 769 | acceptedTypes: |
| 770 | validForResourceTypes: |
| 771 | - VFC |
| 772 | - CVFC |
| 773 | - CP |
| 774 | - VL |
| 775 | - VF |
Michael Lando | 594a8c6 | 2018-11-29 14:51:16 +0200 | [diff] [blame] | 776 | - CR |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 777 | - VFCMT |
| 778 | - Abstract |
| 779 | - PNF |
| 780 | SNMP_POLL: |
| 781 | acceptedTypes: |
| 782 | validForResourceTypes: *allResourceTypes |
| 783 | SNMP_TRAP: |
| 784 | acceptedTypes: |
| 785 | validForResourceTypes: *allResourceTypes |
| 786 | GUIDE: |
| 787 | acceptedTypes: |
| 788 | validForResourceTypes: |
| 789 | - VF |
| 790 | - VFC |
| 791 | - CVFC |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 792 | |
seshukm | 333941e | 2018-09-26 18:11:24 +0800 | [diff] [blame] | 793 | # Requirements needed to be fulfilled before certification |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 794 | requirementsToFulfillBeforeCert: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 795 | |
seshukm | 333941e | 2018-09-26 18:11:24 +0800 | [diff] [blame] | 796 | # Capabilities needed to be fulfilled before certification |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 797 | capabilitiesToConsumeBeforeCert: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 798 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 799 | # Urls that should not be logged |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 800 | unLoggedUrls: |
| 801 | - /sdc2/rest/healthCheck |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 802 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 803 | # When component is being set as deleted those are the clean configurations |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 804 | cleanComponentsConfiguration: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 805 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 806 | # The interval to check for deleted components to clean |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 807 | cleanIntervalInMinutes: 1440 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 808 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 809 | # The components types to delete |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 810 | componentsToClean: |
| 811 | - Resource |
| 812 | - Service |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 813 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 814 | # Deprecated. Will be removed in future releases |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 815 | artifactsIndex: resources |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 816 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 817 | # Used to add header and footer to heatENV files generated by SDC |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 818 | heatEnvArtifactHeader: "" |
| 819 | heatEnvArtifactFooter: "" |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 820 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 821 | onboarding: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 822 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 823 | # Onboarding protocol |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 824 | protocol: http |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 825 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 826 | # Onboarding backend hostname |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 827 | host: <%= @host_ip %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 828 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 829 | # Onboarding backend http port |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 830 | port: <%= @catalog_port %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 831 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 832 | # The url that being used when downloading CSARs |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 833 | downloadCsarUri: "/onboarding-api/v1.0/vendor-software-products/packages" |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 834 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 835 | # Url for onboarding health check |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 836 | healthCheckUri: "/onboarding-api/v1.0/healthcheck" |
Michael Lando | 594a8c6 | 2018-11-29 14:51:16 +0200 | [diff] [blame] | 837 | |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 838 | dcae: |
| 839 | # The ip of the onboarding docker |
| 840 | host: <%= @dcae_be_vip %> |
| 841 | # The protocol to use |
| 842 | protocol: <https/http> |
| 843 | # The port the docker is listening on |
| 844 | port: <port> |
| 845 | # The url of the health check to use |
| 846 | healthCheckUri: "/dcae/healthCheck" |
| 847 | |
| 848 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 849 | #GSS IDNS |
seshukm | 333941e | 2018-09-26 18:11:24 +0800 | [diff] [blame] | 850 | # Switchover configuration is used for Geo redundancy to provide automatic failovers |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 851 | switchoverDetector: |
| 852 | gBeFqdn: |
| 853 | gFeFqdn: |
| 854 | beVip: 1.2.3.4 |
| 855 | feVip: 1.2.3.4 |
| 856 | beResolveAttempts: 3 |
| 857 | feResolveAttempts: 3 |
| 858 | enabled: false |
| 859 | interval: 60 |
Ofir Sonsino | bdfb8dc | 2020-02-23 18:36:46 +0200 | [diff] [blame] | 860 | changePriorityUser: onapsdc |
| 861 | changePriorityPassword: changeme |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 862 | publishNetworkUrl: |
| 863 | publishNetworkBody: '{"note":"comment"}' |
| 864 | groups: |
| 865 | beSet: { changePriorityUrl: "", changePriorityBody: '{"name":"","uri":"","no_ad_redirection":false,"v4groups":{"failover_groups":["","","failover_policy":["FAILALL"]},"comment":"","intended_app_proto":"DNS"}'} |
| 866 | feSet: { changePriorityUrl: "", changePriorityBody: '{"name":"","uri":"","no_ad_redirection":false,"v4groups":{"failover_groups":["",""],"failover_policy":["FAILALL"]},"comment":"","intended_app_proto":"DNS"}'} |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 867 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 868 | # Cache for datatypes. Improving run times for data type search |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 869 | applicationL1Cache: |
| 870 | datatypes: |
| 871 | enabled: true |
| 872 | firstRunDelay: 10 |
| 873 | pollIntervalInSec: 60 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 874 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 875 | # Deprecated. Will be removed in future releases |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 876 | applicationL2Cache: |
| 877 | enabled: false |
| 878 | catalogL1Cache: |
| 879 | enabled: false |
| 880 | resourcesSizeInCache: 300 |
| 881 | servicesSizeInCache: 200 |
| 882 | productsSizeInCache: 100 |
| 883 | queue: |
| 884 | syncIntervalInSecondes: 43200 |
| 885 | waitOnShutDownInMinutes: 10 |
| 886 | numberOfCacheWorkers: 4 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 887 | |
seshukm | 86b2f6d | 2018-10-03 20:35:52 +0800 | [diff] [blame] | 888 | # Validators for Tosca properties |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 889 | toscaValidators: |
| 890 | stringMaxLength: 2500 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 891 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 892 | # Should audit be disabled |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 893 | disableAudit: false |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 894 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 895 | # VF module validations properties |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 896 | vfModuleProperties: |
| 897 | min_vf_module_instances: |
| 898 | forBaseModule: 1 |
| 899 | forNonBaseModule: 0 |
| 900 | max_vf_module_instances: |
| 901 | forBaseModule: 1 |
| 902 | forNonBaseModule: |
| 903 | initial_count: |
| 904 | forBaseModule: 1 |
| 905 | forNonBaseModule: 0 |
| 906 | vf_module_type: |
| 907 | forBaseModule: Base |
| 908 | forNonBaseModule: Expansion |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 909 | |
kaihlavi | e9135d2 | 2019-05-17 14:54:25 +0300 | [diff] [blame] | 910 | # For each generic node type defining its corresponding class |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 911 | genericAssetNodeTypes: |
| 912 | VFC: org.openecomp.resource.abstract.nodes.VFC |
| 913 | CVFC: org.openecomp.resource.abstract.nodes.VFC |
| 914 | VF : org.openecomp.resource.abstract.nodes.VF |
| 915 | PNF: org.openecomp.resource.abstract.nodes.PNF |
| 916 | Service: org.openecomp.resource.abstract.nodes.service |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 917 | # tenant isolation configuration |
| 918 | workloadContext: Production |
| 919 | # tenant isolation configuration |
| 920 | environmentContext: |
| 921 | defaultValue: General_Revenue-Bearing |
| 922 | validValues: |
| 923 | - Critical_Revenue-Bearing |
| 924 | - Vital_Revenue-Bearing |
| 925 | - Essential_Revenue-Bearing |
| 926 | - Important_Revenue-Bearing |
| 927 | - Needed_Revenue-Bearing |
| 928 | - Useful_Revenue-Bearing |
| 929 | - General_Revenue-Bearing |
| 930 | - Critical_Non-Revenue |
| 931 | - Vital_Non-Revenue |
| 932 | - Essential_Non-Revenue |
| 933 | - Important_Non-Revenue |
| 934 | - Needed_Non-Revenue |
| 935 | - Useful_Non-Revenue |
| 936 | - General_Non-Revenue |
| 937 | # tenant isolation configuration |
| 938 | dmaapConsumerConfiguration: |
| 939 | hosts: localhost:3905 |
| 940 | consumerGroup: sdc |
| 941 | consumerId: mama |
| 942 | timeoutMs: 15000 |
| 943 | limit: 1 |
| 944 | pollingInterval: 2 |
| 945 | topic: topic |
| 946 | latitude: 32.109333 |
| 947 | longitude: 34.855499 |
| 948 | version: 1.0 |
| 949 | serviceName: localhost/events |
| 950 | environment: TEST |
| 951 | partner: BOT_R |
| 952 | routeOffer: MR1 |
| 953 | protocol: https |
| 954 | contenttype: application/json |
| 955 | dme2TraceOn: true |
| 956 | aftEnvironment: AFTUAT |
| 957 | aftDme2ConnectionTimeoutMs: 15000 |
| 958 | aftDme2RoundtripTimeoutMs: 240000 |
| 959 | aftDme2ReadTimeoutMs: 50000 |
| 960 | dme2preferredRouterFilePath: DME2preferredRouter.txt |
| 961 | timeLimitForNotificationHandleMs: 120000 |
| 962 | credential: |
| 963 | username: user |
| 964 | password: |
| 965 | # tenant isolation configuration |
| 966 | dmeConfiguration: |
| 967 | dme2Search: DME2SEARCH |
| 968 | dme2Resolve: DME2RESOLVE |
seshukm | 333941e | 2018-09-26 18:11:24 +0800 | [diff] [blame] | 969 | # definition for policies types that cannot by created by api |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 970 | excludedPolicyTypesMapping: |
| 971 | # VF: |
| 972 | # - a.b.c |
| 973 | # - c.d.e |
| 974 | #CR: |
| 975 | # - x.y.z |
kaihlavi | e9135d2 | 2019-05-17 14:54:25 +0300 | [diff] [blame] | 976 | # definition for group types that cannot by created by api |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 977 | excludedGroupTypesMapping: |
| 978 | CR: |
| 979 | - org.openecomp.groups.VfModule |
| 980 | - org.openecomp.groups.heat.HeatStack |
| 981 | - tosca.groups.Root |
Michael Lando | 594a8c6 | 2018-11-29 14:51:16 +0200 | [diff] [blame] | 982 | PNF: |
| 983 | - org.openecomp.groups.VfModule |
| 984 | - org.openecomp.groups.heat.HeatStack |
| 985 | - tosca.groups.Root |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 986 | VF: |
| 987 | - org.openecomp.groups.VfModule |
| 988 | - org.openecomp.groups.heat.HeatStack |
| 989 | - tosca.groups.Root |
| 990 | Service: |
| 991 | - org.openecomp.groups.VfModule |
| 992 | - org.openecomp.groups.heat.HeatStack |
| 993 | - tosca.groups.Root |
| 994 | |
| 995 | healthStatusExclude: |
| 996 | - DE |
Michael Lando | 594a8c6 | 2018-11-29 14:51:16 +0200 | [diff] [blame] | 997 | - DMAAP |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 998 | - DCAE |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 999 | |
aribeiro | 0c274e9 | 2020-02-02 19:47:39 +0000 | [diff] [blame^] | 1000 | # This configuration entry lists all node type names prefix that shall be allowed on SDC. |
| 1001 | definedResourceNamespace: |
| 1002 | - org.openecomp.resource. |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1003 | |
| 1004 | BE-distribution-engine-configuration.yaml |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1005 | ***************************************** |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1006 | |
| 1007 | :: |
| 1008 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1009 | # UEB servers list |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1010 | uebServers: |
| 1011 | <% node['UEB']['fqdn'].each do |conn| -%> |
| 1012 | - <%= conn %> |
| 1013 | <% end -%> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1014 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1015 | # UEB public key |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1016 | uebPublicKey: <%= node['UEB']['PublicKey'] %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1017 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1018 | # UEB secret key |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1019 | uebSecretKey: <%= node['UEB']['SecretKey'] %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1020 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1021 | # Topic name for receiving distribution notification |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1022 | distributionNotifTopicName: SDC-DISTR-NOTIF-TOPIC |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1023 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1024 | # Topic name for distribution status |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1025 | distributionStatusTopicName: SDC-DISTR-STATUS-TOPIC |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1026 | |
seshukm | 333941e | 2018-09-26 18:11:24 +0800 | [diff] [blame] | 1027 | # Distribution initialization retry interval time |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1028 | initRetryIntervalSec: 5 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1029 | |
seshukm | 333941e | 2018-09-26 18:11:24 +0800 | [diff] [blame] | 1030 | # Distribution initialization maximum interval time |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1031 | initMaxIntervalSec: 60 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1032 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 1033 | # Deprecated. Will be removed in future releases |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1034 | distribNotifServiceArtifactTypes: |
| 1035 | info: |
| 1036 | - MURANO-PKG |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1037 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 1038 | # Deprecated. Will be removed in future releases |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1039 | distribNotifResourceArtifactTypes: |
| 1040 | lifecycle: |
| 1041 | - HEAT |
| 1042 | - DG-XML |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1043 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1044 | # Distribution environments |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1045 | environments: |
| 1046 | - <%= node.chef_environment %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1047 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1048 | distributionStatusTopic: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1049 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1050 | # Distribution status polling interval |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1051 | pollingIntervalSec: 60 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1052 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1053 | # Distribution status fetch time |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1054 | fetchTimeSec: 15 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1055 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1056 | # Distribution status consumer group |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1057 | consumerGroup: sdc-<%= node.chef_environment %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1058 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1059 | # Distribution status consumer id |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1060 | consumerId: sdc-<%= node.chef_environment %>1 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1061 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1062 | distributionNotificationTopic: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1063 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1064 | # Minimum pool size for distribution notifications |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1065 | minThreadPoolSize: 0 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1066 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1067 | # Maximum pool size for distribution notifications |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1068 | maxThreadPoolSize: 10 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1069 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1070 | # Maximum waiting time after sending a notification |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1071 | maxWaitingAfterSendingSeconds: 5 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1072 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 1073 | # Deprecated. Will be removed in future releases |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1074 | createTopic: |
| 1075 | partitionCount: 1 |
| 1076 | replicationCount: 1 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1077 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1078 | # STarting the distribution engine |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1079 | startDistributionEngine: true |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1080 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1081 | #This is false by default, since ONAP Dmaap currently doesn't support https |
kaihlavi | e9135d2 | 2019-05-17 14:54:25 +0300 | [diff] [blame] | 1082 | # Should https be used with Dmaap |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1083 | useHttpsWithDmaap: false |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1084 | opEnvRecoveryIntervalSec: 180 |
| 1085 | allowedTimeBeforeStaleSec: 300 |
| 1086 | # aai configuration for tenant isolation |
| 1087 | aaiConfig: |
| 1088 | httpRequestConfig: |
Ofir Sonsino | bdfb8dc | 2020-02-23 18:36:46 +0200 | [diff] [blame] | 1089 | serverRootUrl: https://aai.onap.org:8443 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1090 | resourceNamespaces: |
| 1091 | operationalEnvironments: /aai/v12/cloud-infrastructure/operational-environments |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1092 | |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1093 | httpClientConfig: |
| 1094 | timeouts: |
| 1095 | readTimeoutMs: 5000 |
| 1096 | connectTimeoutMs: 1000 |
| 1097 | clientCertificate: |
| 1098 | keyStore: /opt/app/jetty/base/be/etc/non-prod.jks |
Ofir Sonsino | bdfb8dc | 2020-02-23 18:36:46 +0200 | [diff] [blame] | 1099 | keyStorePassword: changeme |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1100 | headers: |
| 1101 | X-FromAppId: asdc |
| 1102 | numOfRetries: 3 |
| 1103 | # mso configuration for tenant isolation |
| 1104 | msoConfig: |
| 1105 | httpRequestConfig: |
| 1106 | serverRootUrl: http://127.0.0.1:8080/onap/mso/infra/modelDistributions/v1 |
| 1107 | resourceNamespaces: |
| 1108 | distributions: /distributions |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1109 | |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1110 | httpClientConfig: |
| 1111 | timeouts: |
| 1112 | readTimeoutMs: 2000 |
| 1113 | connectTimeoutMs: 500 |
| 1114 | basicAuthorization: |
Ofir Sonsino | bdfb8dc | 2020-02-23 18:36:46 +0200 | [diff] [blame] | 1115 | userName: sdc |
| 1116 | password: changeme |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1117 | numOfRetries: 3 |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1118 | |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1119 | currentArtifactInstallationTimeout: 120 |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1120 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 1121 | BE-janusgraph.properties |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1122 | ******************* |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1123 | |
| 1124 | :: |
| 1125 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 1126 | # JanusGraph storage backend |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1127 | storage.backend=cassandra |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1128 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 1129 | # JanusGraph storage hostname |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1130 | storage.hostname=<%= @CASSANDRA_IP %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1131 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 1132 | # JanusGraph storage port |
shrek2000 | 0594c41 | 2020-01-30 14:52:49 +0200 | [diff] [blame] | 1133 | storage.port=9042 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1134 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 1135 | # JanusGraph storage username |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1136 | storage.username=<%= @CASSANDRA_USR %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1137 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 1138 | # JanusGraph storage password |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1139 | storage.password=<%= @CASSANDRA_PWD %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1140 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 1141 | # JanusGraph storage connection timeout |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1142 | storage.connection-timeout=10000 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1143 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 1144 | # JanusGraph cassandra keyspace name |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1145 | storage.cassandra.keyspace=sdctitan |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1146 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 1147 | # Is JanusGraph cassandra ssl is enabled |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1148 | storage.cassandra.ssl.enabled=false |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1149 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 1150 | # JanusGraph cassandra ssl truststore file location |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1151 | storage.cassandra.ssl.truststore.location=/var/lib/jetty/config/.truststore |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1152 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 1153 | # JanusGraph cassandra ssl truststore file password |
Ofir Sonsino | bdfb8dc | 2020-02-23 18:36:46 +0200 | [diff] [blame] | 1154 | storage.cassandra.ssl.truststore.password=changeme |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1155 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 1156 | # Should JanusGraph use cache |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1157 | cache.db-cache = false |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1158 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 1159 | # How long in milliseconds should the cache keep entries before flushing them |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1160 | cache.db-cache-clean-wait = 20 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1161 | |
seshukm | 333941e | 2018-09-26 18:11:24 +0800 | [diff] [blame] | 1162 | # Default expiration time in milliseconds for entries in the cache |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1163 | cache.db-cache-time = 180000 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1164 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 1165 | # Size of JanusGraph database cache |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1166 | cache.db-cache-size = 0.5 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1167 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 1168 | # JanusGraph cassandra read consistency level |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1169 | storage.cassandra.read-consistency-level=LOCAL_QUORUM |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1170 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 1171 | # JanusGraph cassandra write consistency level |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1172 | storage.cassandra.write-consistency-level=LOCAL_QUORUM |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1173 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 1174 | # JanusGraph cassandra replication strategy class name |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1175 | storage.cassandra.replication-strategy-class=org.apache.cassandra.locator.NetworkTopologyStrategy |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1176 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 1177 | # JanusGraph cassandra replication startegy options |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1178 | storage.cassandra.replication-strategy-options=<%= @DC_NAME %>,<%= @rep_factor %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1179 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 1180 | # JanusGraph cassandra local data center name |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1181 | storage.cassandra.astyanax.local-datacenter=<%= @DC_NAME %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1182 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 1183 | # Number of times the system attempts to acquire a lock before giving up and throwing an exception |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1184 | storage.lock.retries=5 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1185 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 1186 | # Number of milliseconds the system waits for a lock application to be acknowledged by the storage backend |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1187 | storage.lock.wait-time=500 |
| 1188 | |
| 1189 | |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1190 | Onboarding configuration |
| 1191 | ------------------------ |
| 1192 | |
| 1193 | BE-onboarding-configuration.yaml |
| 1194 | ******************************** |
| 1195 | |
| 1196 | :: |
| 1197 | |
| 1198 | notifications: |
| 1199 | |
| 1200 | # Backend onboarding notifications polling interval in milliseconds |
| 1201 | pollingIntervalMsec: 2000 |
| 1202 | |
| 1203 | # Backend onboarding notifications selection size |
| 1204 | selectionSize: 100 |
| 1205 | |
seshukm | 333941e | 2018-09-26 18:11:24 +0800 | [diff] [blame] | 1206 | # Backend onboarding notifications backend hostname |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1207 | beHost: <%= @catalog_ip %> |
| 1208 | |
| 1209 | # Backend onboarding notifications backend http port |
| 1210 | beHttpPort: <%= @catalog_port %> |
| 1211 | # Casandra configuration |
| 1212 | cassandraConfig: |
| 1213 | cassandraHosts: [<%= @cassandra_ip %>] |
| 1214 | localDataCenter: <%= @DC_NAME %> |
| 1215 | reconnectTimeout : 30000 |
| 1216 | socketReadTimeout: <%= @socket_read_timeout %> |
| 1217 | socketConnectTimeout: <%= @socket_connect_timeout %> |
| 1218 | authenticate: true |
| 1219 | username: <%= @cassandra_usr %> |
| 1220 | password: <%= @cassandra_pwd %> |
| 1221 | ssl: <%= @cassandra_ssl_enabled %> |
| 1222 | truststorePath: /config/truststore |
| 1223 | truststorePassword: <%= @cassandra_truststore_password %> |
| 1224 | |
Vodafone | c4e0ca6 | 2019-04-09 15:18:21 +0530 | [diff] [blame] | 1225 | externaltesting-configuration.yaml |
| 1226 | ********************************** |
| 1227 | |
| 1228 | :: |
| 1229 | |
| 1230 | # configuration to make available to the front end of this feature |
| 1231 | client: |
| 1232 | enabled: true |
| 1233 | # array of endpoints that SDC-BE should connect with for external testing |
| 1234 | # id,label,enabled,url[,scenariofilter][,apikey] |
| 1235 | endpoints: |
| 1236 | - vtp:VTP,true,http://<hostname>[:<port>]/onapapi/vnfsdk-marketplace,c.* |
| 1237 | - repository:Repository,false,http://<ovphostname>[:<ovpport>] |
| 1238 | |
Vodafone | 84a2098 | 2019-03-18 15:08:33 +0530 | [diff] [blame] | 1239 | |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1240 | |
| 1241 | vnfrepo-configuration.yaml |
| 1242 | ************************** |
| 1243 | |
| 1244 | :: |
| 1245 | |
kaihlavi | e9135d2 | 2019-05-17 14:54:25 +0300 | [diff] [blame] | 1246 | # The port on which the vnfsdk is licensing |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1247 | vnfRepoPort: <port> |
| 1248 | # The ip where vnfdk is deployed |
| 1249 | vnfRepoHost: <ip> |
kaihlavi | e9135d2 | 2019-05-17 14:54:25 +0300 | [diff] [blame] | 1250 | # The url used for querying the vnf sdk for available CSARs |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1251 | getVnfUri: /onapapi/vnfsdk-marketplace/v1/PackageResource/csars |
| 1252 | # The url used for downloading the the CSAR from vnf sdk |
| 1253 | downloadVnfUri: /onapapi/vnfsdk-marketplace/v1/PackageResource/csars/%s/files |
| 1254 | |
| 1255 | |
| 1256 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1257 | Frontend Configuration |
| 1258 | ====================== |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1259 | Catalog configuration |
| 1260 | --------------------- |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1261 | |
| 1262 | FE-configuration.yaml |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1263 | ********************* |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1264 | |
| 1265 | :: |
| 1266 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1267 | # Catalog frontend hostname |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1268 | feFqdn: <%= @fe_host_ip %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1269 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1270 | # Catalog backend hostname |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1271 | beHost: <%= @be_host_ip %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1272 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1273 | # Catalog backend http port |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1274 | beHttpPort: <%= @catalog_port %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1275 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1276 | # Catalog backend http context |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1277 | beContext: /sdc2/rest/v1/catalog/upload/resources |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1278 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1279 | # Catalog backend protocol |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1280 | beProtocol: http |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1281 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1282 | # Catalog backend ssl port |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1283 | beSslPort: <%= @ssl_port %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1284 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1285 | # Threadpool size for handling requests |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1286 | threadpoolSize: 50 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1287 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1288 | # Request processing timeout (seconds) |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1289 | requestTimeout: 10 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1290 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1291 | # Health check timeout in milliseconds |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1292 | healthCheckSocketTimeoutInMs: 5000 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1293 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1294 | # Health check inteval in seconds |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1295 | healthCheckIntervalInSeconds: 5 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1296 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1297 | onboarding: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1298 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1299 | # Onboarding protocol |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1300 | protocol: http |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1301 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1302 | # Onboarding frontend hostname |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1303 | host: <%= @fe_host_ip %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1304 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1305 | # Onboarding frontend port |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1306 | port: 8181 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1307 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1308 | # Onboarding frontend health check url |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1309 | healthCheckUri: "/onboarding/v1.0/healthcheck" |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1310 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1311 | # Request headers for identification of the user that made the request |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1312 | identificationHeaderFields: |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1313 | - |
| 1314 | - &HTTP_IV_USER HTTP_IV_USER |
| 1315 | - &iv-user iv-user |
| 1316 | - |
| 1317 | - &USER_ID USER_ID |
| 1318 | - &user-id user-id |
| 1319 | - |
| 1320 | - &HTTP_CSP_ATTUID HTTP_CSP_ATTUID |
| 1321 | - &csp-attuid csp-attuid |
| 1322 | - |
| 1323 | - &HTTP_CSP_WSTYPE HTTP_CSP_WSTYPE |
| 1324 | - &csp-wstype csp-wstype |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1325 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1326 | # Optional request headers |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1327 | optionalHeaderFields: |
| 1328 | - |
| 1329 | - &HTTP_CSP_FIRSTNAME HTTP_CSP_FIRSTNAME |
| 1330 | - &csp-firstname csp-firstname |
| 1331 | - |
| 1332 | - &HTTP_CSP_LASTNAME HTTP_CSP_LASTNAME |
| 1333 | - &csp-lastname csp-lastname |
| 1334 | - |
| 1335 | - &HTTP_IV_REMOTE_ADDRESS HTTP_IV_REMOTE_ADDRESS |
| 1336 | - &iv-remote-address iv-remote-address |
| 1337 | - |
| 1338 | - &HTTP_CSP_EMAIL HTTP_CSP_EMAIL |
| 1339 | - &csp-email csp-email |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1340 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1341 | # Frontend configuration version |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1342 | version: 1.0 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1343 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1344 | # Frontend configuration release date |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1345 | released: 2012-11-30 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1346 | |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1347 | # Connection parameters |
| 1348 | connection: |
| 1349 | url: jdbc:mysql://localhost:3306/db |
| 1350 | poolSize: 17 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1351 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1352 | # Protocols being used in SDC |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1353 | protocols: |
| 1354 | - http |
| 1355 | - https |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1356 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 1357 | # Collect process statistics |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1358 | systemMonitoring: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1359 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 1360 | # Should monitoring be enabled |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1361 | enabled: false |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1362 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 1363 | # In case of going through the FE server proxy the information to the BE |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1364 | isProxy: true |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1365 | |
Idan Amit | 98d5327 | 2017-10-31 14:38:16 +0200 | [diff] [blame] | 1366 | # What is the interval of the statistics collection |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1367 | probeIntervalInSeconds: 15 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1368 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1369 | # Kibana hostname |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1370 | kibanaHost: localhost |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1371 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1372 | # Kibana http port |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1373 | kibanaPort: 5601 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1374 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1375 | # Kibana usage protocol |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1376 | kibanaProtocol: http |
| 1377 | |
Michael Lando | 594a8c6 | 2018-11-29 14:51:16 +0200 | [diff] [blame] | 1378 | FE-plugins-configuration.yaml |
| 1379 | ***************************** |
| 1380 | :: |
| 1381 | |
kaihlavi | e9135d2 | 2019-05-17 14:54:25 +0300 | [diff] [blame] | 1382 | # definition of the plugins that exist in sdc |
| 1383 | # we have a pre-defined list of plugins that are connected to the system. |
| 1384 | # the plugins define where they are shown, to whom and on what elements |
Michael Lando | 594a8c6 | 2018-11-29 14:51:16 +0200 | [diff] [blame] | 1385 | pluginsList: |
| 1386 | # the DCAE-DS is the SDC monitoring design studio this entry defines there use as part of the service level context |
| 1387 | - pluginId: DCAED |
| 1388 | # this defines from which url to chek that they are available |
| 1389 | pluginDiscoveryUrl: <%= @dcae_discovery_url %> |
| 1390 | # this defines from wht URL will ther you be served. |
| 1391 | pluginSourceUrl: <%= @dcae_source_url %> |
| 1392 | #thsi defines the plugin state name used by the UI for sending messages. |
| 1393 | pluginStateUrl: "dcaed" |
| 1394 | # the display options for the plugin |
| 1395 | pluginDisplayOptions: |
| 1396 | # the plugin will be displayed in the context of a catalog item |
| 1397 | context: |
| 1398 | # what will the option tag in the ui will be called |
| 1399 | displayName: "Monitoring" |
| 1400 | # under what catalog item to display it |
| 1401 | displayContext: ["SERVICE"] |
| 1402 | # what user roles will have the option to access the plugin |
| 1403 | displayRoles: ["DESIGNER"] |
| 1404 | # DCAE-DS as a tab |
| 1405 | - pluginId: DCAE-DS |
| 1406 | pluginDiscoveryUrl: <%= @dcae_dt_discovery_url %> |
| 1407 | pluginSourceUrl: <%= @dcae_dt_source_url %> |
| 1408 | pluginStateUrl: "dcae-ds" |
| 1409 | pluginDisplayOptions: |
| 1410 | tab: |
| 1411 | displayName: "DCAE-DS" |
| 1412 | displayRoles: ["DESIGNER"] |
| 1413 | #work flow plugin |
| 1414 | - pluginId: WORKFLOW |
| 1415 | pluginDiscoveryUrl: <%= @workflow_discovery_url %> |
| 1416 | pluginSourceUrl: <%= @workflow_source_url %> |
| 1417 | pluginStateUrl: "workflowDesigner" |
| 1418 | pluginDisplayOptions: |
| 1419 | tab: |
| 1420 | displayName: "WORKFLOW" |
| 1421 | displayRoles: ["DESIGNER", "TESTER"] |
| 1422 | |
kaihlavi | e9135d2 | 2019-05-17 14:54:25 +0300 | [diff] [blame] | 1423 | # how long we will wait for the plugin to respond before cutting it. |
Michael Lando | 594a8c6 | 2018-11-29 14:51:16 +0200 | [diff] [blame] | 1424 | connectionTimeout: 1000 |
| 1425 | |
ilanap | 1367b73 | 2019-11-26 11:53:36 +0200 | [diff] [blame] | 1426 | FE-workspace-configuration.yaml |
| 1427 | ***************************** |
| 1428 | :: |
| 1429 | |
| 1430 | # this file contains the different configurable UI workspace items that can be set according to resource and service type. |
| 1431 | # the workspaceMenuConfiguration entry defines the workspace menus that are displayed according to type/subtype of the component in the workspace |
| 1432 | # in addition, they can also be disabled for specific roles. the key is the resource type or service type and it will return the list of the menu |
| 1433 | # items that will be displayed. |
| 1434 | # |
| 1435 | # each key had a list of menu items with the following data: |
| 1436 | # - text: display text, |
| 1437 | # - state: the state for the screen |
| 1438 | # - action: action associated |
| 1439 | # - index: optional - an integer that will be used to decide on the order of appearance |
| 1440 | # following are 2 example |
| 1441 | workspaceMenuConfiguration: |
| 1442 | VFC: |
| 1443 | - text: General |
| 1444 | action: onMenuItemPressed |
| 1445 | state: workspace.general |
| 1446 | - text: Deployment Artifact |
| 1447 | action: onMenuItemPressed |
| 1448 | state: workspace.deployment_artifacts |
| 1449 | - text: Information Artifact |
| 1450 | action: onMenuItemPressed |
| 1451 | state: workspace.information_artifacts |
| 1452 | - text: TOSCA Artifacts |
| 1453 | action: onMenuItemPressed |
| 1454 | state: workspace.tosca_artifacts |
| 1455 | - text: Properties |
| 1456 | action: onMenuItemPressed |
| 1457 | state: workspace.properties |
| 1458 | - text: Attributes |
| 1459 | action: onMenuItemPressed |
| 1460 | state: workspace.attributes |
| 1461 | - text: Req. & Capabilities |
| 1462 | action: onMenuItemPressed |
| 1463 | state: workspace.reqAndCap |
| 1464 | - text: Activity Log |
| 1465 | action: onMenuItemPressed |
| 1466 | state: workspace.activity_log |
| 1467 | SERVICE: |
| 1468 | - text: General |
| 1469 | action: onMenuItemPressed |
| 1470 | state: workspace.general |
| 1471 | - text: TOSCA Artifacts |
| 1472 | action: onMenuItemPressed |
| 1473 | state: workspace.tosca_artifacts |
| 1474 | - text: Composition |
| 1475 | action: onMenuItemPressed |
| 1476 | state: workspace.composition.details |
| 1477 | - text: Operation |
| 1478 | action: onMenuItemPressed |
| 1479 | state: workspace.interface_operation |
| 1480 | - text: Activity Log |
| 1481 | action: onMenuItemPressed |
| 1482 | state: workspace.activity_log |
| 1483 | - text: Management Workflow |
| 1484 | action: onMenuItemPressed |
| 1485 | state: workspace.management_workflow |
| 1486 | - text: 'Network Call Flow ' |
| 1487 | action: onMenuItemPressed |
| 1488 | state: workspace.network_call_flow |
| 1489 | - text: Distribution |
| 1490 | action: onMenuItemPressed |
| 1491 | state: workspace.distribution |
| 1492 | disabledRoles: |
| 1493 | - ADMIN |
| 1494 | - TESTER |
| 1495 | - GOVERNOR |
| 1496 | - DESIGNER |
| 1497 | - text: Deployment |
| 1498 | action: onMenuItemPressed |
| 1499 | state: workspace.deployment |
| 1500 | - text: Properties Assignment |
| 1501 | action: onMenuItemPressed |
| 1502 | state: workspace.properties_assignment |
| 1503 | - text: Outputs |
| 1504 | action: onMenuItemPressed |
| 1505 | state: workspace.outputs_assignment |
| 1506 | - text: Req. & Capabilities |
| 1507 | action: onMenuItemPressed |
| 1508 | state: workspace.reqAndCapEditable |
| 1509 | |
| 1510 | |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1511 | Onboarding configuration |
| 1512 | ------------------------ |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1513 | |
| 1514 | FE-onboarding-configuration.yaml |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1515 | ******************************** |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1516 | |
| 1517 | :: |
| 1518 | |
| 1519 | notifications: |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1520 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1521 | # Frontend onboarding notifications polling interval in milliseconds |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1522 | pollingIntervalMsec: 2000 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1523 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1524 | # Frontend onboarding notifications selection size |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1525 | selectionSize: 100 |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1526 | |
seshukm | 333941e | 2018-09-26 18:11:24 +0800 | [diff] [blame] | 1527 | # Frontend onboarding notifications backend hostname |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1528 | beHost: <%= @catalog_ip %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1529 | |
Idan Amit | a51608d | 2017-10-30 14:23:37 +0200 | [diff] [blame] | 1530 | # Frontend onboarding notifications backend http port |
Idan Amit | ce6d62d | 2017-10-29 16:28:29 +0200 | [diff] [blame] | 1531 | beHttpPort: <%= @catalog_port %> |
Michael Lando | db0e898 | 2018-06-06 11:44:25 +0300 | [diff] [blame] | 1532 | |
| 1533 | |