Source Install Ubuntu

This section describes how to install and configure the Skyline APIServer service. Before you begin, you must have a ready OpenStack environment. At least it includes keystone, glance, nova and neutron service.

Prerequisites

Before you install and configure the Skyline APIServer service, you must create a database.

  1. To create the database, complete these steps:

    1. Use the database access client to connect to the database server as the root user:

      # mysql
      
    2. Create the skyline database:

      MariaDB [(none)]> CREATE DATABASE skyline DEFAULT CHARACTER SET \
        utf8 DEFAULT COLLATE utf8_general_ci;
      
    3. Grant proper access to the skyline database:

      MariaDB [(none)]> GRANT ALL PRIVILEGES ON skyline.* TO 'skyline'@'localhost' \
        IDENTIFIED BY 'SKYLINE_DBPASS';
      MariaDB [(none)]> GRANT ALL PRIVILEGES ON skyline.* TO 'skyline'@'%' \
        IDENTIFIED BY 'SKYLINE_DBPASS';
      

      Replace SKYLINE_DBPASS with a suitable password.

    4. Exit the database access client.

  2. Source the admin credentials to gain access to admin-only CLI commands:

    $ . admin-openrc
    
  3. To create the service credentials, complete these steps:

    1. Create a skyline user:

      $ openstack user create --domain default --password-prompt skyline
      
      User Password:
      Repeat User Password:
      +---------------------+----------------------------------+
      | Field               | Value                            |
      +---------------------+----------------------------------+
      | domain_id           | default                          |
      | enabled             | True                             |
      | id                  | 1qaz2wsx3edc4rfv5tgb6yhn7ujm8ikl |
      | name                | skyline                          |
      | options             | {}                               |
      | password_expires_at | None                             |
      +---------------------+----------------------------------+
      
    2. Add the admin role to the skyline user:

      $ openstack role add --project service --user skyline admin
      

      Note

      This command provides no output.

Install and configure components

We will install the Skyline APIServer service from source code.

  1. Git clone the repository from OpenDev (GitHub)

    $ sudo apt update
    $ sudo apt install -y git
    $ cd ${HOME}
    $ git clone https://opendev.org/openstack/skyline-apiserver.git
    

    Note

    If you meet the following error, you need to run command sudo apt install -y ca-certificates:

    fatal: unable to access ‘https://opendev.org/openstack/skyline-apiserver.git/’: server certificate verification failed. CAfile: none CRLfile: none

  2. Install skyline-apiserver from source

    $ sudo apt install -y python3-pip
    $ sudo pip3 install skyline-apiserver/
    
  3. Ensure that some folders of skyline-apiserver have been created

    $ sudo mkdir -p /etc/skyline /var/log/skyline
    
  4. Copy the configuration file to the configuration folder /etc/skyline

    $ sudo cp ${HOME}/skyline-apiserver/etc/gunicorn.py /etc/skyline/gunicorn.py
    $ sudo sed -i "s/^bind = *.*/bind = ['0.0.0.0:28000']/g" /etc/skyline/gunicorn.py
    $ sudo cp ${HOME}/skyline-apiserver/etc/skyline.yaml.sample /etc/skyline/skyline.yaml
    

    Note

    We need to change the bind value in /etc/skyline/gunicorn.py to 0.0.0.0:28000. Default value is unix:/var/lib/skyline/skyline.sock.

    Note

    Change the related configuration in /etc/skyline/skyline.yaml. Detailed introduction of the configuration can be found in Settings Reference.

    default:
      database_url: mysql://skyline:SKYLINE_DBPASS@DB_SERVER:3306/skyline
      debug: true
      log_dir: /var/log
    openstack:
      keystone_url: http://KEYSTONE_SERVER:5000/v3/
      system_user_password: SKYLINE_SERVICE_PASSWORD
    

    Replace SKYLINE_DBPASS, DB_SERVER, KEYSTONE_SERVER and SKYLINE_SERVICE_PASSWORD with a correct value.

  5. Populate the Skyline APIServer database

    $ cd ${HOME}/skyline-apiserver/
    $ make db_sync
    

Finalize installation

  1. Set start service config /etc/systemd/system/skyline-apiserver.service

    [Unit]
    Description=Skyline APIServer
    
    [Service]
    Type=simple
    ExecStart=/usr/local/bin/gunicorn -c /etc/skyline/gunicorn.py skyline_apiserver.main:app
    LimitNOFILE=32768
    
    [Install]
    WantedBy=multi-user.target
    
    $ sudo systemctl daemon-reload
    $ sudo systemctl enable skyline-apiserver
    $ sudo systemctl start skyline-apiserver