OpenStack(二)之Horizon——local_settings.py

OpenStack(二)之Horizon——local_settings.py

官網上的local_settings.py

  • local_settings.py
  • 官網給出了基本的配置參數說明,查看基本的參數配置說明可以參照以上的鏈接進行查看。

本地的local_settings.py

local_settings文件的大致說明

# 在Python文件開頭(一般是第一行或者是第二行), 用來說明你的Python源文件所使用的編碼。
# 缺省情況下你的程序需要使用ascii碼來寫, 但如果在其中寫中文的話, Python解釋器一般會報錯, 
# 但如果加上你所用的文件編碼, Python就會自動進行處理不會報錯。
# -*- coding: utf-8 -*-

# Miscellanous operating system interfaces(其他操作系統接口)
import os

# 國際化與本地化
from django.utils.translation import ugettext_lazy as _

# exceptions引入文件爲easystack_dashboard/excepetions.py文件
from easystack_dashboard import exceptions

# DEBUG = True時, 如果出現Bug便於我們看見問題所在, 
# 但是部署時最好不要讓用戶看見bug的詳情, 可能一些不懷好心的人攻擊網站, 造成不必要的麻煩。
DEBUG = True

# WEBROOT is the location relative to Webserver root
# should end with a slash.
WEBROOT = '/'

# 現場項目的名稱, 比如SCG Cloud是針對於南方電網的項目名稱, SG-COS是針對於國網項目的名稱。
SITE_BRANDING = 'SCG Cloud'

# LOGIN_URL = WEBROOT + 'auth/login/'
# LOGOUT_URL = WEBROOT + 'auth/logout/'
#
# LOGIN_REDIRECT_URL can be used as an alternative for
# HORIZON_CONFIG.user_home, if user_home is not set.
# Do not set it to '/home/', as this will cause circular redirect loop
# LOGIN_REDIRECT_URL = WEBROOT


# Required for Django 1.5.
# If horizon is running in production (DEBUG is False), set this
# with the list of host/domain names that the application can serve.
# For more information see:
# https://docs.djangoproject.com/en/dev/ref/settings/#allowed-hosts
ALLOWED_HOSTS = ['*', ]

# Set SSL proxy settings:
# For Django 1.4+ pass this header from the proxy after terminating the SSL,
# and don't forget to strip it from the client's request.
# For more information see:
# https://docs.djangoproject.com/en/1.4/ref/settings/#secure-proxy-ssl-header
#SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTOCOL', 'https')

# If Horizon is being served through SSL, then uncomment the following two
# settings to better secure the cookies from security exploits
#CSRF_COOKIE_SECURE = True
#SESSION_COOKIE_SECURE = True

# This setting controls whether or not compression is enabled. Disabling
# compression makes Horizon considerably slower, but makes it much easier
# to debug JS and CSS changes
COMPRESS_ENABLED = True

# Overrides for OpenStack API versions. Use this setting to force the
# OpenStack dashboard to use a specific API version for a given service API.
# Versions specified here should be integers or floats, not strings.
# NOTE: The version should be formatted as it appears in the URL for the
# service API. For example, The identity service APIs have inconsistent
# use of the decimal point, so valid options would be 2.0 or 3.
OPENSTACK_API_VERSIONS = {
    # "data-processing": 1.1,
    "identity": 3,
    # "volume": 2,
}

# Set this to True if running on multi-domain model. When this is enabled, it
# will require user to enter the Domain name in addition to username for login.
#OPENSTACK_KEYSTONE_MULTIDOMAIN_SUPPORT = False

# Overrides the default domain used when running on single-domain model
# with Keystone V3. All entities will be created in the default domain.
OPENSTACK_KEYSTONE_DEFAULT_DOMAIN = 'default'

# Set Console type:
# valid options would be "AUTO"(default), "VNC", "SPICE", "RDP", "SERIAL" or None
# Set to None explicitly if you want to deactivate the console.
#CONSOLE_TYPE = "AUTO"

