Skip to main content

EGI FedCloud client

Project description

FedCloud client: Command-line client and library for EGI Federated Cloud

DOI

TL;DR: Visit the cheat sheet for real examples of fedcloud commands.

The FedCloud client is a high-level Python package for a command-line client designed for interaction with the OpenStack services in the EGI infrastructure. The client can access various EGI services and can perform many tasks for users including managing access tokens, listing services, and mainly execute commands on OpenStack sites in EGI infrastructure.

The most notable features of FedCloud client are following:

  • have wide ranges of useful commands, including checking access token, searching for services, listing sites and VOs, and interaction with OpenStack sites.

  • can perform any OpenStack command on any sites with only three parameters: the site, the VO and the command. For example, to list virtual machines (VM) images available to members of VO fedcloud.egi.eu on the site CYFRONET-CLOUD, run the following command:

    fedcloud openstack image list --vo fedcloud.egi.eu --site CYFRONET-CLOUD
    
  • can perform an action/command on all OpenStack sites in EGI infrastructure by specifying --site ALL_SITES.

  • can be used in scripts for automation or called directly from Python codes.

Five modules are included: fedcloudclient.checkin for operation with EGI Check-in like getting tokens, fedcloudclient.endpoint for searching endpoints via GOCDB, getting unscoped/scoped token from OpenStack keystone, fedcloudclient.sites for managing site configurations, fedcloudclient.openstack for performing OpenStack operations on sites, and finally fedcloudclient.ec3 for deploying elastic computing clusters in Cloud.

A short tutorial of the fedcloudclient is available in this presentation. The full documentation, including installation, usage and API description is available at https://fedcloudclient.fedcloud.eu/.

Quick start

  • Install FedCloud client via pip:

    pip3 install fedcloudclient
    

    or use Docker container:

    docker run -it  tdviet/fedcloudclient bash
    
  • Get a new access token from EGI Check-in according to instructions from EGI Check-in Token Portal, or from oidc-agent and set environment variable.

    export OIDC_ACCESS_TOKEN=<ACCESS_TOKEN>
    
  • Check the expiration time of the access token using fedcloud command:

    fedcloud token check
    
  • List the VO memberships of the access token:

    fedcloud token list-vos
    
  • List the OpenStack sites available in EGI Federated Cloud. That may take few seconds because all site configurations are retrieved from GitHub repository

    fedcloud site list
    
  • Save the site configuration to local machine at ~/.config/fedcloud/site-config/ to speed up the client's start in the next time:

    fedcloud site save-config
    
  • Execute an OpenStack command, e.g. list images in fedcloud.egi.eu VO on CYFRONET-CLOUD site (or other combination of site and VO you have access):

    fedcloud openstack image list --site CYFRONET-CLOUD --vo fedcloud.egi.eu
    
  • Execute an OpenStack command on all sites, e.g. list VMs in eosc-synergy.eu VO on all OpenStack sites in EGI Federated Cloud

    fedcloud openstack server list --site ALL_SITES --vo eosc-synergy.eu
    
  • Learn more commands of fedcloud client and experiment with them:

    fedcloud --help
    fedcloud site --help
    
  • Read the Quick start for more information about customizations and advanced usages.

Using fedcloudclient as development library

All functionalities offered by the fedcloud client can be used as a library for development of other tools and services for EGI Federated Cloud. For example, performing openstack command as a function in Python:

from fedcloudclient.openstack import fedcloud_openstack

....
error_code, result = fedcloud_openstack(oidc_access_token,
                                        site,
                                        vo,
                                        openstack_command)

See a working example "demo.py". The documentation of fedcloudclient API is available at https://fedcloudclient.fedcloud.eu/.

FAQ

  1. The fedcloud client is slow.

    Execute command fedcloud site save-config to download site configurations from GitHub repository and save them on a local machine. That will significantly speed up site configurations loading.

    Some sites in the repository may not respond, and client has to wait for long time before report "Connection time out". You can remove the sites from your local repository to speed-up all-sites operations

    libsodium which is used by oidc-agent Python library may be frozen at initialization on VMs with low entropy. The problem is described here. Check the entropy on the VMs by executing command cat /proc/sys/kernel/random/entropy_avail, and if the result is lower than 300, consider installing haveged or rng-tools to increase entropy. On VMs with CentOS, you also have to start the daemon manually after installation (or reboot the VMs)

  2. The fedcloud client fails with error message SSL exception connecting to <https://> ... when attempts to interact with some sites.

    Some sites use certificates issued by national grid CAs that are not included in default distribution, so fedcloud client cannot verify them. Follow this instruction to install EGI Core Trust Anchor and add certificates to Python request certificate bundle.

    In the case of using virtual environment for quick test, you can download and import bundle certificates by using the script from this repository

  3. The fedcloud client fails with error message "VO XX not found on site YY", but they do exist.

    Site configurations at GitHub repository may be incomplete. Check the site configurations stored in ~/.config/fedcloud/site-config/ if the VOs are included. If not, you can ask site admins to fix site configuration. You can also execute fedcloud endpoint projects --site SITE --oidc-access-token ACCESS_TOKEN to find project IDs of the VOs on the site and add the VOs to local site configuration on your machine manually.

  4. I would like to add supports for additional sites/VOs/identity providers that are not parts of EGI Federated Cloud.

    Other identity providers may be specified via option --oidc-url or environment variable CHECKIN_OIDC_URL. Additional sites and VOs may be added to local site configuration files.

  5. Why there are so many options for authentication: access token, refresh token, and oidc-agent? Which one should be used?

    Cloud operations need only access tokens, not refresh tokens. Access tokens have short lifetime (one hour in EGI Check-in), so they have lower security constraints. However, they have to be refreshed frequently, that may be inconvenient for some users.

    If a refresh token is given as parameter to fedcloud client (together with client ID and client secret), an access token will be generated on the fly from the refresh token and client ID/secret. However, using unencrypted refresh tokens is considered as insecure and will be removed in future versions in favor of oidc-agent.

    oidc-agent stores the refresh token securely and will automatically generate a new access token when the current one expires, so that is the recommended way to provide access token to fedcloudclient

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fedcloudclient-1.2.21.tar.gz (62.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fedcloudclient-1.2.21-py3-none-any.whl (32.3 kB view details)

Uploaded Python 3

File details

Details for the file fedcloudclient-1.2.21.tar.gz.

File metadata

  • Download URL: fedcloudclient-1.2.21.tar.gz
  • Upload date:
  • Size: 62.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for fedcloudclient-1.2.21.tar.gz
Algorithm Hash digest
SHA256 e5cd317f251dfd272dbf9638f86db11a915161ffa1afee4d644a72cf235ae61f
MD5 9099164c3a8eb489801f7ce43ef290f6
BLAKE2b-256 522496fbb8c452539479fd837a2c77bcc2f8fc7c83c012c847a2ee24417ebf90

See more details on using hashes here.

File details

Details for the file fedcloudclient-1.2.21-py3-none-any.whl.

File metadata

File hashes

Hashes for fedcloudclient-1.2.21-py3-none-any.whl
Algorithm Hash digest
SHA256 44f4dcb80bab3fd4ac700a5100e0a551d8ea90ac5d8445c529b7cf312ca69934
MD5 e2f75c363d58448eb048ddc805857718
BLAKE2b-256 e194a07e7b47fbccc95d4e306fc71dfc5ca0d17ede12fde53db56fb93cefa21e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page