Commit Graph

5 Commits

Author SHA1 Message Date
Telles Nobrega 92686f5a10 Prepare Sahara core for plugin split
On the effort to make Sahara more user and operators friendly
we are splitting the plugins from Sahara core.

The main goal of this change is to facilitate installation,
maintainance and upgrade of plugins. With the plugins outside
the main Sahara code, operators will be able to install a subset
of plugins, as well as upgrade to newer versions of the plugins
without having to wait for a new version of OpenStack to be
released. As well, it aims to facilitate new contributors to
develop and maintain their own plugins.

Sahara Spec: https://specs.openstack.org/openstack/sahara-specs/specs/rocky/plugins-outside-sahara-core.html

Change-Id: I7ed0945fd82e37daaf6b29f947d3dba06db9d158
2019-01-10 22:18:24 -03:00
Telles Nobrega b6504eee92 Adding Storm 1.2.0 and 1.2.1
Adding new versions of Storm to sahara.

Change-Id: I7f4a96f2dc8cb66468866f77e3d4091d2a8d19d1
2018-07-12 15:18:55 -03:00
Telles Nobrega 17509c3626 Updating plugins status for Rocky
For Rocky we are removing some plugins versions:

- CDH: removing 5.5.0
- MapR: removing 5.1.0
- Spark: removing 1.3.1
- Storm: removing 0.9.2

Also, we are marking some versions as deprecated:

- CDH: deprecating 5.7.0
- Spark: deprecating 1.6.0 and 2.1
- Storm: deprecating 1.0.1

Change-Id: I2dcec1344db4225263be179366eb408d62b9e108
2018-06-13 17:14:46 -03:00
sunyandi b4f0bbb8e9 Replace assertFalse/assertTrue(a in b)
Replace 'assertFalse(a in b)' with 'assertNotIn(a, b)'

Replace 'assertTrue(a in b)' with 'assertIn(a, b)'

[H204] Use assert(Not)Equal to check for equality. Unit test assertions
tend to give better messages for more specific assertions. As a result,
assertEqual(...) is preferred over assertTrue(... == ...), and
assertNotEqual(...) is preferred over assertFalse(... == ...).
Off by default.

see more https://docs.openstack.org/hacking/latest/user/hacking.html

Trivial fix.

Change-Id: Ic21fa755faf218bc1c27dc9c839cf6f99f67d287
2018-01-22 17:20:00 +08:00
Jeremy Freudberg f5b4cbf209 Fix Storm 1.1.0 EDP configs
There's some special configs evidently needed for EDP on Storm version
1.x or greater. This adds those configs to Storm 1.1.0, and ensures
that future versions will never miss these.

Change-Id: I4921c43c5a2d797e3099fc9d87fa652cf5be707b
Closes-Bug: #1717059
2017-10-09 17:58:28 +00:00