-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvm_deploy.yaml
54 lines (54 loc) · 1.48 KB
/
vm_deploy.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
name: vm_deploy
runner_type: python-script
description: Creates and automatically starts a virtual machine based on a service offering, disk offering, and template. API command deployVirtualMachine
enabled: true
entry_point: vm_deploy.py
parameters:
url:
type: string
description: URL to use at ACS request
required: false
apikey:
type: string
description: API KEY to use at ACS request
required: true
secret: true
secretkey:
type: string
description: Secret KEY to use at ACS request
required: true
secret: true
name:
type: string
description: Host name for the virtual machine.
required: false
project_id:
type: string
description: Deploy vm for the project.
required: true
zone_id:
type: string
description: Availability zone for the virtual machine.
required: true
template_id:
type: string
description: The ID of the template for the virtual machine.
required: true
service_offering_id:
type: string
description: The ID of the service offering for the virtual machine.
required: true
network_ids:
type: array
description: List of network ids used by virtual machine.
required: true
hyper_visor:
type: string
description: The hypervisor on which to deploy the virtual machine.
required: true
default: XenServer
userdata:
type: string
description: Binary data that can be sent to the virtual machine upon a successful deployment.
required: false