-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
433 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: test | ||
namespace: foo | ||
type: Opaque | ||
data: | ||
username: dXNlcg== | ||
password: NTRmNDFkMTJlOGZh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
use std::collections::HashMap; | ||
use chrono::{Local, SecondsFormat}; | ||
use itertools::Itertools; | ||
use crate::get::{GetObjectArgs, IdCommand, Lister}; | ||
use crate::skatelet::{PodmanPodInfo, PodmanPodStatus, SystemInfo}; | ||
use crate::state::state::ClusterState; | ||
|
||
pub(crate) struct DaemonsetLister {} | ||
|
||
impl Lister<(String, PodmanPodInfo)> for DaemonsetLister { | ||
fn selector(&self, _si: &SystemInfo, _ns: &str, _id: &str) -> Option<Vec<(String, PodmanPodInfo)>> { | ||
todo!() | ||
} | ||
fn list(&self, args: &GetObjectArgs, state: &ClusterState) -> Vec<(String, PodmanPodInfo)> { | ||
let pods: Vec<_> = state.nodes.iter().filter_map(|n| { | ||
let items: Vec<_> = n.host_info.clone()?.system_info?.pods.unwrap_or_default().into_iter().filter_map(|p| { | ||
let ns = args.namespace.clone().unwrap_or("default".to_string()); | ||
let id = match args.id.clone() { | ||
Some(cmd) => match cmd { | ||
IdCommand::Id(ids) => Some(ids.into_iter().next().unwrap_or("".to_string())) | ||
} | ||
None => None | ||
}; | ||
let daemonset = p.labels.get("skate.io/daemonset").and_then(|n| Some(n.clone())).unwrap_or_default(); | ||
if daemonset == "" { | ||
return None; | ||
} | ||
let daemonset_ns = p.labels.get("skate.io/namespace").unwrap_or(&"".to_string()).clone(); | ||
|
||
|
||
let match_ns = ns == daemonset_ns; | ||
|
||
let match_id = match id.clone() { | ||
Some(id) => { | ||
id == daemonset | ||
} | ||
None => false | ||
}; | ||
if match_ns || match_id || (id.is_none() && ns == "" && daemonset_ns != "skate" ) { | ||
return Some((daemonset, p)); | ||
} | ||
None | ||
}).collect(); | ||
match items.len() { | ||
0 => None, | ||
_ => Some(items) | ||
} | ||
}).flatten().collect(); | ||
pods | ||
} | ||
|
||
fn print(&self, items: Vec<(String, PodmanPodInfo)>) { | ||
println!( | ||
"{0: <30} {1: <10} {2: <10} {3: <10} {4: <30}", | ||
"NAME", "READY", "STATUS", "RESTARTS", "CREATED" | ||
); | ||
let pods = items.into_iter().fold(HashMap::<String, Vec<PodmanPodInfo>>::new(), |mut acc, (depl, pod)| { | ||
acc.entry(depl).or_insert(vec![]).push(pod); | ||
acc | ||
}); | ||
|
||
for (deployment, pods) in pods { | ||
let health_pods = pods.iter().filter(|p| PodmanPodStatus::Running == p.status).collect_vec().len(); | ||
let all_pods = pods.len(); | ||
let created = pods.iter().fold(Local::now(), |acc, item| { | ||
if item.created < acc { | ||
return item.created; | ||
} | ||
return acc; | ||
}); | ||
|
||
println!( | ||
"{0: <30} {1: <10} {2: <10} {3: <10} {4: <30}", | ||
deployment, format!("{}/{}", health_pods, all_pods), "", "", created.to_rfc3339_opts(SecondsFormat::Secs, true) | ||
) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.