# Default OpenStack Dashboard configuration.
HORIZON_CONFIG = {
    'user_home': 'easystack_dashboard.views.get_user_home', # views.py中get_user_home函數(判斷屬於當前用戶的主頁)
    'ajax_queue_limit': 10, # ajax請求消息隊列的時間限制長度
    'auto_fade_alerts': { # 
        'delay': 3000,
        'fade_duration': 1500,
        'types': ['alert-success', 'alert-info']
    },
    'help_url': "http://docs.openstack.org",
    'exceptions': {'recoverable': exceptions.RECOVERABLE,
                   'not_found': exceptions.NOT_FOUND,
                   'unauthorized': exceptions.UNAUTHORIZED},
    'modal_backdrop': 'static',
    'angular_modules': [],
    'js_files': [],
    'js_spec_files': [],
}

# Specify a regular expression to validate user passwords.
# HORIZON_CONFIG["password_validator"] = {
#    "regex": '.*',
#    "help_text": _("Your password does not meet the requirements."),
#}

# Disable simplified floating IP address management for deployments with
# multiple floating IP pools or complex network requirements.
#HORIZON_CONFIG["simple_ip_management"] = False

# Turn off browser autocompletion for forms including the login form and
# the database creation workflow if so desired.
#HORIZON_CONFIG["password_autocomplete"] = "off"

# Setting this to True will disable the reveal button for password fields,
# including on the login form.
#HORIZON_CONFIG["disable_password_reveal"] = False

LOCAL_PATH = os.path.dirname(os.path.abspath(__file__))

# Set custom secret key:
# You can either set it to a specific value or you can let horizon generate a
# default secret key that is unique on this machine, e.i. regardless of the
# amount of Python WSGI workers (if used behind Apache+mod_wsgi): However, there
# may be situations where you would want to set this explicitly, e.g. when
# multiple dashboard instances are distributed on different machines (usually
# behind a load-balancer). Either you have to make sure that a session gets all
# requests routed to the same dashboard instance or you set the same SECRET_KEY
# for all of them.
from horizon.utils import secret_key
SECRET_KEY = secret_key.generate_or_read_from_file(
    os.path.join(LOCAL_PATH, '.secret_key_store'))

# We recommend you use memcached for development; otherwise after every reload
# of the django development server, you will have to login again. To use
# memcached set CACHES to something like
# CACHES = {
#     'default': {
#         'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
#         'LOCATION': '127.0.0.1:11211',
#     }
# }

CACHES = {
   'default': {
       'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
       'LOCATION': '127.0.0.1:11211',
   }
}

# CACHES = {
#     'default': {
#         'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
#     }
# }

# if we enable the invcode charge mode, just set it to true(如果需要啓用invcode的收費模式, 需要設置此參數爲True)
INVCODE_ENABLE = True
INVCODE_RECHARGE = True

# if we enable the yeepay charge mode, just set it to true(如果需要啓用yeepay的收費模式, 需要設置此參數爲True)
YEEPAY_RECHARGE = True

# if admin could edit the notice in the login page, set it True
NOTICE_ENABLE = False

# LOGIN_SMTP_SERVER is set to True to auto login smtp server
# to send notify emails
LOGIN_SMTP_SERVER = True

# if we enable the fancier network topology, just set it to true(如果需要使用fancier的網絡拓撲圖, 需要設置此參數爲True)
USE_FANCIER_NETWORK_TOPOLOGY = True

# set this True to activate the email register, if you set False,
# email register will be disabled
EMAIL_ACTIVATION = True

# PREBILLING rely on ENABLE_BILLING, if ENABLE_BILLING=True, this setting 
# will benefit; if you want to use payment previously, set this True
PREBILLING = True

# Send email to the console by default
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
# Or send them to /dev/null
#EMAIL_BACKEND = 'django.core.mail.backends.dummy.EmailBackend'

# Configure these for your outgoing email host
#EMAIL_HOST = 'smtp.my-company.com'
#EMAIL_PORT = 25
#EMAIL_HOST_USER = 'djangomail'
#EMAIL_HOST_PASSWORD = 'top-secret!'

# For multiple regions uncomment this configuration, and add (endpoint, title).
# AVAILABLE_REGIONS = [
#    ('http://cluster1.example.com:5000/v2.0', 'cluster1'),
#    ('http://cluster2.example.com:5000/v2.0', 'cluster2'),
#]

# the dashboard backend address
OPENSTACK_HOST = "172.90.0.2"

# the dashboard keystone url
OPENSTACK_KEYSTONE_URL = "http://%s:5000/v3" % OPENSTACK_HOST
OPENSTACK_KEYSTONE_DEFAULT_ROLE = "admin"

