Created kubernetes Service User CRD

This commit is contained in:
2025-03-13 02:59:42 +01:00
parent 53a025363c
commit 729f1483c9
7 changed files with 945 additions and 25 deletions

8
src/bin/crdgen.rs Normal file
View File

@@ -0,0 +1,8 @@
use kube::CustomResourceExt;
fn main() {
print!(
"{}",
serde_yaml::to_string(&lldap_controller::resources::ServiceUser::crd()).unwrap()
)
}