aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/compass_conf/templates/ansible_installer/openstack_ocata/vars/HA-ansible-multinodes.tmpl
blob: 527f480a65cc9914fb18f9538f4c18e41d06dd4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
#from random import randint
#set cluster_name = $getVar('name', '')
#set network_cfg = $getVar('network_cfg', {})
#set ntp_server = $getVar('ntp_server', "")
#set ceph_disk = $getVar('ceph_disk',"")
#set controllers = $getVar('controller', [])
#set computes = $getVar('compute', [])
#set $contr_sys_mappings= {}
#set $compu_sys_mappings= {}
#for $intf_info in $network_cfg.sys_intf_mappings
#if "controller" in $intf_info["role"]
#set $contr_sys_mappings[$intf_info["name"]] = $intf_info
#end if
#if "compute" in $intf_info["role"]
#set $compu_sys_mappings[$intf_info["name"]] = $intf_info
#end if
#end for

#set ip_settings={}
#for k,v in $getVar('ip_settings', {}).items()
#set host_ip_settings={}
#for intf in v
#set $host_ip_settings[$intf["alias"]]=intf
#end for
#set $ip_settings[$k]=$host_ip_settings
#end for

#for item in $network_cfg["ip_settings"]
#if $item["name"] == "mgmt"
#set mgmt_cfg = $item
#end if
#if $item["name"] == "external"
#set external_cfg = $item
#end if
#if $item["name"] == "tenant"
#set tenant_cfg = $item
#end if
#if $item["name"] == "storage"
#set storage_cfg = $item
#end if
#end for

#set provider_net_mappings = $network_cfg["provider_net_mappings"]
#set contr_prv_mappings = {}
#set compu_prv_mappings = {}
#for item in $provider_net_mappings
#if "controller" in $item["role"]
#set $contr_prv_mappings[$item["network"]] = {"bridge":$item["name"],"interface":$item["interface"]}
#end if
#if "compute" in $item["role"]
#set $compu_prv_mappings[$item["network"]] = {"bridge":$item["name"],"interface":$item["interface"]}
#end if
#end for

#set neutron_cfg = $getVar('neutron_config', {})
#set ovs_config = $neutron_cfg.openvswitch
#set has = $getVar('ha', [])
#set ha_vip = $getVar('ha_vip', [])

run_dir: $getVar('run_dir', '')

enable_secgroup: $getVar('enable_secgroup', True)
enable_fwaas: $getVar('enable_fwaas', True)
enable_vpnaas: $getVar('enable_vpnaas', True)
odl_l3_agent: $getVar('odl_l3_agent', 'Disable')
ha_network: $getVar('ha_network', 'Disable')
onos_nic: $getVar('onos_nic', 'eth2')
onos_sfc: $getVar('onos_sfc', 'Disable')
ip_settings: $ip_settings
network_cfg: $network_cfg

provider_net_mappings: $network_cfg["provider_net_mappings"]

contr_sys_mappings: $contr_sys_mappings
compu_sys_mappings: $compu_sys_mappings

contr_prv_mappings: $contr_prv_mappings
compu_prv_mappings: $compu_prv_mappings

deploy_type: $getVar('deploy_type', 'virtual')

mgmt_cidr: $mgmt_cfg["cidr"]
external_cidr: $external_cfg["cidr"]
tenant_cidr: $tenant_cfg["cidr"]
storage_cidr: $storage_cfg["cidr"]

tenant_net_info: "{{ network_cfg.tenant_net_info }}"
public_net_info: "{{ network_cfg.public_net_info }}"
host_ip_settings: "{{ ip_settings[inventory_hostname] }}"

ntp_server: $ntp_server

offline_deployment: $getVar('offline_deployment', 'Disable')
offline_repo_ip: $getVar('compass_ip', '')
offline_repo_port: $getVar('offline_repo_port', '5151')

internal_vip:
  ip: $network_cfg["internal_vip"]["ip"]
  netmask: $network_cfg["internal_vip"]["netmask"]
#if "vlan_tag" in $contr_sys_mappings[$network_cfg["internal_vip"]["interface"]]
  interface: $contr_sys_mappings[$network_cfg["internal_vip"]["interface"]]["name"]
