mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-21 08:41:17 +00:00
* Add schema generation and remove default values * fix monitoring schema generation * fix default values Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
19 lines
686 B
YAML
19 lines
686 B
YAML
## @section Common parameters
|
|
|
|
## @param external Enable external access from outside the cluster
|
|
## @param running Determines if the virtual machine should be running
|
|
## @param password The default password for the virtual machine
|
|
## @param image The base image for the virtual machine. Allowed values: `ubuntu`, `cirros`, `alpine` and `fedora`
|
|
## @param disk The size of the disk allocated for the virtual machine
|
|
## @param resources.cpu The number of CPU cores allocated to the virtual machine
|
|
## @param resources.memory The amount of memory allocated to the virtual machine
|
|
|
|
external: false
|
|
running: true
|
|
password: hackme
|
|
image: ubuntu
|
|
disk: 5Gi
|
|
resources:
|
|
cpu: 1
|
|
memory: 1024M
|