From 6e5cebf1912f44ab9a467ba0029961a7a54090f1 Mon Sep 17 00:00:00 2001 From: irfanpule Date: Sat, 16 Sep 2023 20:13:00 +0700 Subject: [PATCH] change demo access --- .idea/yuyu_web.iml | 4 ++++ docs/demo.md | 4 ++-- site/demo/index.html | 4 ++-- site/search/search_index.json | 2 +- site/sitemap.xml.gz | Bin 127 -> 127 bytes 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.idea/yuyu_web.iml b/.idea/yuyu_web.iml index d0876a7..8b8c395 100644 --- a/.idea/yuyu_web.iml +++ b/.idea/yuyu_web.iml @@ -5,4 +5,8 @@ + + \ No newline at end of file diff --git a/docs/demo.md b/docs/demo.md index f7a6c96..cc037aa 100644 --- a/docs/demo.md +++ b/docs/demo.md @@ -7,10 +7,10 @@ Our resources is **free**, you can use for see how it work **Yuyu Billing** on * ### **Demo access** -- [https://demo.yuyu-billing.dev](https://demo.yuyu-billing.dev) +- [https://demo.yuyu-billing.dev/horizon/](https://demo.yuyu-billing.dev/horizon/) ### **Lab Credentials** ``` username : demo -password : nm*iW0vY505# +password : bMpZEwXbIFP0r1w ``` \ No newline at end of file diff --git a/site/demo/index.html b/site/demo/index.html index eafe063..3db049e 100644 --- a/site/demo/index.html +++ b/site/demo/index.html @@ -780,11 +780,11 @@

Our resources is free, you can use for see how it work Yuyu Billing on openstack, please follow guide bellow :

Demo access

Lab Credentials

username : demo
-password : nm*iW0vY505#
+password : bMpZEwXbIFP0r1w
 