#else
  interface: $contr_sys_mappings[$network_cfg["internal_vip"]["interface"]]["interface"]
#end if

public_vip:
  ip: $network_cfg["public_vip"]["ip"]
  netmask: $network_cfg["public_vip"]["netmask"]
#if "vlan_tag" in $contr_sys_mappings[$network_cfg["public_vip"]["interface"]]
  interface: $contr_sys_mappings[$network_cfg["public_vip"]["interface"]]["name"]
#else
  interface: $contr_sys_mappings[$network_cfg["public_vip"]["interface"]]["interface"]
#end if

db_host: "{{ internal_vip.ip }}"
rabbit_host: "{{ internal_vip.ip }}"

internal_ip: "{{ ip_settings[inventory_hostname]['tenant']['ip'] }}"
internal_nic: tenant

#set random_id = randint(1, 255)
vrouter_id_internal: $random_id
vrouter_id_public: $random_id

identity_host: "{{ internal_ip }}"
controllers_host: "{{ internal_ip }}"
storage_controller_host: "{{ internal_ip }}"
compute_controller_host: "{{ internal_ip }}"
image_host: "{{ internal_ip }}"
network_server_host: "{{ internal_ip }}"
dashboard_host: "{{ internal_ip }}"

haproxy_hosts:
#for $item in $has
#set $hostname=$item["hostname"]
  $hostname: $ip_settings[$hostname]["tenant"]["ip"]
#end for

host_index:
#for $index, $item in enumerate($has)
  $item["hostname"]: $index
#end for

ERLANG_TOKEN: YOWSJSJIGGAUFZTIBRAD
#set credentials = $getVar('service_credentials', {})
#set console_credentials = $getVar('console_credentials', {})
#set rabbit_username = $credentials.rabbitmq.username
#set rabbit_password = $credentials.rabbitmq.password
#set keystone_dbpass = $credentials.identity.password
#set keystone_pass = $console_credentials.identity.password
#set glance_dbpass = $credentials.image.password
#set glance_pass = $console_credentials.image.password
#set nova_dbpass = $credentials.compute.password
#set nova_pass = $console_credentials.compute.password
#set dash_dbpass = $credentials.dashboard.password
#set cinder_dbpass = $credentials.volume.password
#set cinder_pass = $console_credentials.volume.password
#set heat_dbpass = $credentials.heat.password
#set heat_pass = $console_credentials.heat.password
#set neutron_dbpass = $credentials.network.password
#set neutron_pass = $console_credentials.network.password
#set ceilometer_dbpass = $credentials.metering.password
#set ceilometer_pass = $console_credentials.metering.password
#set aodh_dbpass = $credentials.alarming.password
#set aodh_pass = $console_credentials.alarming.password
#set congress_dbpass = $credentials.policy.password
#set congress_pass = $console_credentials.policy.password
#set admin_pass = $console_credentials.admin.password
#set demo_pass = $console_credentials.demo.password

cluster_name: $cluster_name

odl_controller: 10.1.0.15

DEBUG: true
VERBOSE: true
NTP_SERVER_LOCAL: "{{ controllers_host }}"
DB_HOST: "{{ db_host }}"
MQ_BROKER: rabbitmq

OPENSTACK_REPO: cloudarchive-ocata.list
ocata_cloud_archive: deb http://ubuntu-cloud.archive.canonical.com/ubuntu xenial-updates/ocata main
ADMIN_TOKEN: admin
CEILOMETER_TOKEN: c095d479023a0fd58a54
erlang.cookie: DJJVECFMCJPVYQTJTDWG

