- [2015-09-04 03:05:16] xuhj revised
openstack/nova
Relax restrictions on server name - [2015-09-04 03:09:20] xuhj commented on
openstack/nova
Relax restrictions on server name - [2015-09-04 03:09:57] emilienm revised
openstack/puppet-openstack-integration
Prepare Tempest and run smoke - DO NOT MERGE - [2015-09-04 03:10:15] mriedem commented on
openstack/requirements
Bump os-brick version to 0.4.0 - [2015-09-04 03:10:20] jmccann commented on
openstack/ironic-python-agent
Update qemu-utils package from testing - [2015-09-04 03:10:33] emilienm abandoned
openstack/puppet-keystone
DNM - CI test - [2015-09-04 03:10:52] xuhj commented on
openstack/nova
api: allow any scheduler hints - [2015-09-04 03:11:26]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[dashboard] | |
title = Starred by David Stanek | |
description = | |
foreach = | |
[section "Needs work"] | |
query = is:open starredby:dstanek (label:Code-Review<=-1 OR label:Verified<=-1,jenkins OR label:Workflow-1) -label:Workflow+1 | |
[section "Testing"] | |
query = is:open starredby:dstanek label:Verified+0,jenkins label:Workflow+0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Licensed under the Apache License, Version 2.0 (the "License"); you may | |
# not use this file except in compliance with the License. You may obtain | |
# a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | |
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | |
# License for the specific language governing permissions and limitations |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
unset OS_TOKEN | |
unset OS_ENDPOINT | |
# mysql -ukeystone -pkeystone -e "drop database keystone; create database keystone;" | |
# ~/openstack/keystone/.tox/py27/bin/keystone-manage db_sync | |
export OS_IDENTITY_API_VERSION=2.0 |
This gist has been deprecated.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set -e | |
git ready stable/kilo | |
git review -X 167124 # Apr 15, 2015 7:54 PM | |
tox -e py27 -e pep8 | |
git review -y | |
git review -X 167141 # May 6, 2015 12:46 PM | |
tox -e py27 -e pep8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class BaseModel(object): | |
def __init__(self, id=None): | |
self.id = id or uuid.uuid4().hex | |
@property | |
def name(self): | |
return self._name | |
class ProjectModel(BaseModel): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"auth": { | |
"identity": { | |
"methods": [ | |
"password" | |
], | |
"password": { | |
"user": { | |
"domain": { | |
"id": "default" |