First part of actual controller

This commit is contained in:
2025-03-14 04:21:37 +01:00
parent d9cb4b4598
commit 280ac723b5
5 changed files with 536 additions and 114 deletions

View File

@@ -20,11 +20,18 @@ serde_json = "1.0.140"
surf = "2.3.2"
cynic = { workspace = true, features = ["http-surf"] }
tokio = { version = "1.44.0", features = ["full"] }
kube = { version = "0.99.0", features = ["derive"] }
kube = { version = "0.99.0", features = ["derive", "runtime"] }
k8s-openapi = { version = "0.24.0", features = ["v1_31"] }
schemars = "0.8.22"
schemars = { version = "0.8.22", features = ["chrono"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_yaml = "0.9.34"
futures = "0.3.31"
tracing-subscriber = { version = "0.3.19", features = ["json", "env-filter"] }
tracing = "0.1.41"
thiserror = "2.0.12"
chrono = "0.4.40"
passwords = "3.1.16"
base64 = "0.22.1"
[dev-dependencies]
insta = { workspace = true }