File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
src/commands/image/deployImageApi Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import { showContainerAppNotification } from "../../createContainerApp/showConta
1313import { ContainerAppUpdateStep } from "../imageSource/ContainerAppUpdateStep" ;
1414import { ImageSourceListStep } from "../imageSource/ImageSourceListStep" ;
1515import { ContainerRegistryImageSourceContext } from "../imageSource/containerRegistry/ContainerRegistryImageSourceContext" ;
16+ import { RegistryEnableAdminUserStep } from "../imageSource/containerRegistry/acr/RegistryEnableAdminUserStep" ;
1617import type { DeployImageApiContext } from "./deployImageApi" ;
1718
1819export async function deployImage ( context : IActionContext & Partial < ContainerRegistryImageSourceContext > , node : ContainerAppItem ) : Promise < void > {
@@ -29,6 +30,7 @@ export async function deployImage(context: IActionContext & Partial<ContainerReg
2930 wizardContext . telemetry . properties . revisionMode = containerApp . revisionsMode ;
3031
3132 const promptSteps : AzureWizardPromptStep < DeployImageApiContext > [ ] = [
33+ new RegistryEnableAdminUserStep ( ) ,
3234 new ImageSourceListStep ( ) ,
3335 new ContainerAppOverwriteConfirmStep ( ) ,
3436 ] ;
You can’t perform that action at this time.
0 commit comments