File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
packages_generated/k8s/src/v1 Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -528,6 +528,7 @@ export const unmarshalNodeMetadata = (data: unknown): NodeMetadata => {
528528 externalIp : data . external_ip ,
529529 hasGpu : data . has_gpu ,
530530 id : data . id ,
531+ installerTags : data . installer_tags ,
531532 kubeletConfig : data . kubelet_config ,
532533 name : data . name ,
533534 nodeLabels : data . node_labels ,
@@ -536,7 +537,12 @@ export const unmarshalNodeMetadata = (data: unknown): NodeMetadata => {
536537 unmarshalNodeMetadataCoreV1Taint ,
537538 ) ,
538539 poolVersion : data . pool_version ,
540+ providerId : data . provider_id ,
539541 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 ,
540546 } as NodeMetadata
541547}
542548
Original file line number Diff line number Diff line change @@ -1500,9 +1500,15 @@ export interface NodeMetadata {
15001500 kubeletConfig : string
15011501 nodeLabels : Record < string , string >
15021502 nodeTaints : NodeMetadataCoreV1Taint [ ]
1503+ providerId : string
1504+ resolvconfPath : string
15031505 hasGpu : boolean
15041506 externalIp : string
15051507 repoUri : string
1508+ installerTags : string
1509+ updaterBinUrl : string
1510+ updaterBinVersion : string
1511+ updaterBinPath : string
15061512}
15071513
15081514export type RebootNodeRequest = {
You can’t perform that action at this time.
0 commit comments