chore: rebase okd installation with refactoring on core types
All checks were successful
Run Check Script / check (pull_request) Successful in 1m16s

This commit is contained in:
2025-09-01 14:14:29 -04:00
parent c372e781d8
commit b6be44202e
3 changed files with 11 additions and 20 deletions

View File

@@ -51,6 +51,7 @@
use async_trait::async_trait;
use derive_new::new;
use harmony_macros::ip;
use harmony_types::id::Id;
use log::info;
use serde::{Deserialize, Serialize};
@@ -200,7 +201,7 @@ impl<T: Topology + DnsServer> Interpret<T> for OKDInstallationInterpret {
self.status.clone()
}
fn get_children(&self) -> Vec<crate::domain::data::Id> {
fn get_children(&self) -> Vec<Id> {
vec![]
}
@@ -324,7 +325,7 @@ impl<T: Topology + DnsServer> Interpret<T> for OKDSetup01InventoryDnsInterpret {
self.status.clone()
}
fn get_children(&self) -> Vec<crate::domain::data::Id> {
fn get_children(&self) -> Vec<Id> {
vec![]
}
@@ -420,7 +421,7 @@ impl<T: Topology> Interpret<T> for OKDSetup01InventoryInterpret {
self.status.clone()
}
fn get_children(&self) -> Vec<crate::domain::data::Id> {
fn get_children(&self) -> Vec<Id> {
vec![]
}
@@ -513,7 +514,7 @@ impl<T: Topology> Interpret<T> for OKDSetup02BootstrapInterpret {
self.status.clone()
}
fn get_children(&self) -> Vec<crate::domain::data::Id> {
fn get_children(&self) -> Vec<Id> {
vec![]
}
@@ -595,7 +596,7 @@ impl<T: Topology> Interpret<T> for OKDSetup03ControlPlaneInterpret {
self.status.clone()
}
fn get_children(&self) -> Vec<crate::domain::data::Id> {
fn get_children(&self) -> Vec<Id> {
vec![]
}
@@ -669,7 +670,7 @@ impl<T: Topology> Interpret<T> for OKDSetup04WorkersInterpret {
self.status.clone()
}
fn get_children(&self) -> Vec<crate::domain::data::Id> {
fn get_children(&self) -> Vec<Id> {
vec![]
}
@@ -741,7 +742,7 @@ impl<T: Topology> Interpret<T> for OKDSetup05SanityCheckInterpret {
self.status.clone()
}
fn get_children(&self) -> Vec<crate::domain::data::Id> {
fn get_children(&self) -> Vec<Id> {
vec![]
}
@@ -819,7 +820,7 @@ impl<T: Topology> Interpret<T> for OKDSetup06InstallationReportInterpret {
self.status.clone()
}
fn get_children(&self) -> Vec<crate::domain::data::Id> {
fn get_children(&self) -> Vec<Id> {
vec![]
}

View File

@@ -2,7 +2,7 @@ pub mod bootstrap_dhcp;
pub mod bootstrap_load_balancer;
pub mod dhcp;
pub mod dns;
pub mod ipxe;
pub mod installation;
pub mod ipxe;
pub mod load_balancer;
pub mod upgrade;