blob: aee666f4af4b4b354a1d2e59d3026b7ce21e91ad [file] [log] [blame]
Mandeep Khindad6ea9872017-06-24 11:49:37 -04001{
ChrisC742a7b22020-09-04 11:29:57 +02002 "name": "{{ .Values.env.name }}",
3 "description": "OpenSource-{{ .Values.env.name }}",
Mandeep Khindaa1047f42018-03-22 02:12:15 +00004 "cookbook_versions": {
5 "Deploy-SDandC": "= 1.0.0"
6 },
7 "json_class": "Chef::Environment",
8 "chef_type": "environment",
Mandeep Khindad6ea9872017-06-24 11:49:37 -04009
Mandeep Khindaa1047f42018-03-22 02:12:15 +000010 "default_attributes": {
othman touijer2b764d02022-01-05 14:40:37 +010011 "disableHttp": {{ (eq "true" (include "common.needTLS" .)) | ternary "true" "false" }},
Andreas Geisslerfd450c42021-12-10 08:36:45 +000012 "CS_VIP": "{{.Values.global.sdc_cassandra.serviceName}}.{{include "common.namespace" .}}",
BorislavG1ffbd992018-04-24 07:56:27 +000013 "BE_VIP": "sdc-be.{{include "common.namespace" .}}",
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000014 "ONBOARDING_BE_VIP": "sdc-onboarding-be.{{include "common.namespace" .}}",
BorislavG1ffbd992018-04-24 07:56:27 +000015 "FE_VIP": "sdc-fe.{{include "common.namespace" .}}",
Mandeep Khindad6ea9872017-06-24 11:49:37 -040016 "interfaces": {
17 "application": "eth0",
18 "private": "eth0"
19 },
Mandeep Khindaa1047f42018-03-22 02:12:15 +000020 "ECompP": {
Ofir Sonsinodaaf1c92020-03-12 19:28:12 +020021 "ecomp_rest_url": "https://portal-app.{{include "common.namespace" .}}:8443/ONAPPORTAL/auxapi",
BorislavG1ffbd992018-04-24 07:56:27 +000022 "ueb_url_list": "message-router.{{include "common.namespace" .}}, message-router.{{include "common.namespace" .}}",
Mandeep Khindad6ea9872017-06-24 11:49:37 -040023 "app_secret": "XftIATw9Jr3VzAcPqt3NnJOu",
24 "app_key": "x9UfO7JsDn8BESVX",
25 "inbox_name": "ECOMP-PORTAL-INBOX",
Ofir Sonsinodaaf1c92020-03-12 19:28:12 +020026 "ecomp_redirect_url": "https://portal-app.{{include "common.namespace" .}}:30225/ONAPPORTAL/login.htm",
Mandeep Khindad6ea9872017-06-24 11:49:37 -040027 "app_topic_name": "ECOMP-PORTAL-OUTBOX-SDC1",
Mandeep Khindaa1047f42018-03-22 02:12:15 +000028 "decryption_key": "AGLDdG4D04BKm2IxIWEr8o=="
Mandeep Khindad6ea9872017-06-24 11:49:37 -040029 },
30 "UEB": {
31 "PublicKey": "iPIxkpAMI8qTcQj8",
32 "SecretKey": "Ehq3WyT4bkif4zwgEbvshGal",
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000033 "fqdn": [
34 "message-router.{{include "common.namespace" .}}",
35 "message-router.{{include "common.namespace" .}}"
36 ]
Mandeep Khindad6ea9872017-06-24 11:49:37 -040037 },
efiacor3422fe92022-07-12 13:19:53 +010038 "Kafka": {
39 "bootstrap": "{{ include "common.release" . }}-{{ .Values.global.kafka.kafkaBootstrap }}"
40 },
41 "DistributionTopics": {
42 "notificationTopicName": "{{ .Values.global.kafka.topics.sdcDistNotifTopic }}",
43 "statusTopicName": "{{ .Values.global.kafka.topics.sdcDistStatusTopic }}"
44 },
Mandeep Khindad6ea9872017-06-24 11:49:37 -040045 "Nodes": {
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000046 "CS": [
Andreas Geisslerfd450c42021-12-10 08:36:45 +000047 "{{.Values.global.sdc_cassandra.serviceName}}.{{include "common.namespace" .}}"
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000048 ],
BorislavG1ffbd992018-04-24 07:56:27 +000049 "BE": "sdc-be.{{include "common.namespace" .}}",
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000050 "ONBOARDING_BE": "sdc-onboarding-be.{{include "common.namespace" .}}",
shrek2000f336f6d2020-02-25 16:11:26 +020051 "FE": "sdc-fe.{{include "common.namespace" .}}"
Mandeep Khindaa1047f42018-03-22 02:12:15 +000052 },
Mandeep Khindaa1047f42018-03-22 02:12:15 +000053 "VnfRepo": {
54 "vnfRepoPort": "{{.Values.config.environment.vnfRepoPort}}",
Michael Lando65f60bc2018-05-16 00:38:09 +030055 "vnfRepoHost": "refrepo.{{include "common.namespace" .}}"
Joanna Jeremiczfe52bf52021-04-21 14:31:29 +020056 },
57 "HelmValidator": {
58 "validator_enabled": "{{.Values.sdcHelmValidator.enabled}}",
59 "helm_version": "{{.Values.sdcHelmValidator.helmVersion}}",
60 "deployable": "{{.Values.sdcHelmValidator.deployable}}",
61 "lintable": "{{.Values.sdcHelmValidator.lintable}}",
62 "strict_lintable": "{{.Values.sdcHelmValidator.strictLintable}}",
63 "validator_url": "{{.Values.sdcHelmValidator.url}}"
Mandeep Khindad6ea9872017-06-24 11:49:37 -040064 }
65 },
66 "override_attributes": {
67 "FE": {
68 "http_port": "8181",
69 "https_port": "9443"
70 },
71 "BE": {
72 "http_port": "8080",
73 "https_port": "8443"
74 },
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000075 "ONBOARDING_BE": {
76 "http_port": "8081",
priyanshu36cede62018-11-20 13:05:12 +020077 "https_port": "8445",
78 "catalog_notification_url": "%s://%s:%s/sdc2/rest/v1/catalog/notif/vsp/"
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000079 },
Mandeep Khindad6ea9872017-06-24 11:49:37 -040080 "cassandra": {
Areli, Fuss (af732p)6c9e6002019-04-04 15:47:22 +030081 "cassandra_port": 9042,
Mandeep Khindad6ea9872017-06-24 11:49:37 -040082 "concurrent_reads": "32",
83 "num_tokens": "256",
84 "data_dir": "/var/lib/cassandra/data",
85 "hinted_handoff_enabled": "true",
86 "cassandra_user": "asdc_user",
87 "cassandra_password": "Aa1234%^!",
88 "concurrent_writes": "32",
Andreas Geisslerfd450c42021-12-10 08:36:45 +000089 "cluster_name": "{{.Values.global.sdc_cassandra.clusterName}}",
90 "datacenter_name": "{{.Values.global.sdc_cassandra.dataCenter}}",
Mandeep Khindad6ea9872017-06-24 11:49:37 -040091 "multithreaded_compaction": "false",
92 "cache_dir": "/var/lib/cassandra/saved_caches",
93 "log_file": "/var/lib/cassandra/log/system.log",
94 "phi_convict_threshold": "8",
Mandeep Khindaa1047f42018-03-22 02:12:15 +000095 "commitlog_dir": "/var/lib/cassandra/commitlog",
96 "socket_read_timeout": "20000",
97 "socket_connect_timeout": "20000",
shrikantawacharca99d772019-06-12 15:57:09 +053098 "janusgraph_connection_timeout": "10000",
Andreas Geisslerfd450c42021-12-10 08:36:45 +000099 "replication_factor": "{{.Values.global.sdc_cassandra.replicaCount}}",
100 "db_cache": "{{.Values.global.sdc_cassandra.dbCache}}",
101 "read_consistency_level": "{{.Values.global.sdc_cassandra.readConsistencyLevel}}",
102 "write_consistency_level":"{{.Values.global.sdc_cassandra.writeConsistencyLevel}}"
shrek2000f336f6d2020-02-25 16:11:26 +0200103 },
104 "DMAAP": {
105 "consumer": {
106 "host": "dcae-mrtr.com:3905",
107 "topic": "operationalEnvironmentEvent",
108 "serviceName": "dcae-mrtr.com:3905/events",
109 "environment": "TEST",
110 "partner": "BOT_R",
111 "username": "user1@sdc.com",
112 "password": "password=="
113 },
114 "producer": {
115 "host": "olsd004.com:3905",
116 "topic": "SDC-FACADE-NOTIF-v1 ",
117 "serviceName": "dmaap.com:3905/events",
118 "environment": "TEST",
119 "username": "user1@sdc.com",
120 "password": "password=="
121 }
othman touijer2b764d02022-01-05 14:40:37 +0100122 {{- if .Values.global.aafEnabled }}
k.kedron2774ab12020-03-26 11:13:46 +0100123 },
124 "jetty": {
125 "keystore_pwd": "${KEYSTORE_PASS}",
ChrisC742a7b22020-09-04 11:29:57 +0200126 "truststore_pwd": "${TRUSTSTORE_PASS}",
127 "keymanager_pwd": "${KEYMANAGER_PASS}"
othman touijer2b764d02022-01-05 14:40:37 +0100128 {{- end }}
shrek2000f336f6d2020-02-25 16:11:26 +0200129 }
Mandeep Khindad6ea9872017-06-24 11:49:37 -0400130 }
BorislavG1ffbd992018-04-24 07:56:27 +0000131}