Created
March 28, 2013 16:01
-
-
Save ankurcha/5264396 to your computer and use it in GitHub Desktop.
microbosh deployment manifest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: micro01 #the same name as your folder name | |
#XXX using micro01 | |
network: | |
ip: 10.118.72.144 #define ip for micro BOSH | |
netmask: 255.255.255.0 | |
gateway: 10.118.72.253 #10.20.145.1 | |
dns: | |
- 10.20.145.1 | |
- 10.20.144.1 | |
cloud_properties: | |
name: "VM Network" #this should be the same as the “Network” of all your virtual machines | |
resources: | |
persistent_disk: 16384 | |
cloud_properties: | |
ram: 4096 | |
disk: 16384 | |
cpu: 2 | |
cloud: | |
plugin: vsphere | |
properties: | |
soap_log: /Users/ankurc/soap.log | |
cpi_log: /Users/ankurc/cpi.log | |
agent: | |
ntp: | |
- us.pool.ntp.org | |
vcenters: | |
- host: 10.118.72.131 # ip address of vCenter | |
user: root #user of vCenter | |
password: vmware | |
datacenters: | |
- name: datacenter #name of the datacenter you created | |
vm_folder: MicroBOSH_VMs #folder for vms | |
template_folder: MicroBOSH_Templates #folder for templates | |
disk_path: MicroBOSH_Disks #disk path where VMs are stored. | |
datastore_pattern: datastore1 #name of a datastore or some regular expression matching the datastore name. | |
persistent_datastore_pattern: datastore1 #name of a datastore or some regular expression matching the persistent datastore | |
allow_mixed_datastores: true #true if two datastore patterns are the same | |
clusters: | |
- cluster #name of your cluster in your datacenter |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment