diff --git a/src/cli/etc/onehost.yaml b/src/cli/etc/onehost.yaml new file mode 100644 index 0000000000..8a8c781f9b --- /dev/null +++ b/src/cli/etc/onehost.yaml @@ -0,0 +1,53 @@ +--- +:ID: + :desc: ONE identifier for Host + :size: 4 + +:NAME: + :desc: Name of the Host + :size: 15 + :left: true + +:RVM: + :desc: Number of Virtual Machines running + :size: 6 + +:TCPU: + :desc: Total CPU percentage + :size: 6 + +:FCPU: + :desc: Free CPU percentage + :size: 6 + +:ACPU: + :desc: Available cpu percentage (not reserved by VMs) + :size: 6 + +:TMEM: + :desc: Total Memory + :size: 6 + +:FMEM: + :desc: Free Memory + :size: 6 + +:AMEM: + :desc: Available Memory (not reserved by VMs) + :size: 6 + +:STAT: + :desc: Host status + :size: 6 + +:default: +- :ID +- :NAME +- :RVM +- :TCPU +- :FCPU +- :ACPU +- :TMEM +- :FMEM +- :AMEM +- :STAT diff --git a/src/cli/etc/oneimage.yaml b/src/cli/etc/oneimage.yaml new file mode 100644 index 0000000000..3fba2892f5 --- /dev/null +++ b/src/cli/etc/oneimage.yaml @@ -0,0 +1,55 @@ +--- +:ID: + :desc: ONE identifier for the Image + :size: 4 + +:NAME: + :desc: Name of the Image + :size: 15 + :left: true + +:USER: + :desc: Username of the Virtual Machine owner + :size: 8 + :left: true + +:GROUP: + :desc: Group of the Virtual Machine + :size: 8 + :left: true + +:TYPE: + :desc: Type of the Image + :size: 4 + +:REGTIME: + :desc: Registration time of the Image + :size: 20 + +:PUBLIC: + :desc: Whether the Image is public or not + :size: 3 + +:PERSISTENT: + :desc: Whether the Image is persistent or not + :size: 3 + +:STAT: + :desc: State of the Image + :size: 4 + +:RVMS: + :desc: Number of VMs currently running from this Image + :size: 5 + +:default: +- :ID +- :USER +- :GROUP +- :NAME +- :TYPE +- :REGTIME +- :PUBLIC +- :PERSISTENT +- :STAT +- :RVMS