Viewing and Checking Region Status

This section explains how to list all deployed regions in Private Cloud Director and check their current deployment status using the airctl CLI tool.

List All Deployed Regions

To view the list of all regions currently deployed in the Self-Hosted version of Private Cloud Director , run:

/opt/pf9/airctl/airctl get-regions --config /opt/pf9/airctl/conf/airctl-config.yaml

This command retrieves region names directly from the state file and lists all currently active regions. Use it to confirm which regions are available before performing operations such as backups, deletions, or status checks.

Example output:

$ /opt/pf9/airctl/airctl get-regions --config /opt/pf9/airctl/conf/airctl-config.yaml 
Deployed Regions:
 Infra
 LON

Check Region Status

The airctl status command provides detailed information about the health and service status of each region.

By default, it shows the status of all deployed regions, including service counts and readiness indicators.

Status Command Flags

The airctl status command supports the following flags to customize output:

  • --region : Specifies which region’s status to display. This flag is mandatory when using --ready or --desired.

  • --ready: Displays only the number of Ready services for the specified region.

  • --desired: Displays only the number of Desired services for the specified region

Info

  • The --ready and --desired flags are mutually exclusive — only one can be used at a time.

  • When used, these flags print only the number of services in the specified state for the given region.

Examples:

View All Regions and their Status :

View status for a specific region :

View Ready Services for a Region :

View Desired Services for a Region :

Last updated

Was this helpful?