How To Install python3-senlin on Ubuntu 20.04

In this tutorial we learn how to install python3-senlin on Ubuntu 20.04. python3-senlin is clustering service for OpenStack clouds - Python 3 clustering service for OpenStack clouds - Python 3

Introduction

In this tutorial we learn how to install python3-senlin on Ubuntu 20.04.

What is python3-senlin

python3-senlin is:

Senlin is a clustering service for OpenStack clouds. It creates and operates clusters of homogeneous objects exposed by other OpenStack services. The goal is to make the orchestration of collections of similar objects easier.

Senlin provides RESTful APIs to users so that they can associate various policies to a cluster. Sample policies include placement policy, load balancing policy, health policy, scaling policy, update policy and so on.

Senlin is designed to be capable of managing different types of objects. An object’s lifecycle is managed using profile type implementations, which are themselves plugins.

This package provides the Python 3 library.

Package: python3-senlin Architecture: all Version: 9.0.0~b3~git2020041014.4627fbfb-0ubuntu1 Priority: optional Section: universe/python Source: senlin Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian OpenStack [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 3835 Depends: python3-babel (>= 2.3.4), python3-docker (>= 2.4.2), python3-eventlet (>= 0.18.2), python3-jsonpath-rw (>= 1.2.0), python3-jsonschema (>= 2.6.0), python3-keystoneauth1 (>= 3.4.0), python3-keystonemiddleware (>= 4.17.0), python3-microversion-parse (>= 0.2.1), python3-migrate (>= 0.11.0), python3-openstacksdk (>= 0.42.0), python3-oslo.config (>= 1:5.2.0), python3-oslo.context (>= 1:2.19.2), python3-oslo.db (>= 4.27.0), python3-oslo.i18n (>= 3.15.3), python3-oslo.log (>= 3.36.0), python3-oslo.messaging (>= 5.29.0), python3-oslo.middleware (>= 3.31.0), python3-oslo.policy (>= 1.30.0), python3-oslo.reports (>= 1.18.0), python3-oslo.serialization (>= 2.18.0), python3-oslo.service (>= 1.24.0), python3-oslo.upgradecheck (>= 0.1.0), python3-oslo.utils (>= 3.33.0), python3-oslo.versionedobjects (>= 1.31.2), python3-osprofiler (>= 1.4.0), python3-pastedeploy (>= 1.5.0), python3-pbr (>= 2.0.0), python3-requests (>= 2.14.2), python3-routes (>= 2.3.1), python3-six (>= 1.10.0), python3-sqlalchemy (>= 1.0.10), python3-stevedore (>= 1:1.20.0), python3-tenacity (>= 4.9.0), python3-tz (>= 2013.6), python3-webob (>= 1:1.7.1), python3-yaml (>= 3.12), python3:any Filename: pool/universe/s/senlin/python3-senlin_9.0.0~b3~git2020041014.4627fbfb-0ubuntu1_all.deb Size: 358168 MD5sum: 90adc78374f56c438196aee5f42ccb64 SHA1: fd463835bab9087a0084721e594377ea33e4e142 SHA256: 23a48b34713bbb2a24c38b93b342174b8b3da51607b7d7c4f9cef630e0d1ac03 Homepage: https://github.com/stackforge/senlin Description-en: clustering service for OpenStack clouds - Python 3 Senlin is a clustering service for OpenStack clouds. It creates and operates clusters of homogeneous objects exposed by other OpenStack services. The goal is to make the orchestration of collections of similar objects easier.

Senlin provides RESTful APIs to users so that they can associate various policies to a cluster. Sample policies include placement policy, load balancing policy, health policy, scaling policy, update policy and so on.

Senlin is designed to be capable of managing different types of objects. An object’s lifecycle is managed using profile type implementations, which are themselves plugins.

This package provides the Python 3 library.

There are three methods to install python3-senlin on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install python3-senlin Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install python3-senlin using apt-get by running the following command:

sudo apt-get -y install python3-senlin

Install python3-senlin Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install python3-senlin using apt by running the following command:

sudo apt -y install python3-senlin

Install python3-senlin Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install python3-senlin using aptitude by running the following command:

sudo aptitude -y install python3-senlin

How To Uninstall python3-senlin on Ubuntu 20.04

To uninstall only the python3-senlin package we can use the following command:

sudo apt-get remove python3-senlin

Uninstall python3-senlin And Its Dependencies

To uninstall python3-senlin and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove python3-senlin

Remove python3-senlin Configurations and Data

To remove python3-senlin configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge python3-senlin

Remove python3-senlin configuration, data, and all of its dependencies

We can use the following command to remove python3-senlin configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge python3-senlin

References

Summary

In this tutorial we learn how to install python3-senlin package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.