-
Notifications
You must be signed in to change notification settings - Fork 13
/
devstack_local.conf
67 lines (53 loc) · 1.99 KB
/
devstack_local.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env bash
# Copyright 2014 Midokura SARL
#
# 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 under the License.
[[local|localrc]]
# Load the default configuration options for midostack
DATABASE_PASSWORD=${DATABASE_PASSWORD:-$MIDOSTACK_PASSWORD}
RABBIT_PASSWORD=${RABBIT_PASSWORD:-$MIDOSTACK_PASSWORD}
SERVICE_TOKEN=${SERVICE_TOKEN:-$MIDOSTACK_PASSWORD}
SERVICE_PASSWORD=${SERVICE_PASSWORD:-$MIDOSTACK_PASSWORD}
ADMIN_PASSWORD=${ADMIN_PASSWORD:-$MIDOSTACK_PASSWORD}
# If you see errors related to tempest-lib, uncomment this line, which is a
# workaround for https://bugs.launchpad.net/devstack/+bug/1413040
#LIBS_FROM_GIT=tempest-lib
IPV6_ENABLED=False
NOVA_USE_QUANTUM_API=v2
NOVA_USE_NEUTRON_API=v2
# Use UUID token, otherwise MN API would vomit with 500
KEYSTONE_TOKEN_FORMAT=UUID
# Need override here because we use it in 'midonet_stack' script
SCREEN_NAME=stack
# services
ENABLED_SERVICES=rabbit,mysql,key
ENABLED_SERVICES+=,n-api,n-crt,n-obj,n-cpu,n-cond,n-sch
ENABLED_SERVICES+=,g-api,g-reg
ENABLED_SERVICES+=,q-svc,q-dhcp,q-meta,neutron
ENABLED_SERVICES+=,horizon
ENABLED_SERVICES+=,tempest
Q_PLUGIN=midonet
Q_L3_ENABLED=True
Q_L3_ROUTER_PER_TENANT=True
enable_service midonet
# Specify the neutron DB name. For Icehouse, this variable is hardcoded
# in the plugin neutron lib file, but in Juno, it's configurable.
# Setting this here should work for both Juno and Icehouse.
Q_DB_NAME=neutron
[[post-config|$NEUTRON_CONF]]
[quotas]
default_quota = -1
quota_network = -1
quota_subnet = -1
quota_port = -1
quota_security_group = -1