diff --git a/site/search/search_index.json b/site/search/search_index.json index cab275a..d800581 100644 --- a/site/search/search_index.json +++ b/site/search/search_index.json @@ -1 +1 @@ -{"config":{"lang":["en"],"separator":"[\\s\\-]+","pipeline":["trimmer","stopWordFilter"]},"docs":[{"location":"architecture/","title":"Architecture","text":""},{"location":"architecture/#yuyu-architecture","title":"Yuyu Architecture","text":""},{"location":"architecture/#yuyu-components","title":"Yuyu Components","text":"

Yuyu have two components for running bellow :

"},{"location":"architecture/#1-yuyu-server","title":"1. Yuyu Server","text":"

Yuyu server provide ability to manage openstack billing by listening to every openstack event. Yuyu server is a required component to use Yuyu Dashboard. There are 3 main component in Yuyu server: API, Cron, Event Monitor. More detail about Yuyu server at https://github.com/Yuyu-billing/yuyu

  • Yuyu API : Main component to communicate with Yuyu Dashboard.

  • Yuyu Cron : Provide invoice calculation and rolling capabilities that needed to run every month.

  • Yuyu Event Monitor : Monitor event from openstack to calculate billing spent.

"},{"location":"architecture/#2-yuyu-dashboard","title":"2. Yuyu Dashboard","text":"

Yuyu dashboard is a panel at openstack dashboard that is used to manage your openstack bills. More detail about Yuyu server at https://github.com/Yuyu-billing/yuyu_dashboard

"},{"location":"billing-overview/","title":"Billing overview","text":"

The billing overview page is displayed in graphical form for easy viewing of total resources, active resources, and prices charged. This page can be seeing in Admin > Billing > Billing Overview.

"},{"location":"billing-settings/","title":"Billing Invoices Settings","text":"

For company profile you can set on admin settings menu like bellow :

"},{"location":"contact/","title":"Contact","text":""},{"location":"contact/#we-like-to-create-things-with-fun-open-minded-people-feel-free-to-ask","title":"We like to create things with fun, open-minded people. Feel free to ask!","text":"

Contact : yuyubilling@gmail.com

"},{"location":"cost/","title":"Usages cost","text":"

The usage cost page will display your usage details.

"},{"location":"demo/","title":"Demo","text":"

Our resources is free, you can use for see how it work Yuyu Billing on openstack, please follow guide bellow :

"},{"location":"demo/#demo-access","title":"Demo access","text":"
  • https://demo.yuyu-billing.dev
"},{"location":"demo/#lab-credentials","title":"Lab Credentials","text":"
username : demo\npassword : nm*iW0vY505#\n
"},{"location":"email_configuration/","title":"Email activating","text":"

Besides from notification center, we can receive billing invoice using email, for configuration

  • Update local_settings.py configuration file
cd /var/yuyu/\nnano yuyu/local_settings.py\n

  • Running dataabase migration
python manage.py migrate\n
  • After we configure email, now we received information from email

"},{"location":"features/","title":"Features","text":""},{"location":"features/#admin-dashboard","title":"Admin Dashboard","text":""},{"location":"features/#1-price-configuration","title":"1. Price Configuration","text":"

You can set the price on your openstack feature on this page.

"},{"location":"features/#2-project-overview","title":"2. Project Overview","text":"

This page will display a summary of the usage of all projects on your openstack.

"},{"location":"features/#3-projects-invoice","title":"3. Projects Invoice","text":"

This page will show the total usage of openstack in each project every month.

"},{"location":"features/#4-billing-settings","title":"4. Billing settings","text":"

Here for disable or enable billing setting

"},{"location":"features/#project-dashboard","title":"Project Dashboard","text":""},{"location":"features/#1-overview","title":"1. Overview","text":"

Summary of the usage in a project.

"},{"location":"features/#2-invoice","title":"2. Invoice","text":"

Your total openstack usage price

"},{"location":"features/#3-usage-cost","title":"3. Usage Cost","text":"

Details of your openstack usage

"},{"location":"installation/","title":"Installation","text":""},{"location":"installation/#1-yuyu-api-event-monitor","title":"1. Yuyu API & Event Monitor","text":"
  1. Clone the latest source code and put it on any directory you want. Here i assume you put it on /var

cd /var\ngit clone https://github.com/Yuyu-billing/yuyu.git\ncd yuyu\n
2. Create virtualenv (Need activated)

virtualenv env --python=python3.8\nsource env/bin/activate\npip install -r requirements.txt\n
3. Update local_settings.py configuration file

cp yuyu/local_settings.py.sample yuyu/local_settings.py\nvi yuyu/local_settings.py\n

Bellow for configuration :

YUYU_NOTIFICATION_URL = \"rabbit://openstack:password@127.0.0.1:5672//\"\nYUYU_NOTIFICATION_TOPICS = [\"notifications\"]\n

You can get YUYU_NOTIFICATION_URL from neutron.conf, bellow if using kolla-ansible deployment.

cat /etc/kolla/neutron-server/neutron.conf | grep transport_url\n
4. Run database migration

python manage.py migrate\n
5. Yuyu API installation
./bin/setup_api.sh\nsystemctl enable yuyu_api\nsystemctl start yuyu_api\nsystemctl status yuyu_api\n
6. Yuyu Event Monitor installation

./bin/setup_event_monitor.sh\nsystemctl enable yuyu_event_monitor\nsystemctl start yuyu_event_monitor\nsystemctl status yuyu_event_monitor\n
7. Crontab installation

crontab -e\n

Add on the end file bellow :

1 0 1 * * /var/yuyu/bin/process_invoice.sh\n
8. Disable virtualenv

Last step for Yuyu API is need disabled virtualenv.

deactivate\n
"},{"location":"installation/#2-yuyu-dashboard","title":"2. Yuyu Dashboard","text":"
  1. Clone Repository

cd /var\ngit clone https://github.com/Yuyu-billing/yuyu_dashboard.git\ncd yuyu_dashboard\n
2. Setup Yuyu dashboard

./setup_yuyu.sh\n\n...\nEnter horizon location and press ENTER.\nexample: /var/www/html/horizon\n...\n
3. Install Yuyu Dashboard Depencencies

pip3 install -r requirements.txt\n
4. Add config settings on horizon local_settings.py

vi /var/www/html/horizon/openstack_dashboard/local/local_settings.py\n
YUYU_URL=\"http://yuyu_server_url:8182\"\nCURRENCIES = ('IDR',)\nDEFAULT_CURRENCY = \"IDR\"\n

For YUYU_URL you can use

YUYU_URL=\"http://127.0.0.1:8182\"\n
5. Restart Horizon
systemctl restart apache2\n
6. Restart memcached (If dashboard login view not proper)
systemctl restart memcached\n

"},{"location":"installation/#verify-installation","title":"Verify Installation","text":"

Access Dashboard, make sure Billing tab available in the navigation pane dashboard, next step need enabled billing & create pricing.

"},{"location":"introduction/","title":"Introduction","text":""},{"location":"introduction/#what-is-yuyu","title":"What is Yuyu ?","text":"

Yuyu is a plugin in openstack that makes it easy for you to manage your openstack bills.

"},{"location":"introduction/#what-does-yuyu-count","title":"What does yuyu count?","text":"

Yuyu can set a price for the following OpenStack feature bellow :

"},{"location":"introduction/#1-pricing","title":"1. Pricing","text":"

Yuyu can set a price for the following OpenStack feature.

"},{"location":"introduction/#2-instance-flavor","title":"2. Instance Flavor","text":"

You can set the price for each Flavor that you have. Each instance that uses a flavor will be counted for Billing. You still be charged for instance even if the instance is stopped unless you delete it.

"},{"location":"introduction/#3-volume","title":"3. Volume","text":"

You can set the price for each volume type per 1 GB. You will be charged for every allocation. The the space allocated will be rounded up before calculating the price. For example you have a volume of 2.3 GB, that volume will be counted as 3 GB.

"},{"location":"introduction/#4-floating-ip","title":"4. Floating IP","text":"

You can set the price for each Floating IP that you allocate.

"},{"location":"introduction/#5-router","title":"5. Router","text":"

You can set the price for each Floating IP you allocate that has an external gateway set. Only router that has an external gateway that will be counted, router without external gateway will not be Counted

"},{"location":"introduction/#6-snapshot","title":"6. Snapshot","text":"

You can set the price for each snapshot you take per 1 GB. Same with volume, the space allocated will be rounded up before calculating the price.

"},{"location":"introduction/#7-image","title":"7. Image","text":"

You can set the price for each image you create per 1 GB. Same with volume and Snapshot, the space allocated will be rounded up before calculating the price.

"},{"location":"invoice/","title":"Download invoices summary","text":"

For usages summary document pricing currently in Alpha version you can download by PDF document with step bellow :

  • Firstly go to Invoices menu, you can use standard user or admin. And choose for months.

  • And then download your document

"},{"location":"notification/","title":"Notification Center","text":""},{"location":"pre-installation/","title":"Pre-Installation","text":""},{"location":"pre-installation/#virtualenv","title":"Virtualenv","text":"

Make sure you installed virtualenv before installing Yuyu

pip3 install virtualenv\napt install python3.8\n
"},{"location":"pre-installation/#openstack-service-notification","title":"Openstack Service Notification","text":"

You need to enable notification for this openstack service if ceilometer and gnochi service not activated:

  • Nova (nova.conf)
  • Cinder (cinder.conf)
  • Neutron (neutron.conf)
  • Keystone (keystone.conf)
"},{"location":"pre-installation/#1-nova","title":"1. Nova","text":"

Open nova.conf configuration on your controller environment

sudo nano nova.conf\n

Add configuration below oslo_messaging_notifications

driver = messagingv2 \ntopics = notifications\n

And add configuration below on notifications

notify_on_state_change = vm_and_task_state\nnotification_format = unversioned\n

"},{"location":"pre-installation/#2-cinder","title":"2. Cinder","text":"

Open cinder.conf configuration on your controller environment

sudo nano cinder.conf\n

Add configuration below on oslo_messaging_notifications

driver = messagingv2 \ntopics = notifications\n

"},{"location":"pre-installation/#3-neutron","title":"3. Neutron","text":"

Open neutron.conf configuration on your controller environment

sudo nano neutron.conf\n

Add configuration below on oslo_messaging_notifications

driver = messagingv2 \ntopics = notifications\n

"},{"location":"pre-installation/#4-keystone","title":"4. Keystone","text":"

Open keystone.conf configuration on your controller environment

sudo nano keystone.conf\n

Add configuration below on oslo_messaging_notifications

driver = messagingv2 \ntopics = notifications\n

"},{"location":"prerequisites/","title":"Prerequisites","text":""},{"location":"prerequisites/#system-requirement","title":"System Requirement","text":"

Before installing Yuyu, let's assume we already have installed apps bellow :

  • Openstack
  • or Openstack with enabling ceilometer and gnochi service
  • Virtualenv
  • Linux environment with Systemd
"},{"location":"prerequisites/#openstack-deployment-support","title":"OpenStack deployment support","text":"

Until alpha version for openstack deployment support, we have tested on :

  • Openstack using Kolla-Ansible
  • Openstack using Devstack
  • Openstack using Manual deployment
"},{"location":"prerequisites/#openstack-version-support","title":"OpenStack version support","text":"

Currently we have tested several openstack version to support yuyu :

  • Ussuri => Working
  • Xena => Working
  • Yoga => Working
"},{"location":"prerequisites/#openstack-installation","title":"OpenStack Installation","text":"

For openstack you can follow our documentation, deploy openstack using koll-ansible bellow :

Openstack Install Guide

"},{"location":"preusages/","title":"Pre-Usages","text":"

Before yuyu calculates your openstack usage, there are a few things to do.

  1. Complete price configuration items. If the price configuration is not complete then the system will show a warning and billing cannot be activated. For it we can follow this guide.

  2. Enable billing. If billing is disabled, yuyu never calculate openstack usage. Billing can be enabled if the price configuration is completed. Can set with Tab Admin -> Billing -> Billing Setting & Click Enable

"},{"location":"price/","title":"How to create pricing","text":"

Pricing feature for openstack you can manage bellow detail :

  • Flavor
  • Volume
  • Snapshot
  • Floating IP
  • Router
  • Images
"},{"location":"price/#create-price","title":"Create price","text":"
  • Firstly you need access to admin user, then to billing menu and click to Price Configuration and you can choose your feature for example Flavor pricing.
  • Then create your custom pricing for hourly & monthly:
  • And you can see, success to create flavor pricing
"}]} \ No newline at end of file +{"config":{"lang":["en"],"separator":"[\\s\\-]+","pipeline":["trimmer","stopWordFilter"]},"docs":[{"location":"architecture/","title":"Architecture","text":""},{"location":"architecture/#yuyu-architecture","title":"Yuyu Architecture","text":""},{"location":"architecture/#yuyu-components","title":"Yuyu Components","text":"

Yuyu have two components for running bellow :

"},{"location":"architecture/#1-yuyu-server","title":"1. Yuyu Server","text":"

Yuyu server provide ability to manage openstack billing by listening to every openstack event. Yuyu server is a required component to use Yuyu Dashboard. There are 3 main component in Yuyu server: API, Cron, Event Monitor. More detail about Yuyu server at https://github.com/Yuyu-billing/yuyu

  • Yuyu API : Main component to communicate with Yuyu Dashboard.

  • Yuyu Cron : Provide invoice calculation and rolling capabilities that needed to run every month.

  • Yuyu Event Monitor : Monitor event from openstack to calculate billing spent.

"},{"location":"architecture/#2-yuyu-dashboard","title":"2. Yuyu Dashboard","text":"

Yuyu dashboard is a panel at openstack dashboard that is used to manage your openstack bills. More detail about Yuyu server at https://github.com/Yuyu-billing/yuyu_dashboard

"},{"location":"billing-overview/","title":"Billing overview","text":"

The billing overview page is displayed in graphical form for easy viewing of total resources, active resources, and prices charged. This page can be seeing in Admin > Billing > Billing Overview.

"},{"location":"billing-settings/","title":"Billing Invoices Settings","text":"

For company profile you can set on admin settings menu like bellow :

"},{"location":"contact/","title":"Contact","text":""},{"location":"contact/#we-like-to-create-things-with-fun-open-minded-people-feel-free-to-ask","title":"We like to create things with fun, open-minded people. Feel free to ask!","text":"

Contact : yuyubilling@gmail.com

"},{"location":"cost/","title":"Usages cost","text":"

The usage cost page will display your usage details.

"},{"location":"demo/","title":"Demo","text":"

Our resources is free, you can use for see how it work Yuyu Billing on openstack, please follow guide bellow :

"},{"location":"demo/#demo-access","title":"Demo access","text":"
  • https://demo.yuyu-billing.dev/horizon/
"},{"location":"demo/#lab-credentials","title":"Lab Credentials","text":"
username : demo\npassword : bMpZEwXbIFP0r1w\n
"},{"location":"email_configuration/","title":"Email activating","text":"

Besides from notification center, we can receive billing invoice using email, for configuration

  • Update local_settings.py configuration file
cd /var/yuyu/\nnano yuyu/local_settings.py\n

  • Running dataabase migration
python manage.py migrate\n
  • After we configure email, now we received information from email

"},{"location":"features/","title":"Features","text":""},{"location":"features/#admin-dashboard","title":"Admin Dashboard","text":""},{"location":"features/#1-price-configuration","title":"1. Price Configuration","text":"

You can set the price on your openstack feature on this page.

"},{"location":"features/#2-project-overview","title":"2. Project Overview","text":"

This page will display a summary of the usage of all projects on your openstack.

"},{"location":"features/#3-projects-invoice","title":"3. Projects Invoice","text":"

This page will show the total usage of openstack in each project every month.

"},{"location":"features/#4-billing-settings","title":"4. Billing settings","text":"

Here for disable or enable billing setting

"},{"location":"features/#project-dashboard","title":"Project Dashboard","text":""},{"location":"features/#1-overview","title":"1. Overview","text":"

Summary of the usage in a project.

"},{"location":"features/#2-invoice","title":"2. Invoice","text":"

Your total openstack usage price

"},{"location":"features/#3-usage-cost","title":"3. Usage Cost","text":"

Details of your openstack usage

"},{"location":"installation/","title":"Installation","text":""},{"location":"installation/#1-yuyu-api-event-monitor","title":"1. Yuyu API & Event Monitor","text":"
  1. Clone the latest source code and put it on any directory you want. Here i assume you put it on /var

cd /var\ngit clone https://github.com/Yuyu-billing/yuyu.git\ncd yuyu\n
2. Create virtualenv (Need activated)

virtualenv env --python=python3.8\nsource env/bin/activate\npip install -r requirements.txt\n
3. Update local_settings.py configuration file

cp yuyu/local_settings.py.sample yuyu/local_settings.py\nvi yuyu/local_settings.py\n

Bellow for configuration :

YUYU_NOTIFICATION_URL = \"rabbit://openstack:password@127.0.0.1:5672//\"\nYUYU_NOTIFICATION_TOPICS = [\"notifications\"]\n

You can get YUYU_NOTIFICATION_URL from neutron.conf, bellow if using kolla-ansible deployment.

cat /etc/kolla/neutron-server/neutron.conf | grep transport_url\n
4. Run database migration

python manage.py migrate\n
5. Yuyu API installation
./bin/setup_api.sh\nsystemctl enable yuyu_api\nsystemctl start yuyu_api\nsystemctl status yuyu_api\n
6. Yuyu Event Monitor installation

./bin/setup_event_monitor.sh\nsystemctl enable yuyu_event_monitor\nsystemctl start yuyu_event_monitor\nsystemctl status yuyu_event_monitor\n
7. Crontab installation

crontab -e\n

Add on the end file bellow :

1 0 1 * * /var/yuyu/bin/process_invoice.sh\n
8. Disable virtualenv

Last step for Yuyu API is need disabled virtualenv.

deactivate\n
"},{"location":"installation/#2-yuyu-dashboard","title":"2. Yuyu Dashboard","text":"
  1. Clone Repository

cd /var\ngit clone https://github.com/Yuyu-billing/yuyu_dashboard.git\ncd yuyu_dashboard\n
2. Setup Yuyu dashboard

./setup_yuyu.sh\n\n...\nEnter horizon location and press ENTER.\nexample: /var/www/html/horizon\n...\n
3. Install Yuyu Dashboard Depencencies

pip3 install -r requirements.txt\n
4. Add config settings on horizon local_settings.py

vi /var/www/html/horizon/openstack_dashboard/local/local_settings.py\n
YUYU_URL=\"http://yuyu_server_url:8182\"\nCURRENCIES = ('IDR',)\nDEFAULT_CURRENCY = \"IDR\"\n

For YUYU_URL you can use

YUYU_URL=\"http://127.0.0.1:8182\"\n
5. Restart Horizon
systemctl restart apache2\n
6. Restart memcached (If dashboard login view not proper)
systemctl restart memcached\n

"},{"location":"installation/#verify-installation","title":"Verify Installation","text":"

Access Dashboard, make sure Billing tab available in the navigation pane dashboard, next step need enabled billing & create pricing.

"},{"location":"introduction/","title":"Introduction","text":""},{"location":"introduction/#what-is-yuyu","title":"What is Yuyu ?","text":"

Yuyu is a plugin in openstack that makes it easy for you to manage your openstack bills.

"},{"location":"introduction/#what-does-yuyu-count","title":"What does yuyu count?","text":"

Yuyu can set a price for the following OpenStack feature bellow :

"},{"location":"introduction/#1-pricing","title":"1. Pricing","text":"

Yuyu can set a price for the following OpenStack feature.

"},{"location":"introduction/#2-instance-flavor","title":"2. Instance Flavor","text":"

You can set the price for each Flavor that you have. Each instance that uses a flavor will be counted for Billing. You still be charged for instance even if the instance is stopped unless you delete it.

"},{"location":"introduction/#3-volume","title":"3. Volume","text":"

You can set the price for each volume type per 1 GB. You will be charged for every allocation. The the space allocated will be rounded up before calculating the price. For example you have a volume of 2.3 GB, that volume will be counted as 3 GB.

"},{"location":"introduction/#4-floating-ip","title":"4. Floating IP","text":"

You can set the price for each Floating IP that you allocate.

"},{"location":"introduction/#5-router","title":"5. Router","text":"

You can set the price for each Floating IP you allocate that has an external gateway set. Only router that has an external gateway that will be counted, router without external gateway will not be Counted

"},{"location":"introduction/#6-snapshot","title":"6. Snapshot","text":"

You can set the price for each snapshot you take per 1 GB. Same with volume, the space allocated will be rounded up before calculating the price.

"},{"location":"introduction/#7-image","title":"7. Image","text":"

You can set the price for each image you create per 1 GB. Same with volume and Snapshot, the space allocated will be rounded up before calculating the price.

"},{"location":"invoice/","title":"Download invoices summary","text":"

For usages summary document pricing currently in Alpha version you can download by PDF document with step bellow :

  • Firstly go to Invoices menu, you can use standard user or admin. And choose for months.

  • And then download your document

"},{"location":"notification/","title":"Notification Center","text":""},{"location":"pre-installation/","title":"Pre-Installation","text":""},{"location":"pre-installation/#virtualenv","title":"Virtualenv","text":"

Make sure you installed virtualenv before installing Yuyu

pip3 install virtualenv\napt install python3.8\n
"},{"location":"pre-installation/#openstack-service-notification","title":"Openstack Service Notification","text":"

You need to enable notification for this openstack service if ceilometer and gnochi service not activated:

  • Nova (nova.conf)
  • Cinder (cinder.conf)
  • Neutron (neutron.conf)
  • Keystone (keystone.conf)
"},{"location":"pre-installation/#1-nova","title":"1. Nova","text":"

Open nova.conf configuration on your controller environment

sudo nano nova.conf\n

Add configuration below oslo_messaging_notifications

driver = messagingv2 \ntopics = notifications\n

And add configuration below on notifications

notify_on_state_change = vm_and_task_state\nnotification_format = unversioned\n

"},{"location":"pre-installation/#2-cinder","title":"2. Cinder","text":"

Open cinder.conf configuration on your controller environment

sudo nano cinder.conf\n

Add configuration below on oslo_messaging_notifications

driver = messagingv2 \ntopics = notifications\n

"},{"location":"pre-installation/#3-neutron","title":"3. Neutron","text":"

Open neutron.conf configuration on your controller environment

sudo nano neutron.conf\n

Add configuration below on oslo_messaging_notifications

driver = messagingv2 \ntopics = notifications\n

"},{"location":"pre-installation/#4-keystone","title":"4. Keystone","text":"

Open keystone.conf configuration on your controller environment

sudo nano keystone.conf\n

Add configuration below on oslo_messaging_notifications

driver = messagingv2 \ntopics = notifications\n

"},{"location":"prerequisites/","title":"Prerequisites","text":""},{"location":"prerequisites/#system-requirement","title":"System Requirement","text":"

Before installing Yuyu, let's assume we already have installed apps bellow :

  • Openstack
  • or Openstack with enabling ceilometer and gnochi service
  • Virtualenv
  • Linux environment with Systemd
"},{"location":"prerequisites/#openstack-deployment-support","title":"OpenStack deployment support","text":"

Until alpha version for openstack deployment support, we have tested on :

  • Openstack using Kolla-Ansible
  • Openstack using Devstack
  • Openstack using Manual deployment
"},{"location":"prerequisites/#openstack-version-support","title":"OpenStack version support","text":"

Currently we have tested several openstack version to support yuyu :

  • Ussuri => Working
  • Xena => Working
  • Yoga => Working
"},{"location":"prerequisites/#openstack-installation","title":"OpenStack Installation","text":"

For openstack you can follow our documentation, deploy openstack using koll-ansible bellow :

Openstack Install Guide

"},{"location":"preusages/","title":"Pre-Usages","text":"

Before yuyu calculates your openstack usage, there are a few things to do.

  1. Complete price configuration items. If the price configuration is not complete then the system will show a warning and billing cannot be activated. For it we can follow this guide.

  2. Enable billing. If billing is disabled, yuyu never calculate openstack usage. Billing can be enabled if the price configuration is completed. Can set with Tab Admin -> Billing -> Billing Setting & Click Enable

"},{"location":"price/","title":"How to create pricing","text":"

Pricing feature for openstack you can manage bellow detail :

  • Flavor
  • Volume
  • Snapshot
  • Floating IP
  • Router
  • Images
"},{"location":"price/#create-price","title":"Create price","text":"
  • Firstly you need access to admin user, then to billing menu and click to Price Configuration and you can choose your feature for example Flavor pricing.
  • Then create your custom pricing for hourly & monthly:
  • And you can see, success to create flavor pricing
"}]} \ No newline at end of file diff --git a/site/sitemap.xml.gz b/site/sitemap.xml.gz index 763572d43298057347a78380b2174aeef9e43c6d..2b9c95b0b3b266ea79d12b420e1db589c9139112 100644 GIT binary patch delta 13 Ucmb=gXP58h;F!LWbs~EO033D%6#xJL delta 13 Ucmb=gXP58h;3$(~naExN02tu|WB>pF