it works!
All checks were successful
Run Check Script / check (pull_request) Successful in 1m43s

This commit is contained in:
tahahawa
2025-06-30 11:57:06 -04:00
parent 6a29969c7f
commit 1adc2db5d9
12 changed files with 190 additions and 137 deletions

View File

@@ -1,36 +1,10 @@
use std::{collections::HashMap, str::FromStr};
use harmony::{
inventory::Inventory,
maestro::Maestro,
modules::helm::chart::{HelmChartScore, HelmRepository, NonBlankString},
inventory::Inventory, maestro::Maestro, modules::monitoring::ntfy::ntfy::NtfyScore,
topology::K8sAnywhereTopology,
};
#[tokio::main]
async fn main() {
let mut ntfy_overrides: HashMap<NonBlankString, String> = HashMap::new();
ntfy_overrides.insert(
NonBlankString::from_str("image.tag").unwrap(),
"v2.12.0".to_string(),
);
let ntfy_chart = HelmChartScore {
namespace: Some(NonBlankString::from_str("monitoring").unwrap()),
release_name: NonBlankString::from_str("ntfy").unwrap(),
chart_name: NonBlankString::from_str("sarab97/ntfy").unwrap(),
chart_version: Some(NonBlankString::from_str("0.1.7").unwrap()),
values_overrides: Some(ntfy_overrides),
values_yaml: None,
create_namespace: true,
install_only: false,
repository: Some(HelmRepository::new(
"sarab97".to_string(),
url::Url::parse("https://charts.sarabsingh.com").unwrap(),
true,
)),
};
let mut maestro = Maestro::<K8sAnywhereTopology>::initialize(
Inventory::autoload(),
K8sAnywhereTopology::from_env(),
@@ -38,6 +12,8 @@ async fn main() {
.await
.unwrap();
maestro.register_all(vec![Box::new(ntfy_chart)]);
maestro.register_all(vec![Box::new(NtfyScore {
namespace: "monitoring".to_string(),
})]);
harmony_cli::init(maestro, None).await.unwrap();
}