# the dashboard chakra url
OPENSTACK_CHAKRA_URL = 'http://%s:7207' % OPENSTACK_HOST
OPENSTACK_BILLING_URL = 'http://%s:7206' % OPENSTACK_HOST
OPENSTACK_AUTH_URL = 'http://%s:5000/v2.0' % OPENSTACK_HOST

# should change this to chakra service user info, the billing
# will work normally
CHAKRA_USER = 'chakra'
CHAKRA_PASSWORD = '*******'

# should change this to ticket service user info, the ticket
# will work normally
TICKET_USER = 'ticket'
TICKET_PASSWORD = '******'
TICKET_TENANT = 'services'
TICKET_ATTACHMENT_ENABLED = True
BILLING_USER = 'billing'
BILLING_PASSWORD = '*******'

# ceilometer url and service account info
OPENSTACK_CEILOMETER_URL = 'http://%s:8777' % OPENSTACK_HOST
CEILOMETER_USER = 'ceilometer'
CEILOMETER_PASSWORD = '********'

# swift enabled if set True(對象存儲管理)
SWIFT_ENABLED = True

# to use heat, set True(編排)
HEAT_ENABLED = True

# zabbix link url setting
ZABBIX_LINK = 'http://www.easystack.cn'

# ESSTORAGE url setting
ESSTORAGE_URL = 'http://www.easystack.cn'

# MANA url setting
MANA_URL = "http://%s:%s" % (OPENSTACK_HOST, 8899)

# MARATHON_HOST setting
MARATHON_HOST = "http://%s:%s" % ('192.168.1.33', 8080)

# Disable SSL certificate checks (useful for self-signed certificates):
#OPENSTACK_SSL_NO_VERIFY = True

# The CA certificate to use to verify SSL connections
#OPENSTACK_SSL_CACERT = '/path/to/cacert.pem'

# The OPENSTACK_KEYSTONE_BACKEND settings can be used to identify the
# capabilities of the auth backend for Keystone.
# If Keystone has been configured to use LDAP as the auth backend then set
# can_edit_user to False and name to 'ldap'.
#
# TODO(tres): Remove these once Keystone has an API to identify auth backend.
OPENSTACK_KEYSTONE_BACKEND = {
    'name': 'native',
    'can_edit_user': True,
    'can_edit_group': True,
    'can_edit_project': True,
    'can_edit_domain': True,
    'can_edit_role': True,
}

# Setting this to True, will add a new "Retrieve Password" action on instance,
# allowing Admin session password retrieval/decryption.
#OPENSTACK_ENABLE_PASSWORD_RETRIEVE = False

# The Xen Hypervisor has the ability to set the mount point for volumes
# attached to instances (other Hypervisors currently do not). Setting
# can_set_mount_point to True will add the option to set the mount point
# from the UI.
OPENSTACK_HYPERVISOR_FEATURES = {
    'can_set_mount_point': False,
    'can_set_password': False,
}

# The OPENSTACK_CINDER_FEATURES settings can be used to enable optional
# services provided by cinder that is not exposed by its extension API.
OPENSTACK_CINDER_FEATURES = {
    'enable_backup': False,
}

# The OPENSTACK_NEUTRON_NETWORK settings can be used to enable optional
# services provided by neutron. Options currently available are load
# balancer service, security groups, quotas(配額), VPN service.
OPENSTACK_NEUTRON_NETWORK = {
    'enable_router': True,
    'enable_quotas': True,
    'enable_ipv6': True,
    'enable_distributed_router': False,
    'enable_ha_router': False,
    'enable_lb': True,
    'enable_firewall': True,
    'enable_vpn': True,

    # The profile_support option is used to detect if an external router can be
    # configured via the dashboard. When using specific plugins the
    # profile_support can be turned on if needed.
    'profile_support': None,
    #'profile_support': 'cisco',

    # Set which provider network types are supported. Only the network types
    # in this list will be available to choose from when creating a network.
    # Network types include local, flat, vlan, gre, and vxlan.
    'supported_provider_types': ['*'],

    # Set which VNIC types are supported for port binding. Only the VNIC
    # types in this list will be available to choose from when creating a
    # port.
    # VNIC types include 'normal', 'macvtap' and 'direct'.
    'supported_vnic_types': ['*']
}

