@@ -117,7 +117,7 @@ func (u CloudProjectUser) ToMap() map[string]interface{} {
117
117
obj := make (map [string ]interface {})
118
118
obj ["creation_date" ] = u .CreationDate
119
119
obj ["description" ] = u .Description
120
- //Dont set password as it must be set only at creation time
120
+ // Dont set password as it must be set only at creation time
121
121
obj ["status" ] = u .Status
122
122
obj ["username" ] = u .Username
123
123
@@ -246,14 +246,15 @@ type CloudProjectKubeKubeConfigResponse struct {
246
246
}
247
247
248
248
type CloudProjectKubeNodePoolCreateOpts struct {
249
- AntiAffinity * bool `json:"antiAffinity,omitempty"`
250
- Autoscale * bool `json:"autoscale,omitempty"`
251
- DesiredNodes * int `json:"desiredNodes,omitempty"`
252
- FlavorName string `json:"flavorName"`
253
- MaxNodes * int `json:"maxNodes,omitempty"`
254
- MinNodes * int `json:"minNodes,omitempty"`
255
- MonthlyBilled * bool `json:"monthlyBilled,omitempty"`
256
- Name * string `json:"name,omitempty"`
249
+ AntiAffinity * bool `json:"antiAffinity,omitempty"`
250
+ Autoscale * bool `json:"autoscale,omitempty"`
251
+ DesiredNodes * int `json:"desiredNodes,omitempty"`
252
+ FlavorName string `json:"flavorName"`
253
+ MaxNodes * int `json:"maxNodes,omitempty"`
254
+ MinNodes * int `json:"minNodes,omitempty"`
255
+ MonthlyBilled * bool `json:"monthlyBilled,omitempty"`
256
+ Name * string `json:"name,omitempty"`
257
+ Template * CloudProjectKubeNodePoolTemplate `json:"template,omitempty"`
257
258
}
258
259
259
260
func (opts * CloudProjectKubeNodePoolCreateOpts ) FromResource (d * schema.ResourceData ) * CloudProjectKubeNodePoolCreateOpts {
@@ -265,26 +266,113 @@ func (opts *CloudProjectKubeNodePoolCreateOpts) FromResource(d *schema.ResourceD
265
266
opts .MinNodes = helpers .GetNilIntPointerFromData (d , "min_nodes" )
266
267
opts .MonthlyBilled = helpers .GetNilBoolPointerFromData (d , "monthly_billed" )
267
268
opts .Name = helpers .GetNilStringPointerFromData (d , "name" )
269
+ opts .Template = loadNodelPoolTemplateFromResource (d .Get ("template" ))
268
270
269
271
return opts
270
272
}
271
273
274
+ func loadNodelPoolTemplateFromResource (i interface {}) * CloudProjectKubeNodePoolTemplate {
275
+ template := CloudProjectKubeNodePoolTemplate {
276
+ Metadata : & CloudProjectKubeNodePoolTemplateMetadata {
277
+ Annotations : map [string ]string {},
278
+ Finalizers : []string {},
279
+ Labels : map [string ]string {},
280
+ },
281
+ Spec : & CloudProjectKubeNodePoolTemplateSpec {
282
+ Taints : []Taint {},
283
+ Unschedulable : false ,
284
+ },
285
+ }
286
+
287
+ templateSet := i .(* schema.Set ).List ()
288
+ for _ , inter := range templateSet {
289
+
290
+ metadataSet := inter .(map [string ]interface {})["metadata" ].(* schema.Set ).List ()
291
+ for _ , meta := range metadataSet {
292
+
293
+ annotations := meta .(map [string ]interface {})["annotations" ].(map [string ]interface {})
294
+ template .Metadata .Annotations = make (map [string ]string )
295
+ for k , v := range annotations {
296
+ template .Metadata .Annotations [k ] = v .(string )
297
+ }
298
+
299
+ labels := meta .(map [string ]interface {})["labels" ].(map [string ]interface {})
300
+ template .Metadata .Labels = make (map [string ]string )
301
+ for k , v := range labels {
302
+ template .Metadata .Labels [k ] = v .(string )
303
+ }
304
+
305
+ finalizers := meta .(map [string ]interface {})["finalizers" ].([]interface {})
306
+ for _ , finalizer := range finalizers {
307
+ template .Metadata .Finalizers = append (template .Metadata .Finalizers , finalizer .(string ))
308
+ }
309
+
310
+ }
311
+
312
+ specSet := inter .(map [string ]interface {})["spec" ].(* schema.Set ).List ()
313
+ for _ , spec := range specSet {
314
+
315
+ taints := spec .(map [string ]interface {})["taints" ].([]interface {})
316
+ for _ , taint := range taints {
317
+ template .Spec .Taints = append (template .Spec .Taints , Taint {
318
+ Effect : taint .(map [string ]interface {})["effect" ].(string ),
319
+ Key : taint .(map [string ]interface {})["key" ].(string ),
320
+ Value : taint .(map [string ]interface {})["value" ].(string ),
321
+ })
322
+ }
323
+
324
+ unschedulable := spec .(map [string ]interface {})["unschedulable" ].(bool )
325
+ template .Spec .Unschedulable = unschedulable
326
+
327
+ }
328
+ }
329
+
330
+ return & template
331
+ }
332
+
272
333
func (s * CloudProjectKubeNodePoolCreateOpts ) String () string {
273
334
return fmt .Sprintf ("%s(%s): %d/%d/%d" , * s .Name , s .FlavorName , * s .DesiredNodes , * s .MinNodes , * s .MaxNodes )
274
335
}
275
336
337
+ type Taint struct {
338
+ //"NoExecute"
339
+ //"NoSchedule"
340
+ //"PreferNoSchedule"
341
+ Effect string `json:"effect,omitempty"`
342
+ Key string `json:"key,omitempty"`
343
+ Value string `json:"value,omitempty"`
344
+ }
345
+ type CloudProjectKubeNodePoolTemplateMetadata struct {
346
+ Annotations map [string ]string `json:"annotations"`
347
+ Finalizers []string `json:"finalizers"`
348
+ Labels map [string ]string `json:"labels"`
349
+ }
350
+
351
+ type CloudProjectKubeNodePoolTemplateSpec struct {
352
+ Taints []Taint `json:"taints"`
353
+ Unschedulable bool `json:"unschedulable"`
354
+ }
355
+
356
+ type CloudProjectKubeNodePoolTemplate struct {
357
+ Metadata * CloudProjectKubeNodePoolTemplateMetadata `json:"metadata,omitempty"`
358
+ Spec * CloudProjectKubeNodePoolTemplateSpec `json:"spec,omitempty"`
359
+ }
360
+
276
361
type CloudProjectKubeNodePoolUpdateOpts struct {
277
- Autoscale * bool `json:"autoscale,omitempty"`
278
- DesiredNodes * int `json:"desiredNodes,omitempty"`
279
- MaxNodes * int `json:"maxNodes,omitempty"`
280
- MinNodes * int `json:"minNodes,omitempty"`
362
+ Autoscale * bool `json:"autoscale,omitempty"`
363
+ DesiredNodes * int `json:"desiredNodes,omitempty"`
364
+ MaxNodes * int `json:"maxNodes,omitempty"`
365
+ MinNodes * int `json:"minNodes,omitempty"`
366
+ Template * CloudProjectKubeNodePoolTemplate `json:"template,omitempty"`
281
367
}
282
368
283
369
func (opts * CloudProjectKubeNodePoolUpdateOpts ) FromResource (d * schema.ResourceData ) * CloudProjectKubeNodePoolUpdateOpts {
284
370
opts .Autoscale = helpers .GetNilBoolPointerFromData (d , "autoscale" )
285
371
opts .DesiredNodes = helpers .GetNilIntPointerFromData (d , "desired_nodes" )
286
372
opts .MaxNodes = helpers .GetNilIntPointerFromData (d , "max_nodes" )
287
373
opts .MinNodes = helpers .GetNilIntPointerFromData (d , "min_nodes" )
374
+ opts .Template = loadNodelPoolTemplateFromResource (d .Get ("template" ))
375
+
288
376
return opts
289
377
}
290
378
0 commit comments