Disable providers

If you are planning to use Cloudbreak with a specific cloud provider or a specific set of cloud providers, you may want to disable the remaining providers. For example, if you are planning to use Cloudbreak with Azure only, you may want to disable AWS, Google Cloud, and OpenStack.

Steps

  1. Navigate to the Cloudbreak deployment directory and edit Profile. For example:

    cd /var/lib/cloudbreak-deployment/
    vi Profile

  2. Add the following entry, setting it to the provider that you would like to see. For example, if you would like to see Azure only, set this to "AZURE":

    export CB_ENABLEDPLATFORMS=AZURE

    Accepted values are:

    • AZURE
    • AWS
    • GCP
    • OPENSTACK

    Any combination of platforms can be used; for example if you would like to see AWS and OpenStack, then use:

    export CB_ENABLEDPLATFORMS=AWS,OPENSTACK

    If you want to reverse the change and see all providers, then either delete CB_ENABLEDPLATFORMS from the Profile or add the following:

    export CB_ENABLEDPLATFORMS=AZURE,AWS,GCP,OPENSTACK

  3. Restart Cloudbreak by using cbd restart.