# The OPENSTACK_IMAGE_BACKEND settings can be used to customize features
# in the OpenStack Dashboard related to the Image service, such as the list
# of supported image formats.
# OPENSTACK_IMAGE_BACKEND = {
#    'image_formats': [
#        ('', _('Select format')),
#        ('aki', _('AKI - Amazon Kernel Image')),
#        ('ami', _('AMI - Amazon Machine Image')),
#        ('ari', _('ARI - Amazon Ramdisk Image')),
#        ('iso', _('ISO - Optical Disk Image')),
#        ('ova', _('OVA - Open Virtual Appliance')),
#        ('qcow2', _('QCOW2 - QEMU Emulator')),
#        ('raw', _('Raw')),
#        ('vdi', _('VDI - Virtual Disk Image')),
#        ('vhd', ('VHD - Virtual Hard Disk')),
#        ('vmdk', _('VMDK - Virtual Machine Disk')),
#    ]
#}

# The IMAGE_CUSTOM_PROPERTY_TITLES settings is used to customize the titles for
# image custom property attributes that appear on image detail pages.
IMAGE_CUSTOM_PROPERTY_TITLES = {
    "architecture": _("Architecture"),
    "kernel_id": _("Kernel ID"),
    "ramdisk_id": _("Ramdisk ID"),
    "image_state": _("Euca2ools state"),
    "project_id": _("Project ID"),
    "image_type": _("Image Type"),
}

# The IMAGE_RESERVED_CUSTOM_PROPERTIES setting is used to specify which image
# custom properties should not be displayed in the Image Custom Properties
# table.
IMAGE_RESERVED_CUSTOM_PROPERTIES = []

# OPENSTACK_ENDPOINT_TYPE specifies the endpoint type to use for the endpoints
# in the Keystone service catalog. Use this setting when Horizon is running
# external to the OpenStack environment. The default is 'publicURL'.
OPENSTACK_ENDPOINT_TYPE = "publicURL"

# SECONDARY_ENDPOINT_TYPE specifies the fallback endpoint type to use in the
# case that OPENSTACK_ENDPOINT_TYPE is not present in the endpoints
# in the Keystone service catalog. Use this setting when Horizon is running
# external to the OpenStack environment. The default is None.  This
# value should differ from OPENSTACK_ENDPOINT_TYPE if used.
#SECONDARY_ENDPOINT_TYPE = "publicURL"

# The number of objects (Swift containers/objects or images) to display
# on a single page before providing a paging element (a "more" link)
# to paginate results.
API_RESULT_LIMIT = 1000
API_RESULT_PAGE_SIZE = 20

# Specify a maximum number of items to display in a dropdown.
DROPDOWN_MAX_ITEMS = 30

# The timezone of the server. This should correspond with the timezone
# of your entire OpenStack installation, and hopefully be in UTC.
TIME_ZONE = "UTC"

# When launching an instance, the menu of available flavors is
# sorted by RAM usage, ascending. If you would like a different sort order,
# you can provide another flavor attribute as sorting key. Alternatively, you
# can provide a custom callback method to use for sorting. You can also provide
# a flag for reverse sort. For more info, see
# http://docs.python.org/2/library/functions.html#sorted
# CREATE_INSTANCE_FLAVOR_SORT = {
#    'key': 'name',
# or
#    'key': my_awesome_callback_method,
#    'reverse': False,
#}

# Set this to True to display an 'Admin Password' field on the Change Password
# form to verify that it is indeed the admin logged-in who wants to change
# the password.
# ENFORCE_PASSWORD_CHECK = False

# Modules that provide /auth routes that can be used to handle different types
# of user authentication. Add auth plugins that require extra route handling to
# this list.
# AUTHENTICATION_URLS = [
#    'openstack_auth.urls',
#]

# The Horizon Policy Enforcement engine uses these values to load per service
# policy rule files. The content of these files should match the files the
# OpenStack services are using to determine role based access control in the
# target installation.

# Path to directory containing policy.json files
#POLICY_FILES_PATH = os.path.join(ROOT_PATH, "conf")
# Map of local copy of service policy files
# POLICY_FILES = {
#    'identity': 'keystone_policy.json',
#    'compute': 'nova_policy.json',
#    'volume': 'cinder_policy.json',
#    'image': 'glance_policy.json',
#    'orchestration': 'heat_policy.json',
#    'network': 'neutron_policy.json',
#}

# Trove user and database extension support. By default support for
# creating users and databases on database instances is turned on.
# To disable these extensions set the permission here to something
# unusable such as ["!"].
# TROVE_ADD_USER_PERMS = []
# TROVE_ADD_DATABASE_PERMS = []

