This repository was archived by the owner on Feb 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathtask.template.html
More file actions
154 lines (154 loc) · 6.41 KB
/
Copy pathtask.template.html
File metadata and controls
154 lines (154 loc) · 6.41 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<style>
.asterisk {
color : red;
}
</style>
<a href="https://docs.docker.com/machine/reference/create/">Docker create documentation</a>
<br>
<div class="form_item_block">
<div class="form_item_block">
<label>Name(s) of the virtual machine(s). Format is text[format,start,stop,step]text. You can enter multiple
names, separated with a semicolon. <span class="asterisk">*</span></label>
<input type="text" ng-model="VMNAME" ng-required="true">
</div>
</div>
<div class="form_item_block">
<input id="REMOVE2" type="checkbox" ng-model="REMOVE2" ng-init="REMOVE2 = REMOVE"
ng-change="REMOVE = REMOVE2" ng-true-value="true" ng-false-value="false">
<input id="specifytargets" type="hidden" ng-model="REMOVE" value="{{REMOVE}}">
<label>Remove machine and/or configuration before creating a new one</label>
</div>
<div class="form_item_block">
<label>Specify environment variables to set in the engine</label>
<input type="text" ng-model="ENGINE_ENV" ng-required="false">
</div>
<div class="form_item_block">
<label>Specify arbitrary daemon options with the syntax name=value. Multiple pairs can be provided separated by
','</label>
<input type="text" ng-model="ENGINE_OPT" ng-required="false">
</div>
<div class="form_item_block">
<H2>Driver used by create</H2>
<select ng-model="DRIVER">
<option value="undefined">-- undefined --</option>
<option value="generic">generic</option>
<option value="vmwarevsphere">vmwarevsphere</option>
<option value="azure">azure</option>
</select>
</div>
<div class="form_item_block">
<div class="driver_generic" ng-show="DRIVER=='generic'">
<H2>Generic Driver</H2>
<div class="form_item_block">
<label>Path to the SSH user private key (must be accessible from go-agent!)</label>
<input type="text" ng-model="GENERIC_SSH_KEY">
</div>
<div class="form_item_block">
<label>SSH username used to connect</label>
<input type="text" ng-model="GENERIC_SSH_USER">
</div>
<div class="form_item_block">
<label>IP Address of host</label>
<input type="text" ng-model="GENERIC_IP_ADDRESS">
</div>
<div class="form_item_block">
<label>Port to use for SSH</label>
<input type="text" ng-model="GENERIC_SSH_PORT">
</div>
<div class="form_item_block">
<label>Port to use for Docker Daemon (Note: This flag will not work with boot2docker).</label>
<input type="text" ng-model="GENERIC_ENGINE_PORT">
</div>
</div>
</div>
<div class="form_item_block">
<div class="driver_vsphere" ng-show="DRIVER=='vmwarevsphere'">
<H2>VMWare VSphere Driver</H2>
<div class="form_item_block">
<label>Username</label>
<input type="text" ng-model="VSPHERE_USERNAME">
</div>
<div class="form_item_block">
<label>Password</label>
<input type="password" ng-model="VSPHERE_PASSWORD">
</div>
<div class="form_item_block">
<label>IP/hostname for vCenter or ESXi</label>
<input type="text" ng-model="VSPHERE_VCENTER">
</div>
<div class="form_item_block">
<label>DataCenter (for ESXi use ha-datacenter)</label>
<input type="text" ng-model="VSPHERE_DATACENTER">
</div>
<div class="form_item_block">
<label>CPU count</label>
<input type="text" ng-model="VSPHERE_CPU_COUNT">
</div>
<div class="form_item_block">
<label>Memory size</label>
<input type="text" ng-model="VSPHERE_MEMORY_SIZE">
</div>
<div class="form_item_block">
<label>Disk size</label>
<input type="text" ng-model="VSPHERE_DISK_SIZE">
</div>
<div class="form_item_block">
<label>URL of BootImage</label>
<input type="text" ng-model="VSPHERE_BOOT2DOCKER_URL">
</div>
</div>
</div>
<div class="form_item_block">
<div class="driver_generic" ng-show="DRIVER=='azure'">
<H2>Azure Driver</H2>
<div class="form_item_block">
<label>Your Azure Subscription ID</label>
<input type="text" ng-model="AZURE_SUBSCRIPTION_ID">
</div>
<div class="form_item_block">
<label>Azure environment (e.g. AzurePublicCloud, AzureChinaCloud)</label>
<input type="text" ng-model="AZURE_ENVIRONMENT">
</div>
<div class="form_item_block">
<label>Azure virtual machine image in the format of Publisher:Offer:Sku:Version</label>
<input type="text" ng-model="AZURE_IMAGE">
</div>
<div class="form_item_block">
<label>Azure region to create the virtual machine</label>
<input type="text" ng-model="AZURE_LOCATION">
</div>
<div class="form_item_block">
<label>Azure Resource Group name to create the resources in.</label>
<input type="text" ng-model="AZURE_RESOURCE_GROUP">
</div>
<div class="form_item_block">
<label>Size for Azure Virtual Machine</label>
<input type="text" ng-model="AZURE_SIZE">
</div>
<div class="form_item_block">
<label>Username for SSH login</label>
<input type="text" ng-model="AZURE_SSH_USER">
</div>
<div class="form_item_block">
<label>Azure Virtual Network name to connect the virtual machine</label>
<input type="text" ng-model="AZURE_VNET">
</div>
<div class="form_item_block">
<label>Azure Subnet Name to be used within the Virtual Network.</label>
<input type="text" ng-model="AZURE_SUBNET">
</div>
<div class="form_item_block">
<label>Private CIDR block. Used to create subnet if it does not exist. Must match in the case that the
subnet does exist.</label>
<input type="text" ng-model="AZURE_SUBNET_PREFIX">
</div>
<div class="form_item_block">
<label>Azure Availability Set to place the virtual machine into</label>
<input type="text" ng-model="AZURE_AVAILABILITY_SET">
</div>
<div class="form_item_block">
<label>Port number for Docker engine </label>
<input type="text" ng-model="AZURE_DOCKER_PORT">
</div>
</div>
</div>