forked from midonet/midostack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevstack_local.conf
70 lines (56 loc) · 1.77 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
66
67
68
#!/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}
IPV6_ENABLED=False
USE_MIDONET=${USE_MIDONET:-true}
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
disable_service n-net
enable_service q-svc
enable_service q-dhcp
enable_service q-meta
disable_service q-lbaas
if [ $USE_MIDONET = false ]; then
enable_service q-agt
enable_service q-l3
else
Q_PLUGIN=midonet
Q_L3_ENABLED=True
Q_L3_ROUTER_PER_TENANT=True
enable_service midonet
fi
# Disable Heat for now until we need it
disable_service h-eng
disable_service h-api
disable_service h-api-cfn
disable_service h-api-cw
[[post-config|$NEUTRON_CONF]]
[quotas]
default_quota = -1
quota_network = -1
quota_subnet = -1
quota_port = -1
quota_security_group = -1