996ef2f086c6e282d3937250ca5ef64bb6716d89
[apex.git] / lib / python / apex / common / constants.py
1 ##############################################################################
2 # Copyright (c) 2016 Tim Rozet (trozet@redhat.com) and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10 ADMIN_NETWORK = 'admin_network'
11 PRIVATE_NETWORK = 'private_network'
12 PUBLIC_NETWORK = 'public_network'
13 STORAGE_NETWORK = 'storage_network'
14 API_NETWORK = 'api_network'
15 OPNFV_NETWORK_TYPES = [ADMIN_NETWORK, PRIVATE_NETWORK, PUBLIC_NETWORK,
16                        STORAGE_NETWORK, API_NETWORK]
17 DNS_SERVERS = ["8.8.8.8", "8.8.4.4"]
18 ROLES = ['compute', 'controller']
19 DOMAIN_NAME = 'localdomain.com'