This website requires JavaScript.
2016年05月08日 12:03:41 -05:00
---
# Copyright 2016, Rackspace US, Inc.
# 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.
cloudkitty_username:cloudkitty
cloudkitty_user_password:secrete
2016年05月08日 12:28:50 -05:00
cloudkitty_rabbitmq_password:secrete
cloudkitty_system_group_name:cloudkitty
cloudkitty_system_user_name:cloudkitty
cloudkitty_system_comment:meow
cloudkitty_system_shell:/bin/false
cloudkitty_venv_tag:untagged
cloudkitty_venv_dir:"/openstack/venvs/cloudkitty-{{ cloudkitty_venv_tag }}"
2016年05月08日 12:03:41 -05:00
cloudkitty_git_repo:https://github.com/openstack/cloudkitty.git
cloudkitty_git_install_branch:master
cloudkitty_requirements_git_repo:https://git.openstack.org/openstack/requirements
cloudkitty_requirements_git_install_branch:master
cloudkitty_developer_mode:false
2016年05月08日 12:28:50 -05:00
cloudkitty_notification_topics:openstack
cloudkitty_collector:ceilometer
cloudkitty_project_name:admin
cloudkitty_project_domain_name:Default
cloudkitty_user_domain_name:Default
cloudkitty_domain_admin_password:secrete
cloudkitty_domain_admin:stack_domain_admin
cloudkitty_galera_database:cloudkitty
cloudkitty_galera_user:cloudkitty
cloudkitty_galera_password:secrete
cloudkitty_service_port:8089
cloudkitty_service_proto:http
cloudkitty_service_publicuri_proto:"{{ openstack_service_publicuri_proto | default(cloudkitty_service_proto) }}"
cloudkitty_service_adminuri_proto:"{{ openstack_service_adminuri_proto | default(cloudkitty_service_proto) }}"
cloudkitty_service_internaluri_proto:"{{ openstack_service_internaluri_proto | default(cloudkitty_service_proto) }}"
cloudkitty_service_type:orchestration
cloudkitty_service_publicuri:"{{ cloudkitty_service_publicuri_proto }}://{{ external_lb_vip_address }}:{{ cloudkitty_service_port }}"
cloudkitty_service_publicurl:"{{ cloudkitty_service_publicuri }}/v1/%(tenant_id)s"
cloudkitty_service_adminuri:"{{ cloudkitty_service_adminuri_proto }}://{{ internal_lb_vip_address }}:{{ cloudkitty_service_port }}"
cloudkitty_service_adminurl:"{{ cloudkitty_service_adminuri }}/v1/%(tenant_id)s"
cloudkitty_service_internaluri:"{{ cloudkitty_service_internaluri_proto }}://{{ internal_lb_vip_address }}:{{ cloudkitty_service_port }}"
cloudkitty_service_internalurl:"{{ cloudkitty_service_internaluri }}/v1/%(tenant_id)s"
cloudkitty_service_program_name:cloudkitty-api
cloudkitty_cloudkitty_conf_overrides:{}
cloudkitty_policy_overrides:{}
cloudkitty_api_paste_ini_overrides:{}
cloudkitty_service_names:[]
2016年05月08日 12:03:41 -05:00
cloudkitty_developer_constraints:
2016年05月08日 12:28:50 -05:00
"git+{{ cloudkitty_git_repo }}@{{ cloudkitty_git_install_branch }}#egg=cloudkitty"
- "{{ cloudkitty_developer_constraints }}"
- python-ceilometerclient
2016年05月08日 12:03:41 -05:00
# Name of the virtual env to deploy into
2016年05月08日 12:28:50 -05:00
cloudkitty_venv_bin:"{{ cloudkitty_venv_dir }}/bin"
2016年05月08日 12:03:41 -05:00
# Set this to enable or disable installing in a venv
cloudkitty_venv_enabled:true
# The bin path defaults to the venv path however if installation in a
# venv is disabled the bin path will be dynamically set based on the
# system path used when the installing.
cloudkitty_bin:"{{ cloudkitty_venv_bin }}"
2016年05月08日 12:28:50 -05:00
cloudkitty_requires_pip_packages:
2016年05月08日 12:03:41 -05:00
# The messaging driver to use, defaults to rabbit. Other drivers
# include qpid and zmq. (string value)
cloudkitty_rpc_backend:rabbit
# The default exchange under which topics are scoped. May be
# overridden by an exchange name specified in the transport_url
cloudkitty_control_exchange:openstack
# Host serving the API. (string value)
cloudkitty_api_host_ip:0.0.0.0
# Host port serving the API. (integer value)
2016年05月08日 12:28:50 -05:00
cloudkitty_database_connection:"mysql+pymysql://{{ cloudkitty_galera_user }}:{{ cloudkitty_galera_password }}@{{ cloudkitty_galera_address }}/{{ cloudkitty_galera_database }}?charset=utf8"