default_network.yml 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. ---
  2. - name: Contiv | Wait for netmaster
  3. command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" tenant ls'
  4. register: tenant_result
  5. until: tenant_result.stdout.find("default") != -1
  6. retries: 9
  7. delay: 10
  8. - name: Contiv | Set globals
  9. command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" global set --fabric-mode {{ contiv_fabric_mode }} --vlan-range {{ contiv_vlan_range }} --fwd-mode {{ netplugin_fwd_mode }} --private-subnet {{ contiv_private_ext_subnet }}'
  10. run_once: true
  11. - name: Contiv | Set arp mode to flood if ACI
  12. command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" global set --arp-mode flood'
  13. when: contiv_fabric_mode == "aci"
  14. run_once: true
  15. - name: Contiv | Check if default-net exists
  16. command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" net ls'
  17. register: net_result
  18. run_once: true
  19. - name: Contiv | Create default-net
  20. command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" net create --subnet={{ contiv_default_subnet }} -e {{ contiv_encap_mode }} -p {{ contiv_default_network_tag }} --gateway {{ contiv_default_gw }} default-net'
  21. when: net_result.stdout.find("default-net") == -1
  22. run_once: true
  23. - name: Contiv | Create host access infra network for VxLan routing case
  24. command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" net create --subnet={{ contiv_h1_subnet_default }} --gateway={{ contiv_h1_gw_default }} --nw-type="infra" contivh1'
  25. when: (contiv_encap_mode == "vxlan") and (netplugin_fwd_mode == "routing")
  26. run_once: true
  27. #- name: Contiv | Create an allow-all policy for the default-group
  28. # command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" policy create ose-allow-all-policy'
  29. # when: contiv_fabric_mode == "aci"
  30. # run_once: true
  31. - name: Contiv | Set up aci external contract to consume default external contract
  32. command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" external-contracts create -c -a {{ apic_default_external_contract }} oseExtToConsume'
  33. when: (contiv_fabric_mode == "aci") and (apic_configure_default_policy == true)
  34. run_once: true
  35. - name: Contiv | Set up aci external contract to provide default external contract
  36. command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" external-contracts create -p -a {{ apic_default_external_contract }} oseExtToProvide'
  37. when: (contiv_fabric_mode == "aci") and (apic_configure_default_policy == true)
  38. run_once: true
  39. - name: Contiv | Create aci default-group
  40. command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" group create default-net default-group'
  41. when: contiv_fabric_mode == "aci"
  42. run_once: true
  43. - name: Contiv | Add external contracts to the default-group
  44. command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" group create -e oseExtToConsume -e oseExtToProvide default-net default-group'
  45. when: (contiv_fabric_mode == "aci") and (apic_configure_default_policy == true)
  46. run_once: true
  47. #- name: Contiv | Add policy rule 1 for allow-all policy
  48. # command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" policy rule-add -d in --action allow ose-allow-all-policy 1'
  49. # when: contiv_fabric_mode == "aci"
  50. # run_once: true
  51. #- name: Contiv | Add policy rule 2 for allow-all policy
  52. # command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" policy rule-add -d out --action allow ose-allow-all-policy 2'
  53. # when: contiv_fabric_mode == "aci"
  54. # run_once: true
  55. - name: Contiv | Create default aci app profile
  56. command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" app-profile create -g default-group {{ apic_default_app_profile }}'
  57. when: contiv_fabric_mode == "aci"
  58. run_once: true