diff --git a/src/azure-cli/azure/cli/command_modules/acr/_breaking_change.py b/src/azure-cli/azure/cli/command_modules/acr/_breaking_change.py index 5f734617448..f19446cbbfe 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/_breaking_change.py +++ b/src/azure-cli/azure/cli/command_modules/acr/_breaking_change.py @@ -20,5 +20,11 @@ 'then it is stored in a legacy Helm repository and is at risk of deletion.\n' \ 'For more information on managing and deploying applications for Kubernetes, ' \ 'see https://aka.ms/acr/helm.' + +content_trust_bc_msg = 'Content Trust is being deprecated and will be completely removed on March 31, 2028. ' \ + 'Refer to https://aka.ms/acr/dctdeprecation for details and transition guidance' + register_command_group_deprecate(command_group='acr helm', redirect='Helm v3 commands', message=helm_bc_msg, target_version='Sept 30th, 2025') + +register_command_group_deprecate(command_group='acr config content-trust', message=content_trust_bc_msg)