File tree Expand file tree Collapse file tree 3 files changed +18
-10
lines changed Expand file tree Collapse file tree 3 files changed +18
-10
lines changed Original file line number Diff line number Diff line change 1
1
# Changes
2
2
3
+ ## v0.9.6
4
+
5
+ * Restore ability to use image defaults for CPU / RAM configuration (DimensionDataResearch/docker-machine-driver-ddcloud #14 ).
6
+
7
+ ## v0.9.5
8
+
9
+ * Ability to customise target machine's CPU / RAM configuration (DimensionDataResearch/docker-machine-driver-ddcloud #13 ).
10
+
3
11
## v0.9.4
4
12
5
13
Enhancements:
Original file line number Diff line number Diff line change 1
- VERSION = 0.9.5
1
+ VERSION = 0.9.6
2
2
3
3
default : fmt build test
4
4
Original file line number Diff line number Diff line change @@ -209,19 +209,19 @@ func (driver *Driver) GetCreateFlags() []mcnflag.Flag {
209
209
Usage : "Don't create NAT and firewall rules for target server (you will need to be connected to the VPN for your target data centre). Default: false" ,
210
210
},
211
211
mcnflag.IntFlag {
212
- Name : "ddcloud-memorygb" ,
213
- Usage : "The amount of RAM in GB for the target machine. Default: 4" ,
214
- Value : 4 ,
212
+ Name : "ddcloud-memorygb" ,
213
+ Usage : "The amount of RAM in GB for the target machine. Default: 4" ,
214
+ Value : 4 ,
215
215
},
216
216
mcnflag.IntFlag {
217
- Name : "ddcloud-cpucount" ,
218
- Usage : "The amount of CPUs for the target machine. Default: 2" ,
219
- Value : 2 ,
217
+ Name : "ddcloud-cpucount" ,
218
+ Usage : "The amount of CPUs for the target machine. Default: 2" ,
219
+ Value : 2 ,
220
220
},
221
221
mcnflag.IntFlag {
222
- Name : "ddcloud-corespersocket" ,
223
- Usage : "The amount of cores per socket for the target machine. Default: 2" ,
224
- Value : 2 ,
222
+ Name : "ddcloud-corespersocket" ,
223
+ Usage : "The amount of cores per socket for the target machine. Default: 2" ,
224
+ Value : 2 ,
225
225
},
226
226
}
227
227
}
You can’t perform that action at this time.
0 commit comments