Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Choose external network while creating a new network #243

Open
lorenzotomasini opened this issue Dec 18, 2017 · 0 comments
Open

Choose external network while creating a new network #243

lorenzotomasini opened this issue Dec 18, 2017 · 0 comments
Assignees
Projects
Milestone

Comments

@lorenzotomasini
Copy link
Member

While creating a new network, in any OpenStack scenario, there is no way to specify which external network should be used as "externalGateway", in the openstack plugin code:

log.info("Create Router on " + vimInstance.getName());
    return os.networking()
        .router()
        .create(
            Builders.router()
                .name("openbaton-router")
                .adminStateUp(true)
                .externalGateway(getExternalNet(vimInstance).getExtId())
                .build());

Thus we need to extend the model and add a field in the Network/Subnet class in order to be able to make that choice.

+ @RuthDevlaeminck

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Open Baton
Awaiting triage
Development

No branches or pull requests

1 participant