@@ -362,7 +362,7 @@ def launchUninstallPipeline(dynClient: DynamicClient,
362362 uninstallGrafana : bool = False ,
363363 uninstallCatalog : bool = False ,
364364 uninstallCommonServices : bool = False ,
365- uninstallUDS : bool = False ,
365+ uninstallDRO : bool = False ,
366366 uninstallMongoDb : bool = False ,
367367 uninstallSLS : bool = False ) -> str :
368368 """
@@ -384,7 +384,7 @@ def launchUninstallPipeline(dynClient: DynamicClient,
384384 ibmCatalogAction = "uninstall" if uninstallCatalog else "none"
385385 mongoDbAction = "uninstall" if uninstallMongoDb else "none"
386386 slsAction = "uninstall" if uninstallSLS else "none"
387- udsAction = "uninstall" if uninstallUDS else "none"
387+ droAction = "uninstall" if uninstallDRO else "none"
388388
389389 # Render the pipelineRun
390390 renderedTemplate = template .render (
@@ -397,7 +397,7 @@ def launchUninstallPipeline(dynClient: DynamicClient,
397397 ibm_catalogs_action = ibmCatalogAction ,
398398 mongodb_action = mongoDbAction ,
399399 sls_action = slsAction ,
400- uds_action = udsAction ,
400+ dro_action = droAction ,
401401 dro_namespace = droNamespace
402402 )
403403 logger .debug (renderedTemplate )
0 commit comments