123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- # -*- coding: utf-8 -*-
- # 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.
- """
- Installs and configures Ceilometer
- """
- import uuid
- from packstack.installer import basedefs
- from packstack.installer import utils
- from packstack.installer import validators
- from packstack.installer import processors
- from packstack.modules.documentation import update_params_usage
- from packstack.modules.ospluginutils import generate_ssl_cert
- # ------------- Ceilometer Packstack Plugin Initialization --------------
- PLUGIN_NAME = "OS-Ceilometer"
- PLUGIN_NAME_COLORED = utils.color_text(PLUGIN_NAME, 'blue')
- def initConfig(controller):
- ceilometer_params = {
- "CEILOMETER": [
- {"CONF_NAME": "CONFIG_CEILOMETER_SECRET",
- "CMD_OPTION": "ceilometer-secret",
- "PROMPT": "Enter the Ceilometer secret key",
- "OPTION_LIST": [],
- "VALIDATORS": [validators.validate_not_empty],
- "DEFAULT_VALUE": uuid.uuid4().hex[:16],
- "MASK_INPUT": True,
- "LOOSE_VALIDATION": False,
- "USE_DEFAULT": True,
- "NEED_CONFIRM": True,
- "CONDITION": False},
- {"CONF_NAME": "CONFIG_CEILOMETER_KS_PW",
- "CMD_OPTION": "ceilometer-ks-passwd",
- "PROMPT": "Enter the password for the Ceilometer Keystone access",
- "OPTION_LIST": [],
- "VALIDATORS": [validators.validate_not_empty],
- "DEFAULT_VALUE": "PW_PLACEHOLDER",
- "PROCESSORS": [processors.process_password],
- "MASK_INPUT": True,
- "LOOSE_VALIDATION": False,
- "USE_DEFAULT": False,
- "NEED_CONFIRM": True,
- "CONDITION": False},
- {"CMD_OPTION": "ceilometer-service-name",
- "PROMPT": "Enter the Ceilometer service name.",
- "OPTION_LIST": ['ceilometer', 'httpd'],
- "VALIDATORS": [validators.validate_options],
- "DEFAULT_VALUE": "httpd",
- "MASK_INPUT": False,
- "LOOSE_VALIDATION": False,
- "CONF_NAME": 'CONFIG_CEILOMETER_SERVICE_NAME',
- "USE_DEFAULT": False,
- "NEED_CONFIRM": False,
- "CONDITION": False},
- {"CONF_NAME": "CONFIG_CEILOMETER_COORDINATION_BACKEND",
- "CMD_OPTION": "ceilometer-coordination-backend",
- "PROMPT": "Enter the coordination driver",
- "OPTION_LIST": ['redis', 'none'],
- "VALIDATORS": [validators.validate_options],
- "DEFAULT_VALUE": 'redis',
- "MASK_INPUT": False,
- "USE_DEFAULT": True,
- "NEED_CONFIRM": False,
- "CONDITION": False},
- {"CONF_NAME": "CONFIG_CEILOMETER_METERING_BACKEND",
- "CMD_OPTION": "ceilometer-metering-backend",
- "PROMPT": "Enter the metering backend to use",
- "OPTION_LIST": ['database', 'gnocchi'],
- "VALIDATORS": [validators.validate_options],
- "DEFAULT_VALUE": 'database',
- "MASK_INPUT": False,
- "USE_DEFAULT": True,
- "NEED_CONFIRM": False,
- "CONDITION": False},
- {"CONF_NAME": "CONFIG_CEILOMETER_EVENTS_BACKEND",
- "CMD_OPTION": "ceilometer-events-backend",
- "PROMPT": "Enter the events backend to use",
- "OPTION_LIST": ['database', 'panko'],
- "VALIDATORS": [validators.validate_options],
- "DEFAULT_VALUE": 'database',
- "MASK_INPUT": False,
- "USE_DEFAULT": False,
- "NEED_CONFIRM": False,
- "CONDITION": False},
- ],
- "MONGODB": [
- {"CMD_OPTION": "mongodb-host",
- "PROMPT": "Enter the host for the MongoDB server",
- "OPTION_LIST": [],
- "VALIDATORS": [validators.validate_ssh],
- "DEFAULT_VALUE": utils.get_localhost_ip(),
- "MASK_INPUT": False,
- "LOOSE_VALIDATION": True,
- "CONF_NAME": "CONFIG_MONGODB_HOST",
- "USE_DEFAULT": False,
- "NEED_CONFIRM": False,
- "CONDITION": False},
- ],
- "REDIS": [
- {"CMD_OPTION": "redis-host",
- "PROMPT": "Enter the host for the Redis server",
- "OPTION_LIST": [],
- "VALIDATORS": [validators.validate_ssh],
- "DEFAULT_VALUE": utils.get_localhost_ip(),
- "MASK_INPUT": False,
- "LOOSE_VALIDATION": False,
- "CONF_NAME": "CONFIG_REDIS_HOST",
- "USE_DEFAULT": False,
- "NEED_CONFIRM": False,
- "CONDITION": False,
- "DEPRECATES": ["CONFIG_REDIS_MASTER_HOST"]},
- {"CMD_OPTION": "redis-port",
- "PROMPT": "Enter the port of the redis server(s)",
- "OPTION_LIST": [],
- "VALIDATORS": [validators.validate_port],
- "DEFAULT_VALUE": 6379,
- "MASK_INPUT": False,
- "LOOSE_VALIDATION": False,
- "CONF_NAME": "CONFIG_REDIS_PORT",
- "USE_DEFAULT": False,
- "NEED_CONFIRM": False,
- "CONDITION": False},
- ],
- }
- update_params_usage(basedefs.PACKSTACK_DOC, ceilometer_params)
- ceilometer_groups = [
- {"GROUP_NAME": "CEILOMETER",
- "DESCRIPTION": "Ceilometer Config parameters",
- "PRE_CONDITION": "CONFIG_CEILOMETER_INSTALL",
- "PRE_CONDITION_MATCH": "y",
- "POST_CONDITION": False,
- "POST_CONDITION_MATCH": True},
- {"GROUP_NAME": "MONGODB",
- "DESCRIPTION": "MONGODB Config parameters",
- "PRE_CONDITION": "CONFIG_CEILOMETER_INSTALL",
- "PRE_CONDITION_MATCH": "y",
- "POST_CONDITION": False,
- "POST_CONDITION_MATCH": True},
- {"GROUP_NAME": "REDIS",
- "DESCRIPTION": "Redis Config parameters",
- "PRE_CONDITION": "CONFIG_CEILOMETER_COORDINATION_BACKEND",
- "PRE_CONDITION_MATCH": "redis",
- "POST_CONDITION": False,
- "POST_CONDITION_MATCH": True},
- ]
- for group in ceilometer_groups:
- paramList = ceilometer_params[group["GROUP_NAME"]]
- controller.addGroup(group, paramList)
- def initSequences(controller):
- if controller.CONF['CONFIG_CEILOMETER_INSTALL'] != 'y':
- return
- steps = [{'title': 'Preparing MongoDB entries',
- 'functions': [create_mongodb_manifest]},
- {'title': 'Preparing Redis entries',
- 'functions': [create_redis_manifest]},
- {'title': 'Preparing Ceilometer entries',
- 'functions': [create_manifest]}]
- controller.addSequence("Installing OpenStack Ceilometer", [], [],
- steps)
- # -------------------------- step functions --------------------------
- def create_manifest(config, messages):
- if config['CONFIG_AMQP_ENABLE_SSL'] == 'y':
- ssl_cert_file = config['CONFIG_CEILOMETER_SSL_CERT'] = (
- '/etc/pki/tls/certs/ssl_amqp_ceilometer.crt'
- )
- ssl_key_file = config['CONFIG_CEILOMETER_SSL_KEY'] = (
- '/etc/pki/tls/private/ssl_amqp_ceilometer.key'
- )
- ssl_host = config['CONFIG_CONTROLLER_HOST']
- service = 'ceilometer'
- generate_ssl_cert(config, ssl_host, service, ssl_key_file,
- ssl_cert_file)
- fw_details = dict()
- key = "ceilometer_api"
- fw_details.setdefault(key, {})
- fw_details[key]['host'] = "ALL"
- fw_details[key]['service_name'] = "ceilometer-api"
- fw_details[key]['chain'] = "INPUT"
- fw_details[key]['ports'] = ['8777']
- fw_details[key]['proto'] = "tcp"
- config['FIREWALL_CEILOMETER_RULES'] = fw_details
- def create_mongodb_manifest(config, messages):
- host = config['CONFIG_MONGODB_HOST']
- if config['CONFIG_IP_VERSION'] == 'ipv6':
- config['CONFIG_MONGODB_HOST_URL'] = "[%s]" % host
- else:
- config['CONFIG_MONGODB_HOST_URL'] = host
- fw_details = dict()
- key = "mongodb_server"
- fw_details.setdefault(key, {})
- fw_details[key]['host'] = "%s" % config['CONFIG_CONTROLLER_HOST']
- fw_details[key]['service_name'] = "mongodb-server"
- fw_details[key]['chain'] = "INPUT"
- fw_details[key]['ports'] = ['27017']
- fw_details[key]['proto'] = "tcp"
- config['FIREWALL_MONGODB_RULES'] = fw_details
- def create_redis_manifest(config, messages):
- if config['CONFIG_CEILOMETER_COORDINATION_BACKEND'] == 'redis':
- redis_host = config['CONFIG_REDIS_HOST']
- if config['CONFIG_IP_VERSION'] == 'ipv6':
- config['CONFIG_REDIS_HOST_URL'] = "[%s]" % redis_host
- else:
- config['CONFIG_REDIS_HOST_URL'] = redis_host
- # master
- master_clients = set([config['CONFIG_CONTROLLER_HOST']])
- config['FIREWALL_REDIS_RULES'] = _create_redis_firewall_rules(
- master_clients, config['CONFIG_REDIS_PORT'])
- # ------------------------- helper functions -------------------------
- def _create_redis_firewall_rules(hosts, port):
- fw_details = dict()
- for host in hosts:
- key = "redis service from %s" % host
- fw_details.setdefault(key, {})
- fw_details[key]['host'] = "%s" % host
- fw_details[key]['service_name'] = "redis service"
- fw_details[key]['chain'] = "INPUT"
- fw_details[key]['ports'] = port
- fw_details[key]['proto'] = "tcp"
- return fw_details
|