2ad22ad55f276c3e6471bc633655416d3e51919f
[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 ANSIBLE_PATH = 'ansible/playbooks'
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 = {
43     'master': os.path.join(THT_ENV_DIR, 'services'),
44     'queens': os.path.join(THT_ENV_DIR, 'services')
45 }
46
47 DEFAULT_OS_VERSION = 'master'
48 DEFAULT_ODL_VERSION = 'oxygen'
49 VALID_ODL_VERSIONS = ['carbon', 'nitrogen', 'oxygen', 'master']
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 = 120
55 UPSTREAM_RDO = 'https://images.rdoproject.org/master/delorean/current' \
56                '-tripleo-rdo/'
57 OPENSTACK_GERRIT = 'https://review.openstack.org'
58
59 DOCKER_TAG = 'current-tripleo-rdo'
60 # Maps regular service files to docker versions
61 # None value means mapping is same as key
62 VALID_DOCKER_SERVICES = {
63     'neutron-opendaylight.yaml': None,
64     'neutron-opendaylight-dpdk.yaml': None,
65     'neutron-opendaylight-sriov.yaml': None,
66     'neutron-bgpvpn-opendaylight.yaml': None,
67     'neutron-ml2-ovn.yaml': 'neutron-ovn.yaml'
68 }
69 DOCKERHUB_OOO = 'https://registry.hub.docker.com/v2/repositories' \
70                 '/tripleomaster/'
71 KUBESPRAY_URL = 'https://github.com/kubernetes-incubator/kubespray.git'
72 CUSTOM_OVS = 'http://artifacts.opnfv.org/apex/random/openvswitch-2.9.0-9' \
73              '.el7fdn.x86_64.rpm'
74
75 QUAGGA_URL = "http://artifacts.opnfv.org/sdnvpn/quagga/quagga-4.tar.gz"