From 1835107d5406ffd94258f7264a9324f43c0f8ba1 Mon Sep 17 00:00:00 2001 From: Niladri Halder Date: Wed, 5 Mar 2025 11:51:14 +0530 Subject: [PATCH] refactor: expose upgrade::helm::yaml Rust module Signed-off-by: Niladri Halder Signed-off-by: Niladri Halder --- k8s/upgrade/src/helm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s/upgrade/src/helm.rs b/k8s/upgrade/src/helm.rs index fd01cbfb9..dba1fdc3f 100644 --- a/k8s/upgrade/src/helm.rs +++ b/k8s/upgrade/src/helm.rs @@ -7,4 +7,4 @@ pub mod upgrade; /// Contains validation and logic to generate helm values options for the `helm upgrade` command. pub(crate) mod values; /// This contains tools for use with yaml files. -pub(crate) mod yaml; +pub mod yaml;