@@ -360,24 +360,13 @@ def load_command_table(self, _):
360360 g .show_command ('show' , 'acr_config_authentication_as_arm_show' )
361361 g .command ('update' , 'acr_config_authentication_as_arm_update' )
362362
363- def _helm_deprecate_message (self ):
364- msg = "This {} has been deprecated and will be removed in future release." .format (self .object_type )
365- msg += " Use '{}' instead." .format (self .redirect )
366- msg += " Learn more about storing Helm charts at"
367- msg += " https://aka.ms/acr/helm"
368- return msg
369-
370- helm_deprecate_info = self .deprecate (redirect = "Helm v3 commands" , message_func = _helm_deprecate_message )
371-
372- with self .command_group ('acr helm' , acr_helm_util , deprecate_info = helm_deprecate_info ) as g :
373- g .command ('list' , 'acr_helm_list' , table_transformer = helm_list_output_format ,
374- deprecate_info = helm_deprecate_info )
375- g .show_command ('show' , 'acr_helm_show' , table_transformer = helm_show_output_format ,
376- deprecate_info = helm_deprecate_info )
377- g .command ('delete' , 'acr_helm_delete' , deprecate_info = helm_deprecate_info )
378- g .command ('push' , 'acr_helm_push' , deprecate_info = helm_deprecate_info )
379- g .command ('repo add' , 'acr_helm_repo_add' , deprecate_info = helm_deprecate_info )
380- g .command ('install-cli' , 'acr_helm_install_cli' , is_preview = True , deprecate_info = helm_deprecate_info )
363+ with self .command_group ('acr helm' , acr_helm_util ) as g :
364+ g .command ('list' , 'acr_helm_list' , table_transformer = helm_list_output_format )
365+ g .show_command ('show' , 'acr_helm_show' , table_transformer = helm_show_output_format )
366+ g .command ('delete' , 'acr_helm_delete' )
367+ g .command ('push' , 'acr_helm_push' )
368+ g .command ('repo add' , 'acr_helm_repo_add' )
369+ g .command ('install-cli' , 'acr_helm_install_cli' , is_preview = True )
381370
382371 with self .command_group ('acr network-rule' , acr_network_rule_util ) as g :
383372 g .command ('list' , 'acr_network_rule_list' )
0 commit comments