File tree Expand file tree Collapse file tree 3 files changed +13
-0
lines changed
product_catalog/src/v2alpha1 Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -528,6 +528,7 @@ export const unmarshalNodeMetadata = (data: unknown): NodeMetadata => {
528
528
externalIp : data . external_ip ,
529
529
hasGpu : data . has_gpu ,
530
530
id : data . id ,
531
+ installerTags : data . installer_tags ,
531
532
kubeletConfig : data . kubelet_config ,
532
533
name : data . name ,
533
534
nodeLabels : data . node_labels ,
@@ -536,7 +537,12 @@ export const unmarshalNodeMetadata = (data: unknown): NodeMetadata => {
536
537
unmarshalNodeMetadataCoreV1Taint ,
537
538
) ,
538
539
poolVersion : data . pool_version ,
540
+ providerId : data . provider_id ,
539
541
repoUri : data . repo_uri ,
542
+ resolvconfPath : data . resolvconf_path ,
543
+ updaterBinPath : data . updater_bin_path ,
544
+ updaterBinUrl : data . updater_bin_url ,
545
+ updaterBinVersion : data . updater_bin_version ,
540
546
} as NodeMetadata
541
547
}
542
548
Original file line number Diff line number Diff line change @@ -1500,9 +1500,15 @@ export interface NodeMetadata {
1500
1500
kubeletConfig : string
1501
1501
nodeLabels : Record < string , string >
1502
1502
nodeTaints : NodeMetadataCoreV1Taint [ ]
1503
+ providerId : string
1504
+ resolvconfPath : string
1503
1505
hasGpu : boolean
1504
1506
externalIp : string
1505
1507
repoUri : string
1508
+ installerTags : string [ ]
1509
+ updaterBinUrl : string
1510
+ updaterBinVersion : string
1511
+ updaterBinPath : string
1506
1512
}
1507
1513
1508
1514
export type RebootNodeRequest = {
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ export type {
12
12
PublicCatalogProductPrice ,
13
13
PublicCatalogProductProperties ,
14
14
PublicCatalogProductPropertiesAppleSilicon ,
15
+ PublicCatalogProductPropertiesBlockStorage ,
15
16
PublicCatalogProductPropertiesDedibox ,
16
17
PublicCatalogProductPropertiesElasticMetal ,
17
18
PublicCatalogProductPropertiesHardware ,
You can’t perform that action at this time.
0 commit comments