List, sort, and filter VM images available in the selected cloud.
List, sort, and filter VM flavors available in the selected cloud.
The VM List function allows you to view a list of all available VMs in the selected cloud. The interactive data table allows for sorting and filtering. It also provides the ability to start, stop, delete, login, and view logs. A card view is also available.
The Cloudmesh Dashboard offers view / editing of common configuration parameters
from the ~/.cloudmesh/cloudmesh.yaml. To access this feature click on Settings
in the left sidebar and click the button labeled "Cloudmesh Config".
The fields displayed on this page are defined in the renderer/fields/[section]-fields.js
files. To customize existing fields edit these files according as documented in each
file. When you are done editing you will need to run cms viewer deploy to see your changes.
cms viewer deploy
Customizable options at this time include:
- Key path to configuration value
- Label displayed for each value.
- Type of input field to use for the value. (supported types)
- Order of fields.
To create a new section of settings you need to do the following.
- Add a new field configuration file.
- Add an import for this file in
renderer/pages/settings/cloudmesh.js - Add a new component with the imported configuration file.
import myConfig from './myconfig-profile'
...
<Form>
<FormGroup groupTitle="My Config" fieldsConfig={myConfig} />
</Form>
...Don't forget to rund cms viewer deploy to compile your changes and install
the modified app.




