Skip to content

Instantly share code, notes, and snippets.

View markmc's full-sized avatar

Mark McLoughlin markmc

View GitHub Profile
@markmc
markmc / gist:5546607
Created May 9, 2013 09:46
nova review stats for the past 90 days using https://github.com/russellb/openstack-stats
Reviews for the last 90 days in nova
** -- nova-core team member
+--------------------------+-----------------------------------+
| Reviewer | Reviews (-2|-1|+1|+2) (+/- ratio) |
+--------------------------+-----------------------------------+
| russellb ** | 493 (57|124|8|304) (63.3%) |
| mikalstill ** | 393 (6|53|4|330) (85.0%) |
| vishvananda ** | 359 (7|28|3|321) (90.3%) |
| klmitch ** | 299 (1|43|0|255) (85.3%) |
| sdague ** | 277 (13|65|7|192) (71.8%) |
@markmc
markmc / client.py
Created May 31, 2013 15:07
Playing with kombu and async processing
import kombu.connection
import kombu.entity
import kombu.messaging
params = {
'hostname': 'localhost',
'port': 5672,
'virtual_host': '/',
}
(py27)[markmc@sorcha oslo.config]$ cat t.py
from oslo.config import cfg
cfg.CONF.register_opt(cfg.StrOpt('connection',
deprecated_name='sql_connection'),
group='database')
cfg.CONF()
import socket
class ImageDownloadFailure(Exception):
def __init__(self, host, port, path, error):
self.host = host
self.port = port
self.path = path
msg = ('Failed to download %(path)s from %(host)s:%(port)s: %(error)s'
% {'host': host, 'port': port, 'path': path, 'error': error})

devtest_overcloud

  1. Create your overcloud control plane image. This is the image the undercloud will deploy to become the KVM (or QEMU, Xen, etc.) cloud control plane. Note that stackuser is only there for debugging support - it is not suitable for a production network. $OVERCLOUD_DIB_EXTRA_ARGS is meant to be used to pass additional build-time specific arguments to disk-image-create. :

os-collect-config

Collect configuration from cloud metadata sources

What does it do?

os-collect-config
=================
Collect configuration from cloud metadata sources.
# What does it do?
It collects data from defined configuration sources and runs a defined hook whenever the metadata has changed.

os-collect-config

Collect configuration from cloud metadata sources

What does it do?

Install os-refresh-config

os-refresh-config uses dib-run-parts to run scripts in a pre-defined set of directories. Its intended purpose is to quiesce (pre-configure.d), configure (configure.d), migrate (migration.d), and then activate (post-configure.d) a configuration on first boot or in response to Heat Metadata changes.

To cause a script to be run on every os-refresh-config run, install

os-refresh-config

os-refresh-config uses dib-run-parts to run scripts in a pre-defined set of directories:

/opt/stack/os-config-refresh/pre-configure.d
/opt/stack/os-config-refresh/configure.d
/opt/stack/os-config-refresh/migration.d