default_network.yml 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. - name: Contiv | Set arp mode to flood if ACI
  11. command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" global set --arp-mode flood'
  12. when: contiv_fabric_mode == "aci"
  13. - name: Contiv | Check if default-net exists
  14. command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" net ls'
  15. register: net_result
  16. - name: Contiv | Create default-net
  17. 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'
  18. when: net_result.stdout.find("default-net") == -1
  19. - name: Contiv | Create host access infra network for VxLan routing case
  20. command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" net create --subnet={{ contiv_h1_subnet_default }} --gateway={{ contiv_h1_gw_default }} --nw-type="infra" contivh1'
  21. when: (contiv_encap_mode == "vxlan") and (netplugin_fwd_mode == "routing")
  22. #- name: Contiv | Create an allow-all policy for the default-group
  23. # command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" policy create ose-allow-all-policy'
  24. # when: contiv_fabric_mode == "aci"
  25. - name: Contiv | Set up aci external contract to consume default external contract
  26. command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" external-contracts create -c -a {{ apic_default_external_contract }} oseExtToConsume'
  27. when: (contiv_fabric_mode == "aci") and (apic_configure_default_policy == true)
  28. - name: Contiv | Set up aci external contract to provide default external contract
  29. command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" external-contracts create -p -a {{ apic_default_external_contract }} oseExtToProvide'
  30. when: (contiv_fabric_mode == "aci") and (apic_configure_default_policy == true)
  31. - name: Contiv | Create aci default-group
  32. command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" group create default-net default-group'
  33. when: contiv_fabric_mode == "aci"
  34. - name: Contiv | Add external contracts to the default-group
  35. command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" group create -e oseExtToConsume -e oseExtToProvide default-net default-group'
  36. when: (contiv_fabric_mode == "aci") and (apic_configure_default_policy == true)
  37. #- name: Contiv | Add policy rule 1 for allow-all policy
  38. # command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" policy rule-add -d in --action allow ose-allow-all-policy 1'
  39. # when: contiv_fabric_mode == "aci"
  40. #- name: Contiv | Add policy rule 2 for allow-all policy
  41. # command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" policy rule-add -d out --action allow ose-allow-all-policy 2'
  42. # when: contiv_fabric_mode == "aci"
  43. - name: Contiv | Create default aci app profile
  44. command: 'netctl --netmaster "http://{{ inventory_hostname }}:{{ netmaster_port }}" app-profile create -g default-group {{ apic_default_app_profile }}'
  45. when: contiv_fabric_mode == "aci"