RABBIT_USER: $rabbit_username
RABBIT_PASS: $rabbit_password
KEYSTONE_DBPASS: $keystone_dbpass
KEYSTONE_PASS: $keystone_pass
CEILOMETER_DBPASS: $ceilometer_dbpass
CEILOMETER_PASS: $ceilometer_pass
AODH_DBPASS: $aodh_dbpass
AODH_PASS: $aodh_pass
GLANCE_DBPASS: $glance_dbpass
GLANCE_PASS: $glance_pass
NOVA_DBPASS: $nova_dbpass
NOVA_PASS: $nova_pass
DASH_DBPASS: $dash_dbpass
CINDER_DBPASS: $cinder_dbpass
CINDER_PASS: $cinder_pass
NEUTRON_DBPASS: $neutron_dbpass
NEUTRON_PASS: $neutron_pass
HEAT_DBPASS: $heat_dbpass
HEAT_PASS: $heat_pass
CONGRESS_DBPASS: $congress_dbpass
CONGRESS_PASS: $congress_pass
DEMO_PASS: $demo_pass
ADMIN_PASS: $admin_pass

#set plugins = $getVar('plugins', [])
#for item in plugins
#set keys = $item.keys()
#set values = $item.values()
$keys[0]: $values[0]
#end for

#set neutron_service_plugins=['router']
#if $getVar('enable_fwaas', True)
#neutron_service_plugins.append('firewall')
#end if
#if $getVar('enable_vpnaas', True)
#neutron_service_plugins.append('vpnaas')
#end if

NEUTRON_SERVICE_PLUGINS: $neutron_service_plugins
NEUTRON_TYPE_DRIVERS: ['flat', 'gre', 'vxlan', 'vlan']
NEUTRON_TENANT_NETWORK_TYPES: ['$ovs_config["tenant_network_type"]']
NEUTRON_OVS_BRIDGE_MAPPINGS: $ovs_config['bridge_mappings']
#if 'vlan_ranges' in $ovs_config
NEUTRON_VLAN_RANGES: $ovs_config['vlan_ranges']
#else
NEUTRON_VLAN_RANGES: []
#end if
#if 'tunnel_id_ranges' in $ovs_config
NEUTRON_TUNNEL_ID_RANGES: $ovs_config['tunnel_id_ranges']
#else
NEUTRON_TUNNEL_ID_RANGES: []
#end if

#NEUTRON_MECHANISM_DRIVERS: ['opendaylight']
NEUTRON_MECHANISM_DRIVERS: ['openvswitch']
NEUTRON_TUNNEL_TYPES: ['vxlan']
METADATA_SECRET: metadata_secret
WSREP_SST_USER: wsrep_sst
WSREP_SST_PASS: wsrep_sst_sercet

INSTANCE_TUNNELS_INTERFACE_IP_ADDRESS: "{{ internal_ip }}"

#build_in_image: http://download.cirros-cloud.net/0.3.3/cirros-0.3.3-x86_64-disk.img
build_in_image: http://192.168.121.12:9999/img/cirros-0.3.3-x86_64-disk.img
build_in_image_name: cirros-0.3.3-x86_64-disk.img

api_workers: 1

physical_device: /dev/sdb

odl_username: admin
odl_password: admin
odl_api_port: 8080

odl_pkg_url: https://nexus.opendaylight.org/content/groups/public/org/opendaylight/integration/distribution-karaf/0.2.2-Helium-SR2/distribution-karaf-0.2.2-Helium-SR2.tar.gz
odl_pkg_name: karaf.tar.gz
odl_home: "/opt/opendaylight-0.2.2/"
odl_base_features: ['config', 'standard', 'region', 'package', 'kar', 'ssh', 'management', 'http', 'odl-base-all','odl-aaa-authn','odl-restconf','odl-nsf-all','odl-adsal-northbound','odl-mdsal-apidocs', 'odl-openflowplugin-all']
odl_extra_features: ['odl-l2switch-switch', 'odl-ovsdb-plugin', 'odl-ovsdb-openstack', 'odl-ovsdb-northbound','odl-dlux-core', 'odl-restconf-all', 'odl-mdsal-clustering', 'odl-openflowplugin-flow-services', 'odl-netconf-connector', 'odl-netconf-connector-ssh', 'jolokia-osgi']
odl_features: "{{ odl_base_features + odl_extra_features }}"
odl_api_port: 8080

#set moon_cfg = $getVar('moon_cfg', {})
moon_master: $moon_cfg.master.flag
moon_slave: $moon_cfg.slave.flag
moon_slave_name: $moon_cfg.slave.name
moon_master_ip: $moon_cfg.slave.master_ip