From 6d509eaba9a4a1f370048d78e39ce4457d74d5b2 Mon Sep 17 00:00:00 2001 From: James Andariese Date: Wed, 1 Nov 2023 20:15:19 -0500 Subject: [PATCH] fix the invalid struct with no volume name --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index c3317f1..e94cc43 100644 --- a/src/main.rs +++ b/src/main.rs @@ -317,6 +317,7 @@ async fn setup_pod(ctx: &mut AppContext) -> Result<(Api, String)> { })], volumes: Some(vec![ default!(Volume{ + name: "repo".to_owned(), persistent_volume_claim: Some( PersistentVolumeClaimVolumeSource { claim_name: kube_pvc.to_owned(),