omni:master

Last commit made on 2019-09-26
Get this branch:
git clone -b master https://git.launchpad.net/omni

Branch merges

Branch information

Name:
master
Repository:
lp:omni

Recent commits

9f3532c... by Jim Rollenhagen

Retire github mirror, repo moved to opendev

bc94150... by Ian Wienand

Replace openstack.org git:// URLs with https://

This is a mechanically generated change to replace openstack.org
git:// URLs with https:// equivalents.

This is in aid of a planned future move of the git hosting
infrastructure to a self-hosted instance of gitea (https://gitea.io),
which does not support the git wire protocol at this stage.

This update should result in no functional change.

For more information see the thread at

 http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003825.html

Change-Id: I77ef82065c0ae1f6250f46f41840372b01adf541

e7ffe3d... by Pratik Shah

Fixed devstack for AWS

- Moved common functions for clouds in separate file
- Added boto3 dependency in requirements file

Change-Id: I9c93692eed47078c56eb91a247af5729cf56c84c

dda3df3... by lijunjie <email address hidden>

Fix the misspelling of "except"

Change-Id: I0f7246eb5382e94cbb3f761b76e0cd50c03132ff

3fc8b3f... by Harsha Dhake

Added credentials manager and updated omni drivers.

This change:
1. Adds credmanager service which handles credentials for AWS drivers.
2. Adds support for managing multiple AWS accounts through use of credmanager. Each account is mapped to a single project in keystone.
3. Adds support for multiple AZs by running one nova-compute and cinder-volume process per AZ.
4. Improves support for AWS networking in neutron.
5. Also, made few stability fixes in GCP and Azure drivers.

Change-Id: I0f87005a924423397db659ab754caaa6cde90274

14f465f... by Pratik Shah

[AWS] Fixed error while deleting VPC

- Issue: When trying to delete network immediately after deleting VM,
throws "DependencyViolation" error. This is due to security group was
not getting deleted before deleting VPC

Change-Id: I8f1e642819188c56fddcfbb1337b2459c939e7f4

fc2b12b... by Pratik Shah

[AZURE] Added unit test cases for Neutron

Description:
- Added unit test cases
- Fixed a bug which was throwing exception while creating resource group
in mech_azure.py

Change-Id: I4c96d96f96a0ac640407df5ff0d49937f2690fa3

b8c88fb... by Jenkins <email address hidden>

Merge "Replace assertTrue(isinstance()) with assertIsInstance()"

f1e54d1... by lihaijing

Replace assertTrue(isinstance()) with assertIsInstance()

Some of tests use different method of assertTrue(isinstance(A, B))
or assertEqual(type(A), B). The correct way is to use
assertIsInstance(A, B) provided by test tools.
And add some relevant hacking files.

Change-Id: I4b154a2e2898e316c61decf856547d57b1dcc2f8

d407b5f... by Pratik Shah

[AZURE] Added a fix to create resource group in Azure if not present

Change-Id: I8ad06bd32d381573f794c37a577bb6ff2e056efb
Closes-Bug: #1720982