-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.yaml
More file actions
58 lines (53 loc) · 2.05 KB
/
config.example.yaml
File metadata and controls
58 lines (53 loc) · 2.05 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
# Minimal config example.
# For the fully commented operator template with mandatory/optional notes and default behavior,
# see: examples/config.full.example.yaml
vcenter:
host: vcenter.example.com
user: administrator@vsphere.local
# Prefer passing password as env var VC_PASSWORD at runtime.
password: ""
cloudstack:
# Accepts any of:
# - hostname/IP only: "cloudstack-mgmt.example.com" (defaults to http + /client/api)
# - hostname/IP with port: "cloudstack-mgmt.example.com:8080"
# - full URL: "http://cloudstack-mgmt.example.com:8080/client/api"
endpoint: "cloudstack.example.com:8080"
api_key: "change-me"
secret_key: "change-me"
# Optional default timeout in seconds for CloudStack API requests from both
# the engine and the UI/API backend. Useful for slow listNetworks/listOsTypes calls.
timeout_seconds: 90
cloudstack_defaults:
zoneid: ""
clusterid: ""
storageid: ""
networkid: ""
serviceofferingid: ""
diskofferingid: ""
ostypeid: ""
boottype: ""
bootmode: ""
rootdiskcontroller: ""
nicadapter: ""
migration:
# REQUIRED for run mode:
# Path to extracted VMware VDDK root containing include/vixDiskLib.h and lib64/libvixDiskLib.so*
vddk_path: /opt/vmware-vddk/vmware-vix-disklib-distrib
# Optional orchestrator defaults for run mode.
control_dir: /var/lib/vm-migrator
# Optional lookup directory for API start-by-filename.
# Keeping this same as control_dir avoids confusion when specs live per VM folder.
specs_dir: /var/lib/vm-migrator
# Working directory for API-launched run jobs. Must exist.
workdir: /var/lib/vm-migrator
shutdown_mode: auto # auto | force | manual
# Optional final settle delay before taking the final snapshot after shutdown.
# If omitted/0, the engine defaults to 30s for Windows guests and 15s for Linux/other guests.
finalize_settle_seconds: 0
parallel_disks: 4
parallel_vms: 3
virt:
run_virt_v2v: true
# Path to virtio-win ISO or directory for Windows conversion.
# The engine passes this via VIRTIO_WIN when present.
virtio_iso: /usr/share/virtio-win/virtio-win.iso