Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/commands/ingress/enableIngress/enableIngress.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ export async function enableIngress(context: IActionContext, node?: ContainerApp
});

await wizard.prompt();
wizardContext.activityTitle = localize('enableIngress', 'Enable ingress on port {0} for container app "{1}"', wizardContext.targetPort, containerApp.name);
const visibility: string = wizardContext.enableExternal ? localize('external', 'external') : localize('internal', 'internal');
wizardContext.activityTitle = localize('enableIngressWithVisibility', 'Enable {0} ingress on port {1} for container app "{2}"', visibility, wizardContext.targetPort, containerApp.name);
await wizard.execute();

ext.state.notifyChildrenChanged(containerApp.managedEnvironmentId);
Expand Down