Skip to content

Commit 34f5fd2

Browse files
committed
Minor edits
1 parent 6737674 commit 34f5fd2

4 files changed

+20
-20
lines changed

articles/migrate/tutorial-app-containerization-aspnet-appservice.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Azure App Containerization ASP.NET; Containerization and migration of ASP.NET applications to Azure App Service.
3-
description: Tutorial:Containerize & migrate ASP.NET applications to Azure App Service.
3+
description: Tutorial: Containerize & migrate ASP.NET applications to Azure App Service.
44
services:
55
author: rahugup
66
manager: bsiva
@@ -31,7 +31,7 @@ The Azure Migrate: App Containerization tool helps you to -
3131
While all applications won't benefit from a straight shift to containers without significant rearchitecting, some of the benefits of moving existing apps to containers without rewriting include:
3232

3333
- **Improved infrastructure utilization:** With containers, multiple applications can share resources and be hosted on the same infrastructure. This can help you consolidate infrastructure and improve utilization.
34-
- **Simplified management:** By hosting your applications on modern managed platforms like AKS and App Service, you can simplify your management practices. You can achieve this by retiring or reducing the infrastructure maintenance and management processes that you'd traditionally perform with owned infrastructure.
34+
- **Simplified management:** By hosting your applications on modern managed platform like AKS and App Service, you can simplify your management practices. You can achieve this by retiring or reducing the infrastructure maintenance and management processes that you'd traditionally perform with owned infrastructure.
3535
- **Application portability:** With increased adoption and standardization of container specification formats and platforms, application portability is no longer a concern.
3636
- **Adopt modern management with DevOps:** Helps you adopt and standardize on modern practices for management and security and transition to DevOps.
3737

