Enables containerized overcloud deployments
[apex.git] / 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 import os
11
12 ADMIN_NETWORK = 'admin'
13 TENANT_NETWORK = 'tenant'
14 EXTERNAL_NETWORK = 'external'
15 STORAGE_NETWORK = 'storage'
16 API_NETWORK = 'api'
17 CONTROLLER = 'controller'
18 COMPUTE = 'compute'
19
20 OPNFV_NETWORK_TYPES = [ADMIN_NETWORK, TENANT_NETWORK, EXTERNAL_NETWORK,
21                        STORAGE_NETWORK, API_NETWORK]
22 DNS_SERVERS = ["8.8.8.8", "8.8.4.4"]
23 NTP_SERVER = ["pool.ntp.org"]
24 COMPUTE = 'compute'
25 CONTROLLER = 'controller'
26 ROLES = [COMPUTE, CONTROLLER]
27 DOMAIN_NAME = 'localdomain.com'
28 COMPUTE_PRE = "OS::TripleO::ComputeExtraConfigPre"
29 CONTROLLER_PRE = "OS::TripleO::ControllerExtraConfigPre"
30 PRE_CONFIG_DIR = "/usr/share/openstack-tripleo-heat-templates/puppet/" \
31                  "extraconfig/pre_deploy/"
32 DEFAULT_ROOT_DEV = 'sda'
33 LIBVIRT_VOLUME_PATH = '/var/lib/libvirt/images'
34
35 VIRT_UPLOAD = '--upload'
36 VIRT_INSTALL = '--install'
37 VIRT_RUN_CMD = '--run-command'
38 VIRT_PW = '--root-password'
39
40 THT_DIR = '/usr/share/openstack-tripleo-heat-templates'
41 THT_ENV_DIR = os.path.join(THT_DIR, 'environments')
42 THT_DOCKER_ENV_DIR = os.path.join(THT_ENV_DIR, 'services-docker')
43
44 DEFAULT_OS_VERSION = 'pike'
45 DEFAULT_ODL_VERSION = 'nitrogen'
46 VALID_ODL_VERSIONS = ['carbon', 'nitrogen', 'oxygen', 'master']
47 CEPH_VERSION_MAP = {'pike': 'jewel',
48                     'queens': 'luminous',
49                     'master': 'luminous'}
50 PUPPET_ODL_URL = 'https://git.opendaylight.org/gerrit/integration/packaging' \
51                  '/puppet-opendaylight'
52 DEBUG_OVERCLOUD_PW = 'opnfvapex'
53 NET_ENV_FILE = 'network-environment.yaml'
54 DEPLOY_TIMEOUT = 90
55 UPSTREAM_RDO = 'https://images.rdoproject.org/pike/delorean/current-tripleo/'
56 OPENSTACK_GERRIT = 'https://review.openstack.org'
57
58 DOCKER_TAG = 'current-tripleo-rdo'
59 # Maps regular service files to docker versions
60 # None value means mapping is same as key
61 VALID_DOCKER_SERVICES = {
62     'neutron-opendaylight.yaml': None,
63     'neutron-opendaylight-dpdk.yaml': None,
64     'neutron-opendaylight-sriov.yaml': None,
65     'neutron-ml2-ovn.yaml': 'neutron-ovn.yaml'
66 }
67 DOCKERHUB_OOO = ('https://registry.hub.docker.com/v2/repositories'
68                  '/tripleoupstream/?page_size=1024')