# Change this patch to the appropriate static directory containing
# two files: _variables.scss and _styles.scss
#CUSTOM_THEME_PATH = 'static/themes/default'

# Change this to enable all feature of dedicated resource, including nav
# dedicated resource dashboard
DEDICATED_PREFIX = "dedicated:"

LOGGING = {
    'version': 1,
    # When set to True this will disable all logging except
    # for loggers specified in this configuration dictionary. Note that
    # if nothing is specified here and disable_existing_loggers is True,
    # django.db.backends will still log unless it is disabled explicitly.
    'disable_existing_loggers': False,
    'handlers': {
        'null': {
            'level': 'DEBUG',
            'class': 'django.utils.log.NullHandler',
        },
        'console': {
            # Set the level to "DEBUG" for verbose output logging.
            'level': 'INFO',
            'class': 'logging.StreamHandler',
        },
    },
    'loggers': {
        # Logging from django.db.backends is VERY verbose, send to null
        # by default.
        'django.db.backends': {
            'handlers': ['null'],
            'propagate': False,
        },
        'requests': {
            'handlers': ['null'],
            'propagate': False,
        },
        'horizon': {
            'handlers': ['console'],
            'level': 'INFO',
            'propagate': False,
        },
        'easystack_dashboard': {
            'handlers': ['console'],
            'level': 'INFO',
            'propagate': False,
        },
        'novaclient': {
            'handlers': ['console'],
            'level': 'INFO',
            'propagate': False,
        },
        'cinderclient': {
            'handlers': ['console'],
            'level': 'INFO',
            'propagate': False,
        },
        'keystoneclient': {
            'handlers': ['console'],
            'level': 'INFO',
            'propagate': False,
        },
        'glanceclient': {
            'handlers': ['console'],
            'level': 'INFO',
            'propagate': False,
        },
        'neutronclient': {
            'handlers': ['console'],
            'level': 'INFO',
            'propagate': False,
        },
        'ceilometerclient': {
            'handlers': ['console'],
            'level': 'INFO',
            'propagate': False,
        },
        'openstack_auth': {
            'handlers': ['console'],
            'level': 'INFO',
            'propagate': False,
        },
        'nose.plugins.manager': {
            'handlers': ['console'],
            'level': 'INFO',
            'propagate': False,
        },
        'django': {
            'handlers': ['console'],
            'level': 'INFO',
            'propagate': False,
        },
        'iso8601': {
            'handlers': ['null'],
            'propagate': False,
        },
        'scss': {
            'handlers': ['null'],
            'propagate': False,
        },
    }
}

# 'direction' should not be specified for all_tcp/udp/icmp.
# It is specified in the form.
SECURITY_GROUP_RULES = {
    'all_tcp': {
        'name': _('All TCP'),
        'ip_protocol': 'tcp',
        'from_port': '1',
        'to_port': '65535',
    },
    'all_udp': {
        'name': _('All UDP'),
        'ip_protocol': 'udp',
        'from_port': '1',
        'to_port': '65535',
    },
    'all_icmp': {
        'name': _('All ICMP'),
        'ip_protocol': 'icmp',
        'from_port': '-1',
        'to_port': '-1',
    },
    'ssh': {
        'name': 'SSH',
        'ip_protocol': 'tcp',
        'from_port': '22',
        'to_port': '22',
    },
    'smtp': {
        'name': 'SMTP',
        'ip_protocol': 'tcp',
        'from_port': '25',
        'to_port': '25',
    },
    'dns': {
        'name': 'DNS',
        'ip_protocol': 'tcp',
        'from_port': '53',
        'to_port': '53',
    },
    'http': {
        'name': 'HTTP',
        'ip_protocol': 'tcp',
        'from_port': '80',
        'ip_protocol': 'tcp',
        'from_port': '80',
        'to_port': '80',
    },
    'pop3': {
        'name': 'POP3',
        'ip_protocol': 'tcp',
        'from_port': '110',
        'to_port': '110',
    },
    'imap': {
        'name': 'IMAP',
        'ip_protocol': 'tcp',
        'from_port': '143',
        'to_port': '143',
    },
    'ldap': {
        'name': 'LDAP',
        'ip_protocol': 'tcp',
        'from_port': '389',
        'to_port': '389',
    },
    'https': {
        'name': 'HTTPS',
        'ip_protocol': 'tcp',
        'from_port': '443',
        'to_port': '443',
    },
    'smtps': {
        'name': 'SMTPS',
        'ip_protocol': 'tcp',
        'from_port': '465',
        'to_port': '465',
    },
    'imaps': {
        'name': 'IMAPS',
        'ip_protocol': 'tcp',
        'from_port': '993',
        'to_port': '993',
    },
    'pop3s': {
        'name': 'POP3S',
        'ip_protocol': 'tcp',
        'from_port': '995',
        'to_port': '995',
    },
    'ms_sql': {
        'name': 'MS SQL',
        'ip_protocol': 'tcp',
        'from_port': '1433',
        'to_port': '1433',
    },
    'mysql': {
        'name': 'MYSQL',
        'ip_protocol': 'tcp',
        'from_port': '3306',
        'to_port': '3306',
    },
    'rdp': {
        'name': 'RDP',
        'ip_protocol': 'tcp',
        'from_port': '3389',
        'to_port': '3389',
    },
}


