5a66d2ec97af48c229130d3a34e4c0c91b1e72f6
[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 # ONAP config
14 # Do not change unless you know what you're doing
15 DMAAP_TOPIC: "AUTO"
16 DEMO_ARTIFACTS_VERSION: "1.1.1"
17
18 # ------------------------------------------------#
19 # OpenStack Config on which VNFs will be deployed #
20 # ------------------------------------------------#
21
22 # The four below parameters are only used by Robot.
23 # As Robot is able to perform some automated actions,
24 # e.g. onboard/distribute/instantiate, it has to be
25 # configured with four below parameters (in addition
26 # to the OPENSTACK ones).
27 # If you don't intend to use Robot for those actions,
28 # you can put dummy values, but you will have to provide
29 # those values when deploying VNF anyway.
30 # --------------------------------------------------
31 # This is the OAM Network ID used for internal network by VNFs.
32 # You could create 10.10.10.0/24 (256 IPs should be enough) in your cloud instance.
33 OPENSTACK_OAM_NETWORK_ID: ""
34 # This is the public Network ID. Public = external network in OpenStack.
35 # Floating IPs will be created and assigned to VNFs from this network,
36 # to provide external reachability.
37 OPENSTACK_PUBLIC_NETWORK_ID: ""
38 # VM Flavor to be used by VNF.
39 OPENSTACK_FLAVOR: ""
40 # VM image to be used by VNF. Here ubuntu 14.04 is provided.
41 OPENSTACK_IMAGE: ""
42
43 OPENSTACK_USERNAME: ""
44 OPENSTACK_PASSWORD: ""
45 OPENSTACK_TENANT_NAME: ""
46 OPENSTACK_TENANT_ID: ""
47 OPENSTACK_REGION: ""
48 # Either v2.0 or v3
49 OPENSTACK_API_VERSION: ""
50 OPENSTACK_KEYSTONE_URL: ""
51 # Don't change this if you don't know what it is
52 OPENSTACK_SERVICE_TENANT_NAME: "service"
53
54 ########
55 # DCAE #
56 ########
57
58 # Whether or not to deploy DCAE
59 # If set to false, all the parameters below can be left empty or removed
60 # If set to false, update ../dcaegen2/values.yaml disableDcae value to true,
61 # this is to avoid deploying the DCAE deployments and services.
62 DEPLOY_DCAE: "true"
63
64 # DCAE Config
65 DCAE_DOCKER_VERSION: v1.1.1
66 DCAE_VM_BASE_NAME: "dcae"
67
68 # ------------------------------------------------#
69 # OpenStack Config on which DCAE will be deployed #
70 # ------------------------------------------------#
71
72 # Whether to have DCAE deployed on the same OpenStack instance on which VNF will be deployed.
73 # (e.g. re-use the same config as defined above)
74 # If set to true, discard the next config block, else provide the values.
75 IS_SAME_OPENSTACK_AS_VNF: "false"
76
77 # Fill in the values in below block only if IS_SAME_OPENSTACK_AS_VNF set to "false"
78 # ---
79 # Either v2.0 or v3
80 DCAE_OS_API_VERSION: ""
81 DCAE_OS_KEYSTONE_URL: ""
82 DCAE_OS_USERNAME: ""
83 DCAE_OS_PASSWORD: ""
84 DCAE_OS_TENANT_NAME: ""
85 DCAE_OS_TENANT_ID: ""
86 DCAE_OS_REGION: ""
87 # ---
88
89 # We need to provide the config of the public network here, because the DCAE VMs will be
90 # assigned a floating IP on this network so one can access them, to debug for instance.
91 # The ID of the public network.
92 DCAE_OS_PUBLIC_NET_ID: ""
93 # The name of the public network.
94 DCAE_OS_PUBLIC_NET_NAME: ""
95 # This is the private network that will be used by DCAE VMs. The network will be created during the DCAE boostrap process,
96 # and will the subnet created will use this CIDR.
97 DCAE_OS_OAM_NETWORK_CIDR: "10.99.0.0/27"
98 # This will be the private ip of the DCAE boostrap VM. This VM is responsible for spinning up the whole DCAE stack (14 VMs total)
99 DCAE_IP_ADDR: "10.99.0.2"
100
101 # The flavors' name to be used by DCAE VMs
102 DCAE_OS_FLAVOR_SMALL: ""
103 DCAE_OS_FLAVOR_MEDIUM: ""
104 DCAE_OS_FLAVOR_LARGE: ""
105 # The images' name to be used by DCAE VMs
106 DCAE_OS_UBUNTU_14_IMAGE: ""
107 DCAE_OS_UBUNTU_16_IMAGE: ""
108 DCAE_OS_CENTOS_7_IMAGE: ""
109
110 # This is the keypair that will be created in OpenStack, and that one can use to access DCAE VMs using ssh.
111 # The private key needs to be in a specific format so at the end of the process, it's formatted properly
112 # when ending up in the DCAE HEAT stack. The best way is to do the following:
113 # - copy paste your key
114 # - surround it with quote
115 # - add \n at the end of each line
116 # - escape the result using https://www.freeformatter.com/java-dotnet-escape.html#ad-output
117 DCAE_OS_KEY_NAME: "onap_key"
118 DCAE_OS_PUB_KEY: ""
119 DCAE_OS_PRIVATE_KEY: ""
120
121 # This below settings allows one to configure the /etc/resolv.conf nameserver resolution for all the DCAE VMs.
122 # -
123 # In the HEAT setup, it's meant to be a DNS list, as the HEAT setup deploys a DNS Server VM in addition to DNS Designate
124 # and this DNS Server is setup to forward request to the DNS Designate backend when it cannot resolve, hence the
125 # DNS_FORWARDER config here. The DCAE Boostrap requires both inputs, even though they are now similar, we have to pass
126 # them.
127 # -
128 # ATTENTION: Assumption is made the DNS Designate backend is configure to forward request to a public DNS (e.g. 8.8.8.8)
129 # -
130 # Put the IP of the DNS Designate backend (e.g. the OpenStack IP supporting DNS Designate)
131 DNS_IP : ""
132 DNS_FORWARDER: ""
133
134 # Public DNS - not used but required by the DCAE boostrap container
135 EXTERNAL_DNS: "8.8.8.8"
136
137 # DNS domain for the DCAE VMs
138 DCAE_DOMAIN: "dcaeg2.onap.org"
139
140 # Proxy DNS Designate. This means DCAE will run in an instance not support Designate, and Designate will be provided by another instance.
141 # Set to true if you wish to use it
142 DNSAAS_PROXY_ENABLE: "false"
143 # Provide this only if DNSAAS_PROXY_ENABLE set to true. The IP has to be the IP of one of the K8S hosts.
144 # e.g. http://10.195.197.164/api/multicloud-titanium_cloud/v0/pod25_RegionOne/identity/v2.0
145 DCAE_PROXIED_KEYSTONE_URL: ""
146
147 # -----------------------------------------------------#
148 # OpenStack Config on which DNS Designate is supported #
149 # -----------------------------------------------------#
150
151 # If this is the same OpenStack used for the VNF or DCAE, please re-enter the values here.
152
153 DNSAAS_API_VERSION: ""
154 DNSAAS_REGION: ""
155 DNSAAS_KEYSTONE_URL: ""
156 DNSAAS_TENANT_ID: ""
157 DNSAAS_TENANT_NAME: ""
158 DNSAAS_USERNAME: ""
159 DNSAAS_PASSWORD: ""