DEPRECATED, Role os_panko for OpenStack-Ansible
Go to file
Jesse Pretorius c7dfd59acf Execute service setup against a delegated host using Ansible built-in modules
In order to reduce the packages required to pip install on to the hosts,
we allow the service setup to be delegated to a specific host, defaulting
to the deploy host. We also switch as many tasks as possible to using the
built-in Ansible modules which make use of the shade library.

The 'virtualenv' package is now installed appropriately by the openstack_hosts
role, so there's no need to install it any more. The 'httplib2' package is a
legacy Ansible requirement for the get_url/get_uri module which is no longer
needed. The keystone client library is not required any more now that we're
using the upstream modules. As there are no required packages left, the task
to install them is also removed.

Change-Id: I4279311e1022d8625503b41e69573e680fbb742a
2018-07-14 14:41:40 +01:00
defaults Execute service setup against a delegated host using Ansible built-in modules 2018-07-14 14:41:40 +01:00
doc Follow the new PTI for document build 2018-07-12 22:10:01 +01:00
examples Replace port 35357 with 5000 2018-06-24 16:25:55 +00:00
extras Move database creation into role 2018-06-28 17:49:30 +00:00
handlers Fix usage of "|" for tests 2018-07-12 16:57:01 +02:00
meta Execute service setup against a delegated host using Ansible built-in modules 2018-07-14 14:41:40 +01:00
releasenotes Fix releasenotes configuration 2018-03-01 14:06:29 +00:00
tasks Execute service setup against a delegated host using Ansible built-in modules 2018-07-14 14:41:40 +01:00
templates Openstack Ansible panko service role created 2018-01-05 14:59:49 +03:00
tests Execute service setup against a delegated host using Ansible built-in modules 2018-07-14 14:41:40 +01:00
vars Openstack Ansible panko service role created 2018-01-05 14:59:49 +03:00
zuul.d Switch to using project-templates 2018-06-22 15:23:38 -04:00
.gitignore Updated from OpenStack Ansible Tests 2018-03-27 15:55:14 +00:00
.gitreview Update branch for master, and add scaffolding for openstack-infra 2018-02-21 11:41:27 +00:00
CONTRIBUTING.rst Openstack Ansible panko service role created 2018-01-05 14:59:49 +03:00
LICENSE Openstack Ansible panko service role created 2018-01-05 14:59:49 +03:00
README.rst Update the project home to https 2018-07-05 21:35:26 -04:00
Vagrantfile Updated from OpenStack Ansible Tests 2018-06-06 00:43:28 +00:00
bindep.txt Update branch for master, and add scaffolding for openstack-infra 2018-02-21 11:41:27 +00:00
manual-test.rc Openstack Ansible panko service role created 2018-01-05 14:59:49 +03:00
run_tests.sh Updated from OpenStack Ansible Tests 2018-04-30 05:15:55 +00:00
setup.cfg Openstack Ansible panko service role created 2018-01-05 14:59:49 +03:00
setup.py Openstack Ansible panko service role created 2018-01-05 14:59:49 +03:00
tox.ini Use tests repo for common role test requirements 2018-07-12 22:11:55 +01:00

README.rst

Team and repository tags

image

OpenStack panko

Ansible role that installs and configures OpenStack panko as the event functionality of Telemetry.

This role will install the following:
  • panko-api

The role will configure panko to use mariaDB for event storage

Default Variables

../../defaults/main.yml

Required Variables

To use this role, define the following variables:

panko_container_db_password: "secrete"
# Password used for Keystone panko service user
panko_service_password: "secrete"
# Needed for panko to talk to memcached
memcached_servers: 127.0.0.1
memcached_encryption_key: "some_key"
# Needed to setup the panko service in Keystone
keystone_admin_user_name: admin
keystone_admin_tenant_name: admin
keystone_auth_admin_password: "SuperSecretePassword"
keystone_service_adminuri_insecure: false
keystone_service_internaluri_insecure: false
keystone_service_internaluri: "http://1.2.3.4:5000"
keystone_service_internalurl: "{{ keystone_service_internaluri }}/v3"
keystone_service_adminuri: "http://5.6.7.8:5000"
keystone_service_adminurl: "{{ keystone_service_adminuri }}/v3"

OpenStack-Ansible Panko

Ansible role to install OpenStack Panko.

Documentation for the project can be found at:

https://docs.openstack.org/openstack-ansible-os_panko/latest/

Release notes for the project can be found at:

https://docs.openstack.org/releasenotes/openstack-ansible-os_panko

The project home is at:

https://launchpad.net/openstack-ansible