blob: 4fa2d7478ad61fbf72e12a531e99e4ed279b4066 [file] [log] [blame]
Aleš Komáreka3314b22017-04-11 13:46:06 +02001====================
2OpenContrail Formula
3====================
Filip Pytloun27930402015-10-06 16:28:32 +02004
Jakub Pavlik01fe5372016-05-20 11:23:28 +02005Contrail Controller is an open, standards-based software solution that
6delivers network virtualization and service automation for federated cloud
7networks. It provides self-service provisioning, improves network
8troubleshooting and diagnostics, and enables service chaining for dynamic
9application environments across enterprise virtual private cloud (VPC),
10managed Infrastructure as a Service (IaaS), and Networks Functions
11Virtualization (NFV) use cases.
Filip Pytloun27930402015-10-06 16:28:32 +020012
Jiri Konecny463dee52016-03-03 11:08:46 +010013
Petr Michalec579e64d2017-03-24 12:54:29 +010014Package source
15==============
Aleš Komáreka3314b22017-04-11 13:46:06 +020016
Petr Michalec579e64d2017-03-24 12:54:29 +010017Formula support OpenContrail as well as Juniper Contrail package repository in the backend.
18
19Differences withing the configuration and state run are controlled by
20``opencontrail.common.vendor: [opencontrail|juniper]`` pillar attribute.
21
22Default value is set to ``opencontrail``.
23
24Juniper releases tested with this formula:
25 - 3.0.2.x
26
27To use Juniper Contrail repository as a source of packages override pillar as in this example:
28
29.. code-block:: yaml
30
31 opencontrail:
32 common:
33 vendor: juniper
34
35
Aleš Komáreka3314b22017-04-11 13:46:06 +020036Sample Pillars
Filip Pytloun27930402015-10-06 16:28:32 +020037==============
38
Jiri Konecny463dee52016-03-03 11:08:46 +010039Controller nodes
40----------------
41
42There are several scenarios for OpenContrail control plane.
43
44All-in-one single
45~~~~~~~~~~~~~~~~~
46
47Config, control, analytics, database, web -- altogether on one node.
48
49.. code-block:: yaml
50
51 opencontrail:
52 common:
53 version: 2.2
54 source:
55 engine: pkg
56 address: http://mirror.robotice.cz/contrail-havana/
57 identity:
58 engine: keystone
59 host: 127.0.0.1
60 port: 35357
61 token: token
62 password: password
63 network:
64 engine: neutron
65 host: 127.0.0.1
66 port: 9696
67 config:
68 version: 2.2
69 enabled: true
70 network:
71 engine: neutron
72 host: 127.0.0.1
73 port: 9696
74 discovery:
75 host: 127.0.0.1
76 analytics:
77 host: 127.0.0.1
78 bind:
79 address: 127.0.0.1
80 message_queue:
81 engine: rabbitmq
82 host: 127.0.0.1
83 port: 5672
84 database:
85 members:
86 - host: 127.0.0.1
87 port: 9160
88 cache:
Jakub Pavlikd1a059e2016-07-13 23:08:33 +020089 members:
90 - host: 127.0.0.1
91 port: 11211
Jiri Konecny463dee52016-03-03 11:08:46 +010092 identity:
93 engine: keystone
94 version: '2.0'
95 region: RegionOne
96 host: 127.0.0.1
97 port: 35357
98 user: admin
99 password: password
100 token: token
101 tenant: admin
102 members:
103 - host: 127.0.0.1
104 id: 1
Dmitry Stremkovskiy841fee32017-09-01 18:08:41 +0300105 rootlogger: "INFO, CONSOLE"
Jiri Konecny463dee52016-03-03 11:08:46 +0100106 control:
107 version: 2.2
108 enabled: true
109 bind:
110 address: 127.0.0.1
111 discovery:
112 host: 127.0.0.1
113 master:
114 host: 127.0.0.1
115 members:
116 - host: 127.0.0.1
117 id: 1
118 collector:
119 version: 2.2
120 enabled: true
121 bind:
122 address: 127.0.0.1
123 master:
124 host: 127.0.0.1
125 discovery:
126 host: 127.0.0.1
127 data_ttl: 2
128 database:
129 members:
130 - host: 127.0.0.1
131 port: 9160
132 database:
133 version: 2.2
134 cassandra:
135 version: 2
136 enabled: true
137 minimum_disk: 10
138 name: 'Contrail'
139 original_token: 0
Dmitry Stremkovskiy2a079c72017-07-12 23:11:18 +0300140 compaction_throughput_mb_per_sec: 16
Dmitry Stremkovskiy71b310a2017-08-11 20:39:11 +0300141 concurrent_compactors: 1
Jiri Konecny463dee52016-03-03 11:08:46 +0100142 data_dirs:
143 - /var/lib/cassandra
144 id: 1
145 discovery:
146 host: 127.0.0.1
147 bind:
148 host: 127.0.0.1
149 port: 9042
150 rpc_port: 9160
151 members:
152 - host: 127.0.0.1
153 id: 1
154 web:
155 version: 2.2
156 enabled: True
157 bind:
158 address: 127.0.0.1
159 analytics:
160 host: 127.0.0.1
161 master:
162 host: 127.0.0.1
163 cache:
164 engine: redis
165 host: 127.0.0.1
166 port: 6379
167 members:
168 - host: 127.0.0.1
169 id: 1
170 identity:
171 engine: keystone
172 version: '2.0'
173 host: 127.0.0.1
174 port: 35357
175 user: admin
176 password: password
177 token: token
178 tenant: admin
179
180
181All-in-one cluster
182~~~~~~~~~~~~~~~~~~
183
Jakub Pavlik01fe5372016-05-20 11:23:28 +0200184Config, control, analytics, database, web -- altogether, clustered on multiple
185nodes.
Jiri Konecny463dee52016-03-03 11:08:46 +0100186
187.. code-block:: yaml
188
189 opencontrail:
190 common:
191 version: 2.2
192 source:
193 engine: pkg
194 address: http://mirror.robotice.cz/contrail-havana/
195 identity:
196 engine: keystone
197 host: 127.0.0.1
198 port: 35357
199 token: token
200 password: password
201 network:
202 engine: neutron
203 host: 127.0.0.1
204 port: 9696
205 config:
206 version: 2.2
207 enabled: true
208 network:
209 engine: neutron
210 host: 127.0.0.1
211 port: 9696
212 discovery:
213 host: 127.0.0.1
214 analytics:
215 host: 127.0.0.1
216 bind:
217 address: 127.0.0.1
218 message_queue:
219 engine: rabbitmq
220 host: 127.0.0.1
221 port: 5672
222 database:
223 members:
224 - host: 127.0.0.1
225 port: 9160
226 - host: 127.0.0.1
227 port: 9160
228 - host: 127.0.0.1
229 port: 9160
230 cache:
Jakub Pavlikd1a059e2016-07-13 23:08:33 +0200231 members:
232 - host: 127.0.0.1
233 port: 11211
234 - host: 127.0.0.1
235 port: 11211
236 - host: 127.0.0.1
237 port: 11211
Jiri Konecny463dee52016-03-03 11:08:46 +0100238 identity:
239 engine: keystone
240 version: '2.0'
241 region: RegionOne
242 host: 127.0.0.1
243 port: 35357
244 user: admin
245 password: password
246 token: token
247 tenant: admin
248 members:
249 - host: 127.0.0.1
250 id: 1
251 - host: 127.0.0.1
252 id: 2
253 - host: 127.0.0.1
254 id: 3
255 control:
256 version: 2.2
257 enabled: true
258 bind:
259 address: 127.0.0.1
260 discovery:
261 host: 127.0.0.1
262 master:
263 host: 127.0.0.1
264 members:
265 - host: 127.0.0.1
266 id: 1
267 - host: 127.0.0.1
268 id: 2
269 - host: 127.0.0.1
270 id: 3
271 collector:
272 version: 2.2
273 enabled: true
274 bind:
275 address: 127.0.0.1
276 master:
277 host: 127.0.0.1
278 discovery:
279 host: 127.0.0.1
280 data_ttl: 1
281 database:
282 members:
283 - host: 127.0.0.1
284 port: 9160
285 - host: 127.0.0.1
286 port: 9160
287 - host: 127.0.0.1
288 port: 9160
289 database:
290 version: 2.2
291 cassandra:
292 version: 2
293 enabled: true
294 name: 'Contrail'
295 minimum_disk: 10
296 original_token: 0
297 data_dirs:
298 - /var/lib/cassandra
299 id: 1
300 discovery:
301 host: 127.0.0.1
302 bind:
303 host: 127.0.0.1
304 port: 9042
305 rpc_port: 9160
306 members:
307 - host: 127.0.0.1
308 id: 1
309 - host: 127.0.0.1
310 id: 2
311 - host: 127.0.0.1
312 id: 3
313 web:
314 version: 2.2
315 enabled: True
316 bind:
317 address: 127.0.0.1
318 master:
319 host: 127.0.0.1
320 analytics:
321 host: 127.0.0.1
322 cache:
323 engine: redis
324 host: 127.0.0.1
325 port: 6379
326 members:
327 - host: 127.0.0.1
328 id: 1
329 - host: 127.0.0.1
330 id: 2
331 - host: 127.0.0.1
332 id: 3
333 identity:
334 engine: keystone
335 version: '2.0'
336 host: 127.0.0.1
337 port: 35357
338 user: admin
339 password: password
340 token: token
341 tenant: admin
342
343
344Separated analytics from control and config
345~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
346
347Config, control, database, web.
348
349.. code-block:: yaml
350
351 opencontrail:
352 common:
353 version: 2.2
354 identity:
355 engine: keystone
356 host: 127.0.0.1
357 port: 35357
358 token: token
359 password: password
360 network:
361 engine: neutron
362 host: 127.0.0.1
363 port: 9696
364 config:
365 version: 2.2
366 enabled: true
367 network:
368 engine: neutron
369 host: 127.0.0.1
370 port: 9696
371 discovery:
372 host: 127.0.0.1
373 analytics:
374 host: 127.0.0.1
375 bind:
376 address: 127.0.0.1
377 message_queue:
378 engine: rabbitmq
379 host: 127.0.0.1
380 port: 5672
381 database:
382 members:
383 - host: 127.0.0.1
384 port: 9160
385 - host: 127.0.0.1
386 port: 9160
387 - host: 127.0.0.1
388 port: 9160
389 cache:
Jakub Pavlikd1a059e2016-07-13 23:08:33 +0200390 members:
391 - host: 127.0.0.1
392 port: 11211
393 - host: 127.0.0.1
394 port: 11211
395 - host: 127.0.0.1
396 port: 11211
Jiri Konecny463dee52016-03-03 11:08:46 +0100397 identity:
398 engine: keystone
399 version: '2.0'
400 region: RegionOne
401 host: 127.0.0.1
402 port: 35357
403 user: admin
404 password: password
405 token: token
406 tenant: admin
407 members:
408 - host: 127.0.0.1
409 id: 1
410 - host: 127.0.0.1
411 id: 2
412 - host: 127.0.0.1
413 id: 3
414 control:
415 version: 2.2
416 enabled: true
417 bind:
418 address: 127.0.0.1
419 discovery:
420 host: 127.0.0.1
421 master:
422 host: 127.0.0.1
423 members:
424 - host: 127.0.0.1
425 id: 1
426 - host: 127.0.0.1
427 id: 2
428 - host: 127.0.0.1
429 id: 3
430 database:
431 version: 127.0.0.1
432 cassandra:
433 version: 2
434 enabled: true
435 name: 'Contrail'
436 minimum_disk: 10
437 original_token: 0
438 data_dirs:
439 - /var/lib/cassandra
440 id: 1
441 discovery:
442 host: 127.0.0.1
443 bind:
444 host: 127.0.0.1
445 port: 9042
446 rpc_port: 9160
447 members:
448 - host: 127.0.0.1
449 id: 1
450 - host: 127.0.0.1
451 id: 2
452 - host: 127.0.0.1
453 id: 3
454 web:
455 version: 2.2
456 enabled: True
457 bind:
458 address: 127.0.0.1
459 analytics:
460 host: 127.0.0.1
461 master:
462 host: 127.0.0.1
463 cache:
464 engine: redis
465 host: 127.0.0.1
466 port: 6379
467 members:
468 - host: 127.0.0.1
469 id: 1
470 - host: 127.0.0.1
471 id: 2
472 - host: 127.0.0.1
473 id: 3
474 identity:
475 engine: keystone
476 version: '2.0'
477 host: 127.0.0.1
478 port: 35357
479 user: admin
480 password: password
481 token: token
482 tenant: admin
483
Jiri Konecny463dee52016-03-03 11:08:46 +0100484Analytic nodes
Jiri Konecny463dee52016-03-03 11:08:46 +0100485
486Analytics and database on an analytic node(s)
487
488.. code-block:: yaml
489
490 opencontrail:
491 common:
492 version: 2.2
493 identity:
494 engine: keystone
495 host: 127.0.0.1
496 port: 35357
497 token: token
498 password: password
499 network:
500 engine: neutron
501 host: 127.0.0.1
502 port: 9696
503 collector:
504 version: 2.2
505 enabled: true
506 bind:
507 address: 127.0.0.1
508 master:
509 host: 127.0.0.1
510 discovery:
511 host: 127.0.0.1
512 data_ttl: 1
513 database:
514 members:
515 - host: 127.0.0.1
516 port: 9160
517 - host: 127.0.0.1
518 port: 9160
519 - host: 127.0.0.1
520 port: 9160
521 database:
522 version: 2.2
523 cassandra:
524 version: 2
525 enabled: true
526 name: 'Contrail'
527 minimum_disk: 10
528 original_token: 0
529 data_dirs:
530 - /var/lib/cassandra
531 id: 1
532 discovery:
533 host: 127.0.0.1
534 bind:
535 host: 127.0.0.1
536 port: 9042
537 rpc_port: 9160
538 members:
539 - host: 127.0.0.1
540 id: 1
541 - host: 127.0.0.1
542 id: 2
543 - host: 127.0.0.1
544 id: 3
545
546
547Compute nodes
Aleš Komáreka3314b22017-04-11 13:46:06 +0200548-------------
Jiri Konecny463dee52016-03-03 11:08:46 +0100549
550Vrouter configuration on a compute node(s)
551
552.. code-block:: yaml
553
554 opencontrail:
555 common:
556 version: 2.2
557 identity:
558 engine: keystone
559 host: 127.0.0.1
560 port: 35357
561 token: token
562 password: password
563 network:
564 engine: neutron
565 host: 127.0.0.1
566 port: 9696
567 compute:
568 version: 2.2
569 enabled: True
Dmitry Stremkovskiy0cb5c562017-07-26 00:32:51 +0300570 hostname: node-12.domain.tld
Jiri Konecny463dee52016-03-03 11:08:46 +0100571 discovery:
572 host: 127.0.0.1
573 interface:
574 address: 127.0.0.1
575 dev: eth0
576 gateway: 127.0.0.1
577 mask: /24
578 dns: 127.0.0.1
579 mtu: 9000
580
Petr Jediný5f3008a2017-07-31 15:04:05 +0200581
582Compute nodes with gateway_mode
583-------------------------------
584
585Gateway mode: can be server/ vcpe (default is none)
586
587.. code-block:: yaml
588
589 opencontrail:
590 compute:
591 gateway_mode: server
592
593
Jakub Pavlik735005f2016-02-26 15:54:53 +0100594Keystone v3
Aleš Komáreka3314b22017-04-11 13:46:06 +0200595-----------
Jakub Pavlik735005f2016-02-26 15:54:53 +0100596
Jakub Pavlik01fe5372016-05-20 11:23:28 +0200597To enable support for keystone v3 in opencontrail, there must be defined
598version for config and web role.
Jakub Pavlik735005f2016-02-26 15:54:53 +0100599
600.. code-block:: yaml
601
602 opencontrail:
603 config:
604 version: 2.2
605 enabled: true
606 ...
607 identity:
608 engine: keystone
609 version: '3'
610 ...
611
612 opencontrail:
613 web:
614 version: 2.2
615 enabled: true
616 ...
617 identity:
618 engine: keystone
619 version: '3'
620 ...
621
marco10cc2212016-04-03 14:21:54 +0200622Without Keystone
623----------------
624
625.. code-block:: yaml
626
627 opencontrail:
628 ...
629 common:
630 ...
631 identity:
632 engine: none
633 token: none
634 password: none
635 ...
636 config:
637 ...
638 identity:
639 engine: none
640 password: none
641 token: none
642 ...
643 web:
644 ...
645 identity:
646 engine: none
647 password: none
648 token: none
649 ...
marcof5461712016-04-04 20:49:36 +0200650
Aleš Komáreka3314b22017-04-11 13:46:06 +0200651Kubernetes support
652------------------
653
marcof5461712016-04-04 20:49:36 +0200654Kubernetes vrouter nodes
marcof5461712016-04-04 20:49:36 +0200655
656Vrouter configuration on a kubernetes node(s)
657
658.. code-block:: yaml
659
660 opencontrail:
661 ...
662 compute:
663 engine: kubernetes
664 ...
665
Jakub Pavlik0d1f67e2016-11-30 10:04:13 +0100666vRouter with separated control plane
Jakub Pavlik0d1f67e2016-11-30 10:04:13 +0100667
668Separate XMPP traffic from dataplane interface.
669
670.. code-block:: yaml
671
672 opencontrail:
673 compute:
674 bind:
675 address: 172.16.0.50
676 ...
677
Petr Jediný439fab32017-07-10 14:33:09 +0200678Override RPF default in Contrail API
679------------------------------------
680
681From MCP1.1 with OpenContrail >= 3.1.1 you can override RPF default for newly
682created virtual networks. This can be useful for usecases like running
683Calico and K8S in overlay. The `override_rpf_default_by` has valid values
684`disable`, `enable`. If not defined, the configuration fallbacks to Contrail
685default - currently `enable`.
686
687.. code-block:: yaml
688
689 opencontrail:
690 ...
691 config:
692 override_rpf_default_by: 'disable'
693 ...
694
695
Jakub Pavlik6d90f362016-04-19 20:34:37 +0200696Disable Contrail API authentication
697-----------------------------------
698
Petr Jediný78e6f422017-06-01 13:24:49 +0200699Contrail version must >= 3.0. It is useful especially for Keystone v3.
Jakub Pavlik6d90f362016-04-19 20:34:37 +0200700
701.. code-block:: yaml
702
703 opencontrail:
704 ...
705 config:
706 multi_tenancy: false
707 ...
708
Petr Jediný78e6f422017-06-01 13:24:49 +0200709Switch from on demand to periodic keystone sync
710-----------------------------------------------
711
712This can be useful when you want to sync projects from OpenStack to Contrail
713automatically. The period of sync is 60s.
714
715.. code-block:: yaml
716
717 opencontrail:
718 ...
719 config:
720 identity:
721 sync_on_demand: false
722 ...
723
marco2502e052016-05-31 22:53:54 +0200724Cassandra listen interface
Petr Jedinýffbe2082017-03-07 00:56:47 +0100725--------------------------
marco2502e052016-05-31 22:53:54 +0200726
727.. code-block:: yaml
728
729 database:
730 ....
731 bind:
732 interface: eth0
733 port: 9042
734 rpc_port: 9160
735 ....
Jakub Pavlik6d90f362016-04-19 20:34:37 +0200736
Petr Jedinýffbe2082017-03-07 00:56:47 +0100737OpenContrail WebUI version >= 3.1.1
738-----------------------------------
Petr Jediný78e6f422017-06-01 13:24:49 +0200739For OpenContrail version >= 3.1.1 and Cassandra >= 2.1 we should override WebUI's cassandra port from 9160 to 9042.
Petr Jedinýffbe2082017-03-07 00:56:47 +0100740
741For appropriate node at class level:
742
743.. code-block:: yaml
Aleš Komáreka3314b22017-04-11 13:46:06 +0200744
Petr Jedinýffbe2082017-03-07 00:56:47 +0100745 opencontrail:
746 ....
747 web:
748 database:
749 port: 9042
750 ....
751
752
Jakub Pavlik9a4de012016-12-14 13:23:55 +0100753RabbitMQ HA hosts
754------------------
755
756.. code-block:: yaml
757
758 opencontrail:
759 config:
760 message_queue:
761 engine: rabbitmq
762 members:
763 - host: 10.0.16.1
764 - host: 10.0.16.2
765 - host: 10.0.16.3
766 port: 5672
767
768.. code-block:: yaml
769
770 database:
771 ....
772 bind:
773 interface: eth0
774 port: 9042
775 rpc_port: 9160
776 ....
777
Jakub Pavlike3590062017-02-20 23:32:57 +0100778DPDK vRouter
779-------------
780
781.. code-block:: yaml
782
783 opencontrail:
784 compute:
785 dpdk:
786 enabled: true
Jakub Pavlik54761d82017-03-08 11:22:37 +0100787 taskset: "0x0000003C00003C"
788 socket_mem: "1024,1024"
Jakub Pavlike3590062017-02-20 23:32:57 +0100789 interface:
790 mac_address: 90:e2:ba:7c:22:e1
791 pci: 0000:81:00.1
792 ...
793
Ales Komarekad46d2e2017-03-09 17:16:38 +0100794Contrail client
795---------------
796
797Basic parameters with identity and host configs
798
Petr Jediný78e6f422017-06-01 13:24:49 +0200799.. code-block:: yaml
Ales Komarekad46d2e2017-03-09 17:16:38 +0100800
801 opencontrail:
802 client:
803 identity:
804 user: admin
805 project: admin
806 password: adminpass
807 host: keystone_host
808 config:
809 host: contrail_api_host
810 port: contrail_api_ort
811
812Enforcing virtual routers
813
Petr Jediný78e6f422017-06-01 13:24:49 +0200814.. code-block:: yaml
Ales Komarekad46d2e2017-03-09 17:16:38 +0100815
816 opencontrail:
817 client:
818 ...
819 virtual_router:
820 cmp01:
821 ip_address: 172.16.0.11
822 dpdk_enabled: True
823 cmp02:
824 ip_address: 172.16.0.12
825 dpdk_enabled: True
826
827Enforcing control nodes
828
Petr Jediný78e6f422017-06-01 13:24:49 +0200829.. code-block:: yaml
Ales Komarekad46d2e2017-03-09 17:16:38 +0100830
831 opencontrail:
832 client:
833 ...
834 bgp_router:
835 ntw01:
836 type: control-node
837 ip_address: 172.16.0.11
838 nwt02:
839 type: control-node
840 ip_address: 172.16.0.12
841 nwt03:
842 type: control-node
843 ip_address: 172.16.0.13
844
845
846Enforcing edge BGP routers
847
Petr Jediný78e6f422017-06-01 13:24:49 +0200848.. code-block:: yaml
Ales Komarekad46d2e2017-03-09 17:16:38 +0100849
850 opencontrail:
851 client:
852 ...
853 bgp_router:
854 mx01:
855 type: router
856 ip_address: 172.16.0.21
857 asn: 64512
858 mx02:
859 type: router
860 ip_address: 172.16.0.22
861 asn: 64512
862
863Enforcing config nodes
864
Petr Jediný78e6f422017-06-01 13:24:49 +0200865.. code-block:: yaml
Ales Komarekad46d2e2017-03-09 17:16:38 +0100866
867 opencontrail:
868 client:
869 ...
870 config_node:
871 ctl01:
872 ip_address: 172.16.0.21
873 ctl02:
874 ip_address: 172.16.0.22
875
876Enforcing database nodes
877
Petr Jediný78e6f422017-06-01 13:24:49 +0200878.. code-block:: yaml
Ales Komarekad46d2e2017-03-09 17:16:38 +0100879
880 opencontrail:
881 client:
882 ...
883 database_node:
884 ntw01:
885 ip_address: 172.16.0.21
886 ntw02:
887 ip_address: 172.16.0.22
888
889Enforcing analytics nodes
890
Petr Jediný78e6f422017-06-01 13:24:49 +0200891.. code-block:: yaml
Ales Komarekad46d2e2017-03-09 17:16:38 +0100892
893 opencontrail:
894 client:
895 ...
896 analytics_node:
897 nal01:
898 ip_address: 172.16.0.31
899 nal02:
900 ip_address: 172.16.0.32
901
Petr Jediný5f3efe32017-05-26 17:55:09 +0200902Enforcing Link Local Services
903
904.. code-block:: yaml
905
906 opencontrail:
907 client:
908 ...
909 linklocal_service:
910 # example with dns name address (only one permited)
911 meta1:
912 lls_ip: 10.0.0.23
913 lls_port: 80
914 ipf_addresses: "meta.example.com"
915 ipf_port: 80
916 # example with multiple ip addresses
917 meta2:
918 lls_ip: 10.0.0.23
919 lls_port: 80
920 ipf_addresses:
921 - 10.10.10.10
922 - 10.20.20.20
923 - 10.30.30.30
924 ipf_port: 80
925 # example with one ip address
926 meta3:
927 lls_ip: 10.0.0.23
928 lls_port: 80
929 ipf_addresses:
930 - 10.10.10.10
931 ipf_port: 80
932 # example with name override
933 lls_meta4:
934 name: meta4
935 lls_ip: 10.0.0.23
936 lls_port: 80
937 ipf_addresses:
938 - 10.10.10.10
939 ipf_port: 80
940
Ales Komarekad46d2e2017-03-09 17:16:38 +0100941
Filip Pytloun27930402015-10-06 16:28:32 +0200942Usage
943=====
944
945Basic installation
Ales Komarekad46d2e2017-03-09 17:16:38 +0100946------------------
Filip Pytloun27930402015-10-06 16:28:32 +0200947
948Add control BGP
Ales Komarekad46d2e2017-03-09 17:16:38 +0100949
950.. code-block:: bash
Filip Pytloun27930402015-10-06 16:28:32 +0200951
952 python /etc/contrail/provision_control.py --api_server_ip 192.168.1.11 --api_server_port 8082 --host_name network1.contrail.domain.com --host_ip 192.168.1.11 --router_asn 64512
953
Ales Komarekad46d2e2017-03-09 17:16:38 +0100954Install compute node
Filip Pytloun27930402015-10-06 16:28:32 +0200955
Ales Komarekad46d2e2017-03-09 17:16:38 +0100956.. code-block:: bash
Filip Pytloun27930402015-10-06 16:28:32 +0200957
958 yum install contrail-vrouter contrail-openstack-vrouter
959
960 salt-call state.sls nova,opencontrail
961
962Add virtual router
Filip Pytloun27930402015-10-06 16:28:32 +0200963
Ales Komarekad46d2e2017-03-09 17:16:38 +0100964.. code-block:: bash
Filip Pytloun27930402015-10-06 16:28:32 +0200965
966 python /etc/contrail/provision_vrouter.py --host_name hostnode1.intra.domain.com --host_ip 10.0.100.101 --api_server_ip 10.0.100.30 --oper add --admin_user admin --admin_password cloudlab --admin_tenant_name admin
967
968 /etc/sysconfig/network-scripts/ifcfg-bond0 -- comment GATEWAY,NETMASK,IPADDR
969
970 reboot
971
Aleš Komáreka3314b22017-04-11 13:46:06 +0200972Debugging
973---------
Filip Pytloun27930402015-10-06 16:28:32 +0200974
975Display vhost XMPP connection status
976
977You should see the correct controller_ip and state should be established.
978
979 http://<compute-node>:8085/Snh_AgentXmppConnectionStatusReq?
980
981Display vrouter interface status
982
983When vrf_name = ---ERROR--- then something goes wrong
984
985 http://<compute-node>:8085/Snh_ItfReq?name=
986
987Display IF MAP table
988
989Look for neighbours, if VM has 2, it's ok
990
991 http://<control-node>:8083/Snh_IFMapTableShowReq?table_name=
992
993Trace XMPP requests
994
995 http://<compute-node>:8085/Snh_SandeshTraceRequest?x=XmppMessageTrace
996
Filip Pytlounf6b79d42017-02-02 13:02:03 +0100997
998Documentation and Bugs
999======================
1000
1001To learn how to install and update salt-formulas, consult the documentation
1002available online at:
1003
1004 http://salt-formulas.readthedocs.io/
1005
1006In the unfortunate event that bugs are discovered, they should be reported to
1007the appropriate issue tracker. Use Github issue tracker for specific salt
1008formula:
1009
1010 https://github.com/salt-formulas/salt-formula-opencontrail/issues
1011
1012For feature requests, bug reports or blueprints affecting entire ecosystem,
1013use Launchpad salt-formulas project:
1014
1015 https://launchpad.net/salt-formulas
1016
1017You can also join salt-formulas-users team and subscribe to mailing list:
1018
1019 https://launchpad.net/~salt-formulas-users
1020
1021Developers wishing to work on the salt-formulas projects should always base
1022their work on master branch and submit pull request against specific formula.
1023
1024 https://github.com/salt-formulas/salt-formula-opencontrail
1025
1026Any questions or feedback is always welcome so feel free to join our IRC
1027channel:
1028
1029 #salt-formulas @ irc.freenode.net