- [2016-03-10 07:46:14] jaegerandi revised
openstack-infra/project-config
Change two tox jobs to ubuntu-trusty - [2016-03-10 07:45:10] stevelle commented on
openstack/openstack-ansible-os_nova
Resolve oslo_config deprecations in nova.conf - [2016-03-10 07:44:57] amarrich -1'd
openstack/openstack-ansible-os_neutron
Ignore error when neutron-lbaas-agent is not installed - [2016-03-10 07:44:28] amarrich +1'd
openstack/openstack-ansible-os_nova
Resolve oslo_config deprecations in nova.conf - [2016-03-10 07:44:26] woodster +2'd
openstack/barbican
Fix 500 server error invalid transport key during secret creation - [2016-03-10 07:43:48] amarrich +1'd
openstack/openstack-ansible-os_keystone
Use contraints file in developer mode - [2016-03-10 07:41:02]
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
"""Illustrate dogpile.cache invalidation behavior. | |
dogpile.cache's invalidation behavior is surprising because dogpile does not | |
write to memcached when you tell it to invalidate an entry. | |
Invalidation works by setting a current timestamp (using time.time()) | |
representing the "minimum creation time" for a value. Any retrieved value | |
whose creation time is prior to this timestamp is considered to be stale. | |
It does not affect the data in the cache in any way, and is also local to | |
this instance of CacheRegion. |
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
# -*- coding: utf-8 -*- | |
"""Demonstrate high quality docstrings. | |
Module-level docstrings appear as the first "statement" in a module. Remember, | |
that while strings are regular Python statements, comments are not, so an | |
inline comment may precede the module-level docstring. | |
After importing a module, you can access this special string object through the | |
``__doc__`` attribute; yes, it's actually available as a runtime attribute, | |
despite not being given an explicit name! The ``__doc__`` attribute is also |
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
[[local|localrc]] | |
# Abide by tradition. | |
SERVICE_TOKEN=ADMIN | |
ADMIN_PASSWORD=secrete | |
MYSQL_PASSWORD=$ADMIN_PASSWORD | |
RABBIT_PASSWORD=$ADMIN_PASSWORD | |
SERVICE_PASSWORD=$ADMIN_PASSWORD | |
LOGFILE=$DEST/logs/stack.sh.log | |
LOGDAYS=2 |
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
<VirtualHost *:5000> | |
... | |
OIDCClaimPrefix "OIDC-" | |
OIDCResponseType "code" | |
OIDCScope "openid email profile" | |
OIDCProviderMetadataURL http://<keycloak_host>:8080/auth/realms/master/.well-known/openid-configuration | |
OIDCClientID <client_id> | |
OIDCClientSecret <client_secret> |
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
curl localhost:35357/v3/auth/tokens \ | |
-H "X-Subject-Token: {{ fernet_token }}" \ | |
-H "X-Auth-Token: {{ keystone.conf [default] admin_token }}" \ | |
| python -m json.tool |
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
keystone_idp_id: my_idp | |
keystone_sp_id: my_sp | |
keystone_sp_host: 104.239.231.30 | |
keystone_idp: | |
service_providers: | |
- id: "{{ keystone_sp_id }}" | |
auth_url: http://{{ keystone_sp_host }}:5000/v3/OS-FEDERATION/identity_providers/{{ keystone_idp_id }}/protocols/saml2/auth | |
sp_url: http://{{ keystone_sp_host }}:5000/Shibboleth.sso/SAML2/ECP | |
idp_entity_id: "{{ keystone_service_publicurl_v3 }}/OS-FEDERATION/saml2/idp" |
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 = Review inbox | |
description = Watched & starred reviews | |
foreach = | |
[section "New"] | |
query = is:open (is:watched OR is:starred) -owner:self -label:Code-Review<=2 label:Verified+1,jenkins label:Workflow+0 | |
[section "+1"] | |
query = is:open (is:watched OR is:starred) -owner:self -label:Code-Review<=+2,self -label:Code-Review<=-1 label:Code-Review+1 -label:Code-Review+2 label:Verified+1,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
[dashboard] | |
title = My Reviews | |
description = | |
foreach = | |
[section "In progress"] | |
query = is:open owner:self -Workflow-1 -label:Verified<=-1 -label:Code-Review-1 | |
[section "Needs attention"] | |
query = is:open owner:self (Workflow-1 OR label:Verified<=-1 OR label:Code-Review<=-1) |