Forge Home

scaleio_openstack

UNKNOWN

36,838 downloads

6,990 latest version

3.5 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 1.2.2 (latest)
  • 1.2.1
  • 1.2.0
  • 1.1.5
  • 1.1.3
  • 1.1.2
  • 1.1.1
  • 1.1.0
  • 1.0.32 (deleted)
  • 1.0.31
  • 1.0.30 (deleted)
  • 1.0.29 (deleted)
  • 1.0.28 (deleted)
  • 1.0.27 (deleted)
  • 1.0.26 (deleted)
  • 1.0.25 (deleted)
  • 1.0.24 (deleted)
  • 1.0.23 (deleted)
  • 1.0.22 (deleted)
  • 1.0.21 (deleted)
  • 1.0.20 (deleted)
  • 1.0.19 (deleted)
  • 1.0.18 (deleted)
  • 1.0.17 (deleted)
  • 1.0.16 (deleted)
  • 1.0.15 (deleted)
  • 1.0.14 (deleted)
  • 1.0.13 (deleted)
  • 1.0.12 (deleted)
  • 1.0.11 (deleted)
  • 1.0.10 (deleted)
  • 1.0.9 (deleted)
  • 1.0.8 (deleted)
  • 1.0.7 (deleted)
  • 1.0.6 (deleted)
  • 1.0.5 (deleted)
  • 1.0.4 (deleted)
  • 1.0.3 (deleted)
  • 1.0.2 (deleted)
  • 1.0.1 (deleted)
  • 1.0.0 (deleted)
  • 0.4.3
  • 0.4.2
  • 0.4.1
  • 0.4.0
  • 0.3.20
  • 0.3.19
  • 0.3.18
  • 0.3.17
  • 0.3.16
  • 0.3.15
  • 0.3.14
  • 0.3.13
  • 0.3.12
  • 0.3.11
  • 0.3.10
  • 0.3.9
  • 0.3.8
  • 0.3.7
  • 0.3.6
  • 0.3.5
  • 0.3.4
  • 0.3.3
  • 0.3.2
  • 0.3.1
  • 0.3.0
  • 0.2.12
  • 0.2.11
  • 0.2.10
  • 0.2.9
  • 0.2.8
  • 0.2.7
  • 0.2.6
  • 0.2.5
  • 0.2.4
  • 0.2.3
  • 0.2.2
  • 0.2.1
  • 0.1.31
released Jan 9th 2017
This version is compatible with:
  • Puppet Enterprise 2023.5.x, 2023.4.x, 2023.3.x, 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x, 2019.8.x, 2019.7.x, 2019.5.x, 2019.4.x, 2019.3.x, 2019.2.x, 2019.1.x, 2019.0.x, 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
  • Puppet >= 3.7.4
  • , ,

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'cloudscaling-scaleio_openstack', '1.2.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add cloudscaling-scaleio_openstack
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install cloudscaling-scaleio_openstack --version 1.2.2

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

cloudscaling/scaleio_openstack — version 1.2.2 Jan 9th 2017

ScaleIO for OpenStack plugin

Overview

A Puppet module that updates OpenStack to work with ScaleIO 2.0 block storage. Provides supports for volumes and nova ephemeral storages including live migration and resize.

Important: ScaleIO supports only 8gb increases for storage allocation so special flavors for storage in multiples of 8 should be created in OpenStack.

Setup

What Puppet-ScaleIO-Openstack affects

  • Adds rootwrap filters for nova/cinder/glance
  • Modifies nova.conf
  • Patches nova python files
  • Modifies cinder.conf
  • Adds cinder_scaleio.config for Juno and Kilo versions
  • Patches/Adds cinder python files for some versions
  • config-drive=False is set in nova config because config drive live migration is not supported
  • Patches glance.conf
  • Adds glance user to sudoers

Tested with

  • Puppet 3., 4.
  • ScaleIO 2.0+
  • Ubuntu 14.04/16.04, Centos 6, Centos 7
  • OpenStack Juno, Kilo, Liberty, Mitaka, Newton

Setup Requirements

Requires nova-compute and/or cinder installed on the node along with ScaleIO SDC. Also ScaleIO SDC must be installed on glance controller node if cinder with ScaleIO backend is used for glance store.

Beginning with scaleio

puppet module install cloudscaling-scaleio_openstack

Structure and specifics

There are 3 manifests to use:

  • cinder.pp - installs scaleio cinder driver, updates cinder services configurations and notifies services
  • nova.pp - installs scaleio nova driver and notify nova service
  • glance.pp - configures glance to use cinder as default store

Common code:

  • nova_common.pp - common patching and configuration of nova for all versions of OpenStack
  • init.pp - utility functions
  • and some internal manifests...

Files:

  • juno, kilo, liberty, mitaka, newton
  • for cinder, nova and glance

Usage example

class {'scaleio_openstack::cinder':
  ensure              => present,
  gateway_ip          => '192.168.1.10',
  gateway_port        => 4443,
  gateway_user        => 'admin',
  gateway_password    => 'admin',
}

class {'scaleio_openstack::nova':
  ensure           => present,
  gateway_user     => 'admin',
  gateway_password => 'password',
  gateway_ip       => '1.2.3.4',
  gateway_port     => 4443,
}

class {'scaleio_openstack::glance':
  ensure => present,
}

class {'scaleio_openstack::volume_type':
  ensure              => present,
  protection_domains  => ['pd1', 'pd1', pd2, pd2],
  storage_pools       => ['sp1', 'sp2', sp1, sp2],
  provisioning        => ['thin', 'thick', 'thin', 'thick'],
  os_password         => 'admin',
  os_tenant_name      => 'services',
  os_username         => 'admin',
  os_auth_url         => 'http://127.0.0.1:5000/v2.0/'
}

Nova and cinder extensions

  1. ScaleIO ephemeral storage backend for nova is supported (see README here https://github.com/codedellemc/nova-scaleio-ephemeral )

  2. Volume type QoS additions. The user can specify those in order to get QoS correlated with the volume size. The driver will always choose the minimum between the scaling QoS keys and the pertinent maximum limitation key: sio:iops_limit, sio:bandwidth_limit:

  • sio:iops_per_gb
  • sio:bandwidth_per_gb
  1. Cinder configuration addition:
  • provisioning_type for Juno and Kilo (thin or thick)
  • san_thin_provision for Liberty and later (true or false)

Contact information