You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@jclouds.apache.org by "Ignasi Barrera (JIRA)" <ji...@apache.org> on 2016/06/17 20:47:05 UTC

[jira] [Resolved] (JCLOUDS-1129) Add more interfaces of the same network

     [ https://issues.apache.org/jira/browse/JCLOUDS-1129?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ignasi Barrera resolved JCLOUDS-1129.
-------------------------------------
       Resolution: Fixed
    Fix Version/s: 2.0.0

> Add more interfaces of the same network
> ---------------------------------------
>
>                 Key: JCLOUDS-1129
>                 URL: https://issues.apache.org/jira/browse/JCLOUDS-1129
>             Project: jclouds
>          Issue Type: Improvement
>          Components: jclouds-compute
>    Affects Versions: 1.9.2, 2.0.0
>         Environment: Ubuntu 14.04
>            Reporter: Urban Zaletel
>             Fix For: 2.0.0
>
>
> When I create a new VM, i would like to add more interfaces from the same network, but because implementation uses ImmutableSet instead of List, only the distinct ones are preserved.
> public CreateServerOptions networks(Iterable<String> networks) {
>       this.networks = ImmutableSet.copyOf(networks);
>       return this;
> }
> I can achive the desired with heat, providing the same networks:
> cirros-one-to-four:
>     type: OS::Nova::Server
>     properties:
>       availability_zone: nova
>       flavor: m1.tiny
>       image: TestVM 
>       networks:
>         - network: lkra-mgmt-1
>         - network: lkra-mgmt-2
>         - network: lkra-mgmt-2
>         - network: lkra-mgmt-2
>       user_data_format: RAW
>       user_data: |



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)