@@ -69,6 +69,10 @@ func (add *addHost) Run(task *Task) (types.AnyType, types.BaseMethodFault) {
69
69
cr .Host = append (cr .Host , host .Reference ())
70
70
addComputeResource (cr .Summary .GetComputeResourceSummary (), host )
71
71
72
+ if cr .vsanIsEnabled () {
73
+ cr .addStorageHost (task .ctx , host .Self )
74
+ }
75
+
72
76
return host .Reference (), nil
73
77
}
74
78
@@ -80,7 +84,14 @@ func (c *ClusterComputeResource) AddHostTask(ctx *Context, add *types.AddHost_Ta
80
84
}
81
85
}
82
86
83
- func (c * ClusterComputeResource ) update (cfg * types.ClusterConfigInfoEx , cspec * types.ClusterConfigSpecEx ) types.BaseMethodFault {
87
+ func (c * ClusterComputeResource ) vsanIsEnabled () bool {
88
+ if cfg := c .ConfigurationEx .(* types.ClusterConfigInfoEx ).VsanConfigInfo ; cfg != nil {
89
+ return isTrue (cfg .Enabled )
90
+ }
91
+ return false
92
+ }
93
+
94
+ func (c * ClusterComputeResource ) update (_ * Context , cfg * types.ClusterConfigInfoEx , cspec * types.ClusterConfigSpecEx ) types.BaseMethodFault {
84
95
if cspec .DasConfig != nil {
85
96
if val := cspec .DasConfig .Enabled ; val != nil {
86
97
cfg .DasConfig .Enabled = val
@@ -101,7 +112,7 @@ func (c *ClusterComputeResource) update(cfg *types.ClusterConfigInfoEx, cspec *t
101
112
return nil
102
113
}
103
114
104
- func (c * ClusterComputeResource ) updateRules (cfg * types.ClusterConfigInfoEx , cspec * types.ClusterConfigSpecEx ) types.BaseMethodFault {
115
+ func (c * ClusterComputeResource ) updateRules (_ * Context , cfg * types.ClusterConfigInfoEx , cspec * types.ClusterConfigSpecEx ) types.BaseMethodFault {
105
116
for _ , spec := range cspec .RulesSpec {
106
117
var i int
107
118
exists := false
@@ -148,7 +159,7 @@ func (c *ClusterComputeResource) updateRules(cfg *types.ClusterConfigInfoEx, csp
148
159
return nil
149
160
}
150
161
151
- func (c * ClusterComputeResource ) updateGroups (cfg * types.ClusterConfigInfoEx , cspec * types.ClusterConfigSpecEx ) types.BaseMethodFault {
162
+ func (c * ClusterComputeResource ) updateGroups (_ * Context , cfg * types.ClusterConfigInfoEx , cspec * types.ClusterConfigSpecEx ) types.BaseMethodFault {
152
163
for _ , spec := range cspec .GroupSpec {
153
164
var i int
154
165
exists := false
@@ -192,7 +203,7 @@ func (c *ClusterComputeResource) updateGroups(cfg *types.ClusterConfigInfoEx, cs
192
203
return nil
193
204
}
194
205
195
- func (c * ClusterComputeResource ) updateOverridesDAS (cfg * types.ClusterConfigInfoEx , cspec * types.ClusterConfigSpecEx ) types.BaseMethodFault {
206
+ func (c * ClusterComputeResource ) updateOverridesDAS (_ * Context , cfg * types.ClusterConfigInfoEx , cspec * types.ClusterConfigSpecEx ) types.BaseMethodFault {
196
207
for _ , spec := range cspec .DasVmConfigSpec {
197
208
var i int
198
209
var key types.ManagedObjectReference
@@ -243,7 +254,7 @@ func (c *ClusterComputeResource) updateOverridesDAS(cfg *types.ClusterConfigInfo
243
254
return nil
244
255
}
245
256
246
- func (c * ClusterComputeResource ) updateOverridesDRS (cfg * types.ClusterConfigInfoEx , cspec * types.ClusterConfigSpecEx ) types.BaseMethodFault {
257
+ func (c * ClusterComputeResource ) updateOverridesDRS (_ * Context , cfg * types.ClusterConfigInfoEx , cspec * types.ClusterConfigSpecEx ) types.BaseMethodFault {
247
258
for _ , spec := range cspec .DrsVmConfigSpec {
248
259
var i int
249
260
var key types.ManagedObjectReference
@@ -289,7 +300,7 @@ func (c *ClusterComputeResource) updateOverridesDRS(cfg *types.ClusterConfigInfo
289
300
return nil
290
301
}
291
302
292
- func (c * ClusterComputeResource ) updateOverridesVmOrchestration (cfg * types.ClusterConfigInfoEx , cspec * types.ClusterConfigSpecEx ) types.BaseMethodFault {
303
+ func (c * ClusterComputeResource ) updateOverridesVmOrchestration (_ * Context , cfg * types.ClusterConfigInfoEx , cspec * types.ClusterConfigSpecEx ) types.BaseMethodFault {
293
304
for _ , spec := range cspec .VmOrchestrationSpec {
294
305
var i int
295
306
var key types.ManagedObjectReference
@@ -335,24 +346,62 @@ func (c *ClusterComputeResource) updateOverridesVmOrchestration(cfg *types.Clust
335
346
return nil
336
347
}
337
348
349
+ func (c * ClusterComputeResource ) addStorageHost (ctx * Context , ref types.ManagedObjectReference ) types.BaseMethodFault {
350
+ ds := ctx .Map .Get (ref ).(* HostSystem ).ConfigManager .DatastoreSystem
351
+ hds := ctx .Map .Get (* ds ).(* HostDatastoreSystem )
352
+ return hds .createVsanDatastore (ctx )
353
+ }
354
+
355
+ func (c * ClusterComputeResource ) updateVSAN (ctx * Context , cfg * types.ClusterConfigInfoEx , cspec * types.ClusterConfigSpecEx ) types.BaseMethodFault {
356
+ if cspec .VsanConfig == nil {
357
+ return nil
358
+ }
359
+
360
+ if cfg .VsanConfigInfo == nil {
361
+ cfg .VsanConfigInfo = cspec .VsanConfig
362
+ if cfg .VsanConfigInfo .DefaultConfig == nil {
363
+ cfg .VsanConfigInfo .DefaultConfig = new (types.VsanClusterConfigInfoHostDefaultInfo )
364
+ }
365
+ } else {
366
+ if cspec .VsanConfig .Enabled != nil {
367
+ cfg .VsanConfigInfo .Enabled = cspec .VsanConfig .Enabled
368
+ }
369
+ }
370
+
371
+ if cfg .VsanConfigInfo .DefaultConfig .Uuid == "" {
372
+ cfg .VsanConfigInfo .DefaultConfig .Uuid = uuid .NewString ()
373
+ }
374
+
375
+ if isTrue (cfg .VsanConfigInfo .Enabled ) {
376
+ for _ , ref := range c .Host {
377
+ if err := c .addStorageHost (ctx , ref ); err != nil {
378
+ return err
379
+ }
380
+ }
381
+ }
382
+
383
+ return nil
384
+ }
385
+
338
386
func (c * ClusterComputeResource ) ReconfigureComputeResourceTask (ctx * Context , req * types.ReconfigureComputeResource_Task ) soap.HasFault {
339
387
task := CreateTask (c , "reconfigureCluster" , func (* Task ) (types.AnyType , types.BaseMethodFault ) {
340
388
spec , ok := req .Spec .(* types.ClusterConfigSpecEx )
341
389
if ! ok {
342
390
return nil , new (types.InvalidArgument )
343
391
}
344
392
345
- updates := []func (* types.ClusterConfigInfoEx , * types.ClusterConfigSpecEx ) types.BaseMethodFault {
393
+ updates := []func (* Context , * types.ClusterConfigInfoEx , * types.ClusterConfigSpecEx ) types.BaseMethodFault {
346
394
c .update ,
347
395
c .updateRules ,
348
396
c .updateGroups ,
349
397
c .updateOverridesDAS ,
350
398
c .updateOverridesDRS ,
351
399
c .updateOverridesVmOrchestration ,
400
+ c .updateVSAN ,
352
401
}
353
402
354
403
for _ , update := range updates {
355
- if err := update (c .ConfigurationEx .(* types.ClusterConfigInfoEx ), spec ); err != nil {
404
+ if err := update (ctx , c .ConfigurationEx .(* types.ClusterConfigInfoEx ), spec ); err != nil {
356
405
return nil , err
357
406
}
358
407
}
0 commit comments