@@ -55,7 +55,7 @@ Before you begin this tutorial, you should:
5555
**Requirement** | **Details**
5656
--- | ---
5757
**Identify a machine to install the tool** | A Windows machine to install and run the Azure Migrate: App Containerization tool. The Windows machine could be a server (Windows Server 2016 or later) or client (Windows 10) operating system, meaning that the tool can run on your desktop as well. <br/><br/> The Windows machine running the tool should have network connectivity to the servers/virtual machines hosting the ASP.NET applications to be containerized.<br/><br/> Ensure that 6-GB space is available on the Windows machine running the Azure Migrate: App Containerization tool for storing application artifacts. <br/><br/> The Windows machine should have internet access, directly or via a proxy. <br/> <br/>Install the Microsoft Web Deploy tool on the machine running the App Containerization helper tool and application server if not already installed. You can download the tool from [here](https://aka.ms/webdeploy3.6)
58-
**Application servers** | Enable PowerShell remoting on the application servers: Login to the application server and Follow [these](/powershell/module/microsoft.powershell.core/enable-psremoting) instructions to turn on PowerShell remoting. <br/><br/> If the application server is running Window Server 2008 R2, ensure that PowerShell 5.1 is installed on the application server. Follow the instruction [here](/powershell/scripting/windows-powershell/wmf/setup/install-configure) to download and install PowerShell 5.1 on the application server. <br/><br/> Install the Microsoft Web Deploy tool on the machine running the App Containerization helper tool and application server if not already installed. You can download the tool from [here](https://aka.ms/webdeploy3.6)
58+
**Application servers** | Enable PowerShell remoting on the application servers: Log in to the application server and Follow [these](/powershell/module/microsoft.powershell.core/enable-psremoting) instructions to turn on PowerShell remoting. <br/><br/> If the application server is running Window Server 2008 R2, ensure that PowerShell 5.1 is installed on the application server. Follow the instruction [here](/powershell/scripting/windows-powershell/wmf/setup/install-configure) to download and install PowerShell 5.1 on the application server. <br/><br/> Install the Microsoft Web Deploy tool on the machine running the App Containerization helper tool and application server if not already installed. You can download the tool from [here](https://aka.ms/webdeploy3.6)
5959
**ASP.NET application** | The tool currently supports <br/><br/> - ASP.NET applications using Microsoft .NET framework 3.5 or later.<br/> - Application servers running Windows Server 2008 R2 or later (application servers should be running PowerShell version 5.1). <br/> - Applications running on Internet Information Services (IIS) 7.5 or later. <br/><br/> The tool currently doesn't support <br/><br/> - Applications requiring Windows authentication (AKS doesn’t support gMSA currently). <br/> - Applications that depend on other Windows services hosted outside IIS.
6060

6161

@@ -109,7 +109,7 @@ If you just created a free Azure account, you're the owner of your subscription.
109109
Alternately, you can open the app from the desktop by selecting the app shortcut.
110110

111111
2. If you see a warning stating that says your connection isn’t private, click Advanced and choose to proceed to the website. This warning appears as the web interface uses a self-signed TLS/SSL certificate.
112-
3. At the sign-in screen, use the local administrator account on the machine to sign-in.
112+
3. At the sign in screen, use the local administrator account on the machine to sign in.
113113
4. Select **ASP.NET web apps** as the type of application you want to containerize.
114114
5. To specify target Azure service, select **Containers on Azure App Service**.
115115
![Default load-up for App Containerization tool.](./media/tutorial-containerize-apps-aks/tool-home.png)
@@ -226,7 +226,7 @@ Once the container image is built, the next step is to deploy the application as
226226
- If you don't have an Azure file share or would like to create a new Azure file share, you can choose to create on from the tool by clicking **Create new Storage Account and file share**.
227227

228228
4. **Application deployment configuration**: Once you've completed the steps above, you'll need to specify the deployment configuration for the application. Click **Configure** to customize the deployment for the application. In the configure step you can provide the following customizations:
229-
- **Name**: Specify a unique app name for the application. This name will be used to generate the application URL and used as a prefix for other resouces being created as part of this deployment.
229+
- **Name**: Specify a unique app name for the application. This name will be used to generate the application URL and used as a prefix for other resources being created as part of this deployment.
230230
- **Application configuration**: For any application configurations that were parameterized, provide the values to use for the current deployment.
231231
- **Storage configuration**: Review the information for any application directories/folders that were configured for persistent storage.
232232

articles/migrate/tutorial-app-containerization-aspnet-kubernetes.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Azure App Containerization ASP.NET; Containerization and migration of ASP.NET applications to Azure Kubernetes.
3-
description: Tutorial:Containerize & migrate ASP.NET applications to Azure Kubernetes Service.
3+
description: Tutorial: Containerize & migrate ASP.NET applications to Azure Kubernetes Service.
44
services:
55
author: rahugup
66
manager: bsiva
@@ -31,7 +31,7 @@ The Azure Migrate: App Containerization tool helps you to -
3131
While all applications won't benefit from a straight shift to containers without significant rearchitecting, some of the benefits of moving existing apps to containers without rewriting include:
3232

3333
- **Improved infrastructure utilization:** With containers, multiple applications can share resources and be hosted on the same infrastructure. This can help you consolidate infrastructure and improve utilization.
34-
- **Simplified management:** By hosting your applications on a modern managed platforms like AKS and App Service, you can simplify your management practices. You can achieve this by retiring or reducing the infrastructure maintenance and management processes that you'd traditionally perform with owned infrastructure.
34+
- **Simplified management:** By hosting your applications on a modern managed platform like AKS and App Service, you can simplify your management practices. You can achieve this by retiring or reducing the infrastructure maintenance and management processes that you'd traditionally perform with owned infrastructure.
3535
- **Application portability:** With increased adoption and standardization of container specification formats and platforms, application portability is no longer a concern.
3636
- **Adopt modern management with DevOps:** Helps you adopt and standardize on modern practices for management and security and transition to DevOps.
3737

@@ -55,7 +55,7 @@ Before you begin this tutorial, you should:
5555
**Requirement** | **Details**
5656
--- | ---
5757
**Identify a machine to install the tool** | A Windows machine to install and run the Azure Migrate: App Containerization tool. The Windows machine could be a server (Windows Server 2016 or later) or client (Windows 10) operating system, meaning that the tool can run on your desktop as well. <br/><br/> The Windows machine running the tool should have network connectivity to the servers/virtual machines hosting the ASP.NET applications to be containerized.<br/><br/> Ensure that 6-GB space is available on the Windows machine running the Azure Migrate: App Containerization tool for storing application artifacts. <br/><br/> The Windows machine should have internet access, directly or via a proxy. <br/> <br/>Install the Microsoft Web Deploy tool on the machine running the App Containerization helper tool and application server if not already installed. You can download the tool from [here](https://aka.ms/webdeploy3.6)
58-
**Application servers** | Enable PowerShell remoting on the application servers: Login to the application server and Follow [these](/powershell/module/microsoft.powershell.core/enable-psremoting) instructions to turn on PowerShell remoting. <br/><br/> If the application server is running Window Server 2008 R2, ensure that PowerShell 5.1 is installed on the application server. Follow the instruction [here](/powershell/scripting/windows-powershell/wmf/setup/install-configure) to download and install PowerShell 5.1 on the application server. <br/><br/> Install the Microsoft Web Deploy tool on the machine running the App Containerization helper tool and application server if not already installed. You can download the tool from [here](https://aka.ms/webdeploy3.6)
58+
**Application servers** | Enable PowerShell remoting on the application servers: Log in to the application server and Follow [these](/powershell/module/microsoft.powershell.core/enable-psremoting) instructions to turn on PowerShell remoting. <br/><br/> If the application server is running Window Server 2008 R2, ensure that PowerShell 5.1 is installed on the application server. Follow the instruction [here](/powershell/scripting/windows-powershell/wmf/setup/install-configure) to download and install PowerShell 5.1 on the application server. <br/><br/> Install the Microsoft Web Deploy tool on the machine running the App Containerization helper tool and application server if not already installed. You can download the tool from [here](https://aka.ms/webdeploy3.6)
5959
**ASP.NET application** | The tool currently supports <br/><br/> - ASP.NET applications using Microsoft .NET framework 3.5 or later.<br/> - Application servers running Windows Server 2008 R2 or later (application servers should be running PowerShell version 5.1). <br/> - Applications running on Internet Information Services (IIS) 7.5 or later. <br/><br/> The tool currently doesn't support <br/><br/> - Applications requiring Windows authentication (AKS doesn’t support gMSA currently). <br/> - Applications that depend on other Windows services hosted outside IIS.
6060

6161

@@ -109,9 +109,9 @@ If you just created a free Azure account, you're the owner of your subscription.
109109
Alternately, you can open the app from the desktop by selecting the app shortcut.
110110

111111
2. If you see a warning stating that says your connection isn’t private, click Advanced and choose to proceed to the website. This warning appears as the web interface uses a self-signed TLS/SSL certificate.
112-
3. At the sign-in screen, use the local administrator account on the machine to sign-in.
112+
3. At the sign in screen, use the local administrator account on the machine to sign in.
113113
4. Select **ASP.NET web apps** as the type of application you want to containerize.
114-
5. To specify target Azure service, select **Containers on Azure Kubernets Service**.
114+
5. To specify target Azure service, select **Containers on Azure Kubernetes Service**.
115115

116116
![Default load-up for App Containerization tool.](./media/tutorial-containerize-apps-aks/tool-home.png)
117117

articles/migrate/tutorial-app-containerization-java-appservice.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Azure App Containerization Java; Containerization and migration of Java web applications to Azure App Service .
3-
description: Tutorial:Containerize & migrate Java web applications to Azure App Service.
2+
title: Azure App Containerization Java; Containerization and migration of Java web applications to Azure App Service.
3+
description: Tutorial: Containerize & migrate Java web applications to Azure App Service.
44
services:
55
author: rahugup
66
manager: bsiva
@@ -32,7 +32,7 @@ The Azure Migrate: App Containerization tool helps you to -
3232
While all applications won't benefit from a straight shift to containers without significant rearchitecting, some of the benefits of moving existing apps to containers without rewriting include:
3333

3434
- **Improved infrastructure utilization:** With containers, multiple applications can share resources and be hosted on the same infrastructure. This can help you consolidate infrastructure and improve utilization.
35-
- **Simplified management:** By hosting your applications on a modern managed platforms like AKS and App Service, you can simplify your management practices. You can achieve this by retiring or reducing the infrastructure maintenance and management processes that you'd traditionally perform with owned infrastructure.
35+
- **Simplified management:** By hosting your applications on a modern managed platform like AKS and App Service, you can simplify your management practices. You can achieve this by retiring or reducing the infrastructure maintenance and management processes that you'd traditionally perform with owned infrastructure.
3636
- **Application portability:** With increased adoption and standardization of container specification formats and platforms, application portability is no longer a concern.
3737
- **Adopt modern management with DevOps:** Helps you adopt and standardize on modern practices for management and security and transition to DevOps.
3838

@@ -110,7 +110,7 @@ If you just created a free Azure account, you're the owner of your subscription.
110110
Alternately, you can open the app from the desktop by selecting the app shortcut.
111111

112112
2. If you see a warning stating that says your connection isn’t private, click Advanced and choose to proceed to the website. This warning appears as the web interface uses a self-signed TLS/SSL certificate.
113-
3. At the sign-in screen, use the local administrator account on the machine to sign-in.
113+
3. At the sign-in screen, use the local administrator account on the machine to sign in.
114114
4. Select **Java web apps on Tomcat** as the type of application you want to containerize.
115115
5. To specify target Azure service, select **Containers on Azure App Service**.
116116
![Default load-up for App Containerization tool.](./media/tutorial-containerize-apps-aks/tool-home.png)
@@ -223,14 +223,14 @@ Once the container image is built, the next step is to deploy the application as
223223
- If you don’t have an Azure Key Vault or would like to create a new Key Vault, you can choose to create on from the tool by clicking **Create new**.
224224
- The tool will automatically assign the necessary permissions for managing secrets through the Key Vault.
225225
- **Monitoring workspace**: If you'd selected to enabled monitoring with Application Insights, then specify the Application Insights resource that you'd want to use. This option won't be visible if you had disabled monitoring integration.
226-
- If you don’t have an Application Insisghts resource or would like to create a new resource, you can choose to create on from the tool by clicking **Create new**.
226+
- If you don’t have an Application Insights resource or would like to create a new resource, you can choose to create on from the tool by clicking **Create new**.
227227

228228
3. **Specify Azure file share**: If you had added more directories/folders and selected the Azure file share option for persistent storage, then specify the Azure file share to be used by Azure Migrate: App Containerization tool during the deployment process. The tool will copy over the application directories/folders that are configured for Azure file storage and mount them on the application container during deployment. 
229229

230230
- If you don't have an Azure file share or would like to create a new Azure file share, you can choose to create on from the tool by clicking **Create new Storage Account and file share**.
231231

232232
4. **Application deployment configuration**: Once you've completed the steps above, you'll need to specify the deployment configuration for the application. Click **Configure** to customize the deployment for the application. In the configure step you can provide the following customizations:
233-
- **Name**: Specify a unique app name for the application. This name will be used to generate the application URL and used as a prefix for other resouces being created as part of this deployment.
233+
- **Name**: Specify a unique app name for the application. This name will be used to generate the application URL and used as a prefix for other resources being created as part of this deployment.
234234
- **Application configuration**: For any application configurations that were parameterized, provide the values to use for the current deployment.
235235
- **Storage configuration**: Review the information for any application directories/folders that were configured for persistent storage.
236236

0 commit comments

Comments
 (0)