# Deprecation Notice:
#
# The setting FLAVOR_EXTRA_KEYS has been deprecated.
# Please load extra spec metadata into the Glance Metadata Definition Catalog.
#
# The sample quota definitions can be found in:
# <glance_source>/etc/metadefs/compute-quota.json
#
# The metadata definition catalog supports CLI and API:
#  $glance --os-image-api-version 2 help md-namespace-import
#  $glance-manage db_load_metadefs <directory_with_definition_files>
#
# See Metadata Definitions on: http://docs.openstack.org/developer/glance/

# Indicate to the Sahara data processing service whether or not
# automatic floating IP allocation is in effect.  If it is not
# in effect, the user will be prompted to choose a floating IP
# pool for use in their cluster.  False by default.  You would want
# to set this to True if you were running Nova Networking with
# auto_assign_floating_ip = True.
#SAHARA_AUTO_IP_ALLOCATION_ENABLED = False

# The hash algorithm to use for authentication tokens. This must
# match the hash algorithm that the identity server and the
# auth_token middleware are using. Allowed values are the
# algorithms supported by Python's hashlib library.
#OPENSTACK_TOKEN_HASH_ALGORITHM = 'md5'

# set this True if you want to use magnum(容器集羣管理)
MAGNUM_ENABLED = False

# magnum image server ip
MAGNUM_IMAGE_IP = '10.137.73.74'

# product self magnum enabled or not
ES_MAGNUM_ENABLED = True

# product self kubenetes enabled or not
ES_KUBE_ENABLED = True

MARATHON_OMEGA_SERVER = 'http://172.40.0.139:8000'
MARATHON_OMEGA_EMAIL = 'admin'
MARATHON_OMEGA_PASSWORD = '******'
MARATHON_OMEGA_POLICY_EMAIL = '[email protected]'

#domain_quota switch :if you set this is true in the local_setting ,
# you should also change the keystone conf file in the path:
# /etc/keystone/keystone.conf domain_quota_enabled = true
# if you set this True, the domain quota will be enabled(企業配額)
DOMAIN_QUOTA_ENABLED = False

# to use group based policy, set this GBP_ENABLED True
GBP_ENABLED = False

# to use ticket, set this True(工單系統, 如果需要上傳附件,則需要使其switch)
TICKET_ENABLED = True

# to use ironic, set this True(ironic: 裸機部署管理)
BARE_METAL_ENABLED = True

# set True to enable bare metal floatingip, default False
BARE_METAL_FLOATING_IP = False

# set True to enable bare metal multi tenant
BARE_METAL_MULTI_TENANT = True

# set bare metal network name
BARE_METAL_NETWORK_NAME = 'bm_mgmt_net'

# to use trove, set this True, else False(數據庫集羣管理)
TROVE_ENABLED = True

# if you set this True, the domain price will be enabled
DOMAIN_PRICE_ENABLED = True

# max alarm accout
ACCOUNT_ALARM_THRESHOLD = 7

# to use the alarm message, set this True
ALARM_SEND_MESSAGE = True

# to use the billing, set this True(計費管理)
ENABLE_BILLING = True

# to use the captcha, set this True(驗證碼)
CAPTCHA_ENABLE = True

# to use the manila, set this True(文件共享)
MANILA_ENABLED = False

