I want to create a bond within my guest VM and trying to understand how to
create my neutron ports without allocating an IP for each VF created.
I just need one IP allocated instead of each VF(neutron port) being
allocated an IP.

I do not see anything within the neutron port api which supports something
like: 'no-ip-allocation;

I am expecting something like the below.. See my made up property under
'sriov_port2'

resources:
  sriov_port1:
    type: OS::Neutron::Port
    properties:
      network: { get_param: my_net }
      vnic_type: direct
  sriov_port2:
    type: OS::Neutron::Port
    properties:
      network: { get_param: my_net }
      vnic_type: direct
      fixed-ip: false
_______________________________________________
Mailing list: http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack
Post to     : openstack@lists.openstack.org
Unsubscribe : http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack

Reply via email to