Files
Dmitriy Rabotyagov 5e8853aa29 Move freezer panel under Projects dashboard
We are getting rid of own Dashboard that exists along with
Projects, Admin and Indentity into the projects.

For that we append `freezer` to the slug, to ensure slugs are actually
unique per deployment, and will not conflict with any other pluggable
panel.

Change-Id: I6b26387f702b5b61c45633cea0fc85bc705a7ed3
Signed-off-by: Dmitriy Rabotyagov <dmitriy.rabotyagov@cleura.com>
2026-02-02 16:58:07 +01:00
..
2018-01-29 14:25:56 +00:00
2019-11-15 17:26:49 -08:00

This directory contains the Freezer Web UI DevStack plugin.

To configure the Freezer Web UI with DevStack, you will need to enable this plugin by adding one line to the local section of your local.conf file.

To enable the plugin, add a line of the form:

enable_plugin freezer-web-ui <GITURL> [GITREF]

where:

<GITURL> is the URL of a freezer-web-ui repository
[GITREF] is an optional git ref (branch/ref/tag).  The default is master.

For example:

enable_plugin freezer-web-ui https://github.com/openstack/freezer-web-ui master

This is a sample local.conf file for freezer developer:

[[local|localrc]]
ADMIN_PASSWORD=stack
DATABASE_PASSWORD=stack
RABBIT_PASSWORD=stack
SERVICE_PASSWORD=$ADMIN_PASSWORD

DEST=/opt/stack
LOGFILE=$DEST/logs/stack.sh.log

# only install keystone/horizon/swift in devstack
# disable_all_services
# enable_service key mysql s-proxy s-object s-container s-account horizon

enable_plugin freezer http://git.openstack.org/openstack/freezer master
enable_plugin freezer-api http://git.openstack.org/openstack/freezer-api.git master
enable_plugin freezer-tempest-plugin http://git.openstack.org/openstack/freezer-tempest-plugin.git master
enable_plugin freezer-web-ui http://git.openstack.org/openstack/freezer-web-ui.git master

export FREEZER_BACKEND='sqlalchemy'
For more information, see:

https://docs.openstack.org/devstack/latest/index.html