# to use the ldap, set this True
LDAP_ENABLE = False

# to use the mana, set this True
MANA_ENABLE = False

# to use the heat_visual, set this True(可視化編排)
HEAT_VISUAL_ENABLE = True

# to use the network_router, set this True()
NETWORK_ROUTER_ENABLE = True

# to use the network_floatingip, set this True()
NETWORK_FLOATINGIP_ENABLE = True

# to use the network_firewalls, set this True()
NETWORK_FIREWALLS_ENABLE = True

# to use the global_router, set this True()
GLOABAL_ROUTER_ENABLE = True

# to use the container, set this True(容器)
CONTAINER_ENABLE = True

# to use the big_data_platform, set this True(大數據平臺)
BIG_DATA_PLATFORM_ENABLE = True

# to use the database_platform, set this True(數據庫平臺)
DATABASE_PLATFORM_ENABLE = True

# to use the volume_object_storage, set this True
VOLUME_OBJECT_STORAGE_ENABLE = True

# to use the login_register, set this True()
LOGIN_REGISTER_ENABLE = True

# to use the login_with_user_id, set this True()
LOGIN_WITH_USER_ID = False

# to use the transparent_error_msg, set this True
TRANSPARENT_ERROR_MSG = True

#when REBUILD_ON_LVM_ENABLED = True instance which has snapshots can be rebuilt
REBUILD_ON_LVM_ENABLED = False

# to use the network_enhance, set this True(網絡提高)
NETWORK_ENHANCE_ENABLED = True

#enable identity multi level(多級權限管理)
IDENTITY_MULTI_LEVEL = False

# use the qutota_management, set this True(配額管理, 依賴ticket, identity_multi_level, domain_quota)
QUOTA_MANAGEMENT = False

ALLOCATION_RATIO = 1
FLOATING_IP_ASSIGN_ADDRESS_ENABLED = True

# should use l2_only when there is no floatingip or router in neutron network env.
L2_ONLY = False
# instances page create instacne , when select share net , you can set the ip
ENABLE_SET_NIC_IP = False
# port creating page use can choose share net
ENABLE_CHOOSE_SHARE_NET = False
# when HOST_LIVE_MIGRATE = True,'host live migrate' will be enabled in hypervisors page
HOST_LIVE_MIGRATE = False

# when INSTANCE_APPOINT_HOST = True,it can appoint host when createing instance
INSTANCE_APPOINT_HOST = True

SAHARA_ENABLED = True
#when SAHARA_ENABLE = True and ***_CLUSTER = True,***_cluster will be enabled in sahara page
HADOOP_CLUSTER = True
SPARK_CLUSTER = True
STORM_CLUSTER = True
HBASE_CLUSTER = True
ZOOKEEPER_CLUSTER = True

# set max volume size
MAX_VOLUME_SIZE = 1000

#ESCLOUD_VERSION = 'V5.5'
ESCLOUD_VERSION = 'V4.0.2'

# set max floatingip bandwidth
MAX_FLOATINGIP_BANDWIDTH = 100

# Database settings for Itsm
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME': 'serial_host',
        'USER': 'root',
        'PASSWORD': '******',
        'HOST': '***.***.***.***',
        'PORT': '3306',
    },
    'itsm': {
        'ENGINE': 'django.db.backends.oracle',
        'NAME': 'pdbitsm',
        'USER': 'itsm_dxkj',
        'PASSWORD': '*******',
        'HOST': '***.***.***.***',
        'PORT': '1521',
    },
    'info': {
        'ENGINE': 'django.db.backends.oracle',
        'NAME': 'jkdb',
        'USER': 'xd4ypt',
        'PASSWORD': '*******',
        'HOST': '***.***.***.***',
        'PORT': '1522',
    }

}

DATABASE_ROUTERS = ['easystack_dashboard.database_router.DatabaseAppsRouter']

DATABASE_APPS_MAPPING = {
    'itsm': 'itsm',
    'info': 'info',
}

# Change this if you has chaged your table name
ITSM_TABLE_NAME = 'dx_gettbaseequipinfo'
INFO_TABLE_NAME = 'zysq_xnj4ypt'

# When set ENABLE_ITSM_SYS = True, ITSM Sys will be enable in dashboard
ENABLE_ITSM_SYS = True
ENABLE_INFO_DISPATH_SYS = True

JackDan Thinking

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章