@@ -47,6 +47,68 @@ can be found in [Pivotal Documentation](docs.pivotal.io/platform-automation).
47
47
This ensures that commands are not kept in ` bash ` history.
48
48
The environment variable ` OM_PASSWORD ` will overwrite the password value in ` env.yml ` .
49
49
50
+ ## 7.3.0
51
+ ### Features
52
+ - An Ops Manager VM on Vsphere can be created with the property ` disk_size ` .
53
+ This allows a user to assign a size larger than the default 160 (GB).
54
+
55
+ Usage:
56
+ ``` yaml
57
+ ---
58
+ opsman-configuration :
59
+ vsphere :
60
+ disk_size : 200
61
+ vm_name : ops-manager-vm
62
+ cpu : 4
63
+ memory : 16
64
+ disk_type : thin
65
+ dns : 8.8.8.8
66
+ gateway : 192.168.10.1
67
+ hostname : ops-manager.example.com
68
+ netmask : 255.255.255.192
69
+ network : example-virtual-network
70
+ ntp : ntp.ubuntu.com
71
+ private_ip : 10.0.0.10
72
+ ssh_public_key : ssh-rsa ......
73
+ vcenter :
74
+ ca_cert : cert
75
+ datacenter : example-dc
76
+ datastore : example-ds-1
77
+ folder : /example-dc/vm/Folder
78
+ url : vcenter.example.com
79
+ username : ((vcenter-username))
80
+ password : ((vcenter-password))
81
+ resource_pool : /example-dc/host/example-cluster/Resources/example-pool
82
+ ` ` `
83
+
84
+ - An Ops Manager VM on Azure can be created with the property ` tags`.
85
+ This allows a user to assign tags to the Ops Manager VM.
86
+
87
+ Usage :
88
+ ` ` ` yaml
89
+ ---
90
+ opsman-configuration:
91
+ azure:
92
+ tags: Key=Value
93
+ vm_name: ops-manager-vm
94
+ boot_disk_size: 200
95
+ tenant_id: 3e52862f-a01e-4b97-98d5-f31a409df682
96
+ subscription_id: 90f35f10-ea9e-4e80-aac4-d6778b995532
97
+ client_id: 5782deb6-9195-4827-83ae-a13fda90aa0d
98
+ client_secret: ((opsman-client-secret))
99
+ location: westus
100
+ resource_group: res-group
101
+ storage_account: opsman
102
+ ssh_public_key: ssh-rsa ......
103
+ subnet_id: /subscriptions/<SUBSCRIPTION_ID>/resourceGroups/<RESOURCE_GROUP>/providers/Microsoft.Network/virtualNetworks/<VNET>/subnets/<SUBNET>
104
+ private_ip: 10.0.0.3
105
+ ` ` `
106
+
107
+ - ` om curl` defaults to POST method when data provided. [#533]
108
+
109
+ # ## Bug Fixes
110
+ - The output from `download-product` is compatible with `assign-multi-stemcell`. [#539]
111
+
50
112
# # 7.2.0
51
113
# ## Features
52
114
- An Ops Manager VM on GCP can be created with the property [`hostname`](https://cloud.google.com/compute/docs/instances/custom-hostname-vm).
0 commit comments