@@ -62,12 +62,12 @@ pub enum Error {
6262
6363pub trait InstallManifestsExt {
6464 // TODO (Techassi): This step shouldn't care about templating the manifests nor fetching them from remote
65- #[ instrument( skip_all, fields( %product_namespace ) ) ]
65+ #[ instrument( skip_all, fields( %namespace ) ) ]
6666 #[ allow( async_fn_in_trait) ]
6767 async fn install_manifests (
6868 manifests : & [ ManifestSpec ] ,
6969 parameters : & HashMap < String , String > ,
70- product_namespace : & str ,
70+ namespace : & str ,
7171 labels : Labels ,
7272 client : & Client ,
7373 transfer_client : & xfer:: Client ,
@@ -77,7 +77,7 @@ pub trait InstallManifestsExt {
7777 let mut parameters = parameters. clone ( ) ;
7878 // We add the NAMESPACE parameter, so that stacks/demos can use that to render e.g. the
7979 // fqdn service names [which contain the namespace].
80- parameters. insert ( "NAMESPACE" . to_owned ( ) , product_namespace . to_owned ( ) ) ;
80+ parameters. insert ( "NAMESPACE" . to_owned ( ) , namespace . to_owned ( ) ) ;
8181
8282 for manifest in manifests {
8383 match manifest {
@@ -116,7 +116,7 @@ pub trait InstallManifestsExt {
116116 chart_version : Some ( & helm_chart. version ) ,
117117 } ,
118118 Some ( & values_yaml) ,
119- product_namespace ,
119+ namespace ,
120120 true ,
121121 )
122122 . context ( InstallHelmReleaseSnafu {
@@ -140,7 +140,7 @@ pub trait InstallManifestsExt {
140140 . context ( FileTransferSnafu ) ?;
141141
142142 client
143- . deploy_manifests ( & manifests, product_namespace , labels. clone ( ) )
143+ . deploy_manifests ( & manifests, namespace , labels. clone ( ) )
144144 . await
145145 . context ( DeployManifestSnafu ) ?
146146 }
0 commit comments