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
"""This module provides a custom event loop for the health manager service. | |
The event loop is implemented as a thread that runs an asyncio event loop. | |
This allows the health manager to run periodic tasks and other asynchronous | |
operations without blocking the main thread. | |
The event loop is started when the module is imported and runs until the | |
program exits. The main thread can interact with the event loop by submitting | |
tasks to it using the `spawn` function. | |
""" | |
import asyncio |
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
ceilometer | |
ceilometer-acentral | |
ceilometer-acompute | |
ceilometer-alarm-evaluator | |
ceilometer-alarm-notifier | |
ceilometer-anotification | |
ceilometer-api | |
ceilometer-collector | |
c-sch |
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
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Python: API", | |
"type": "python", | |
"request": "launch", |
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]] | |
HOST_IP=10.0.0.5 | |
FLOATING_RANGE=172.24.0.0/24 | |
FIXED_RANGE=10.0.0.0/24 | |
IP_VERSION=4 | |
LOGDAYS=2 | |
LOGFILE=/opt/stack/logs/stack.sh.log | |
MYSQL_HOST=$HOST_IP |
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 | |
# | |
# lib/cinder_backups/s3 | |
# Configure the s3 backup driver for external s3 compatible storage | |
# Enable with: | |
# | |
# CINDER_BACKUP_DRIVER=s3 | |
# enable_service c-bak |
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
#!/usr/bin/bash | |
# PUT THIS FILE IN devstack REPO | |
unset LANG | |
unset LANGUAGE | |
LC_ALL=en_US.utf8 | |
export LC_ALL | |
# Clear all OpenStack related envvars | |
unset `env | grep -E '^OS_' | cut -d = -f 1` |
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]] | |
HOST_IP=10.0.0.3 | |
MYSQL_HOST=$HOST_IP | |
RABBIT_HOST=$HOST_IP | |
GLANCE_HOSTPORT=$HOST_IP:9292 | |
IP_VERSION=4 | |
FLOATING_RANGE=10.0.0.128/25 | |
FIXED_RANGE=10.10.1.0/24 |