11813fff508795d57ff7c2445be8bd96607eb55d
[oom.git] / kubernetes / config / onap-parameters.yaml
1 # For information regarding those parameters, please visit http://onap.readthedocs.io/en/latest/submodules/dcaegen2.git/docs/sections/installation_heat.html
2
3 #################
4 # COMMON CONFIG #
5 #################
6
7 # NEXUS
8 NEXUS_HTTP_REPO: https://nexus.onap.org/content/sites/raw
9 NEXUS_DOCKER_REPO: nexus3.onap.org:10001
10 NEXUS_USERNAME: docker
11 NEXUS_PASSWORD: docker
12
13 # Networking
14 OPENSTACK_PUBLIC_NET_ID: ""
15 OPENSTACK_PUBLIC_NET_NAME: ""
16 # Could be reduced, it needs 15 IPs for DCAE VMs
17 OPENSTACK_OAM_NETWORK_CIDR: ""
18
19 # Authentication
20 OPENSTACK_USERNAME: ""
21 OPENSTACK_API_KEY: ""
22 OPENSTACK_TENANT_NAME: ""
23 OPENSTACK_TENANT_ID: ""
24 OPENSTACK_REGION: ""
25 # Either v2.0 or v3
26 OPENSTACK_API_VERSION: ""
27 OPENSTACK_KEYSTONE_URL: ""
28 OPENSTACK_SERVICE_TENANT_NAME: "service"
29
30 # Flavors's name
31 OPENSTACK_FLAVOUR_SMALL: "m1.small"
32 OPENSTACK_FLAVOUR_MEDIUM: "m1.medium"
33 OPENSTACK_FLAVOUR_LARGE: "m1.large"
34
35 # Images' name
36 OPENSTACK_UBUNTU_14_IMAGE: "trusty"
37 OPENSTACK_UBUNTU_16_IMAGE: "xenial"
38 OPENSTACK_CENTOS_7_IMAGE: "centos-7"
39
40 # ONAP config
41 # Do not change unless you know what you're doing
42 DMAAP_TOPIC: "AUTO"
43 DEMO_ARTIFACTS_VERSION: "1.1.1"
44
45
46 ########
47 # DCAE #
48 ########
49
50 # Whether or not to deploy DCAE
51 # If set to false, all the parameters bellow can be left empty or removed
52 # If set to false, update ../dcaegen2/values.yaml disableDcae value to true,
53 # this is to avoid deploying the DCAE deployments and services.
54 DEPLOY_DCAE: "true"
55
56
57 # Config
58 # Do not change unless you know what you're doing
59 DCAE_DOCKER_VERSION: v1.1.1
60 DCAE_VM_BASE_NAME: "dcae"
61 DCAE_IP_ADDR: "10.0.4.1"
62
63 # Can be the same as OPENSTACK_KEYSTONE_URL/OPENSTACK_API_VERSION
64 DCAE_KEYSTONE_URL: ""
65
66 # The private key needs to be in a specific format so it's formatted properly
67 # when ending up in the DCAE HEAT stack. The best way is to do the following:
68 # - copy paste your key
69 # - surround it with quote
70 # - add \n at the end of each line
71 # - escape the result using https://www.freeformatter.com/java-dotnet-escape.html#ad-output
72 OPENSTACK_KEY_NAME: "onap_key"
73 OPENSTACK_PUB_KEY: ""
74 OPENSTACK_PRIVATE_KEY: ""
75
76
77 # This settings allows one to configure the /etc/resolv.conf nameserver resolution for all the DCAE VMs.
78 # -
79 # In the HEAT setup, it's meant to be a list, as the HEAT setup deploys a DNS Server VM in addition to DNS Designate
80 # and this DNS Server is setup to forward request to the DNS Designate backend when it cannot resolve, hence the
81 # DNS_FORWARDER config here. The DCAE Boostrap requires both inputs, even though they are now similar, we have to pass
82 # them.
83 # -
84 # ATTENTION: Assumption is made the DNS Designate backend is configure to forward request to a public DNS (e.g. 8.8.8.8)
85 # -
86 # Put the IP of the DNS Designate backend (e.g. the OpenStack IP supporting DNS Designate)
87 DNS_LIST : ""
88 DNS_FORWARDER: ""
89
90 # Do not change - Public DNS - not used but required by the DCAE boostrap container
91 EXTERNAL_DNS: "8.8.8.8"
92
93 # Proxy DNS Designate is only supportted for windriver-multicloud adapter (limitation from DCAE)
94 # Set to true if you wish to use it (e.g. Integration lab)
95 DNSAAS_PROXY_ENABLE: "false"
96
97 # Possibility to have DNS Designate installed in another OpenStack, if not, provide the same values
98 # as the OPENSTACK_* ones above.
99 DNSAAS_REGION: ""
100 DNSAAS_KEYSTONE_URL: ""
101 DNSAAS_TENANT_NAME: "n"
102 DNSAAS_USERNAME: ""
103 DNSAAS_PASSWORD: ""
104
105 # DNS domain for the DCAE VMs
106 DCAE_DOMAIN: "dcaeg2.onap.org"