Skip to content

Commit daf6fb2

Browse files
authored
Update tutorial-deploy-wordpress-on-aks.md
Addressing Naman's review.
1 parent 1407c6b commit daf6fb2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/mysql/flexible-server/tutorial-deploy-wordpress-on-aks.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: mksuni
77
ms.author: sumuth
88
ms.topic: tutorial
99
ms.date: 3/20/2024
10-
ms.custom: vc, devx-track-azurecli
10+
ms.custom: vc, devx-track-azurecli, innovation-engine, linux-related-content
1111
---
1212

1313
# Tutorial: Deploy WordPress app on AKS with Azure Database for MySQL - Flexible Server
@@ -16,7 +16,7 @@ ms.custom: vc, devx-track-azurecli
1616

1717
[![Deploy to Azure](https://aka.ms/deploytoazurebutton)](https://go.microsoft.com/fwlink/?linkid=2262843)
1818

19-
In this tutorial, you deploy a scalable and secure WordPress application on an Azure Kubernetes Service (AKS) cluster with Azure Database for MySQL flexible server using the Azure CLI.
19+
In this tutorial, you deploy a scalable WordPress application secured via HTTPS on an Azure Kubernetes Service (AKS) cluster with Azure Database for MySQL flexible server using the Azure CLI.
2020
**[AKS](../../aks/intro-kubernetes.md)** is a managed Kubernetes service that lets you quickly deploy and manage clusters. **[Azure Database for MySQL flexible server](overview.md)** is a fully managed database service designed to provide more granular control and flexibility over database management functions and configuration settings.
2121

2222
> [!NOTE]
@@ -138,7 +138,7 @@ Results:
138138

139139
## Create an Azure Database for MySQL flexible server instance
140140

141-
Create an Azure Database for MySQL flexible server instance with the [az mysql flexible-server create](/cli/azure/mysql/flexible-server) command. A server can contain multiple databases. The following command creates a server using service defaults and variable values from your Azure CLI's local context:
141+
Azure Database for MySQL flexible server is a managed service that you can use to run, manage, and scale highly available MySQL servers in the cloud. Create an Azure Database for MySQL flexible server instance with the [az mysql flexible-server create](/cli/azure/mysql/flexible-server) command. A server can contain multiple databases. The following command creates a server using service defaults and variable values from your Azure CLI's local context:
142142

143143
```bash
144144
echo "Your MySQL user $MY_MYSQL_ADMIN_USERNAME password is: $MY_WP_ADMIN_PW"
@@ -331,7 +331,7 @@ To add HTTPS, we're going to use Cert Manager. Cert Manager is an open source to
331331
kubectl create namespace cert-manager
332332
```
333333

334-
2. We can now install cert-manager. All resources are included in a single YAML manifest file.
334+
2. We can now install cert-manager. All resources are included in a single YAML manifest file. Install the manifest file with the following command:
335335

336336
```bash
337337
kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.7.0/cert-manager.crds.yaml
@@ -514,9 +514,9 @@ Visit the website through the following URL:
514514
echo "You can now visit your web server at https://$FQDN"
515515
```
516516
517-
## Clean up the resources
517+
## Clean up the resources (optional)
518518
519-
To avoid Azure charges, you should clean up unneeded resources. When you no longer need the cluster, use the [az group delete](/cli/azure/group#az-group-delete) command to remove the resource group, container service, and all related resources. This tutorial cleans up resources for you.
519+
To avoid Azure charges, you should clean up unneeded resources. When you no longer need the cluster, use the [az group delete](/cli/azure/group#az-group-delete) command to remove the resource group, container service, and all related resources.
520520
521521
> [!NOTE]
522522
> When you delete the cluster, the Microsoft Entra service principal used by the AKS cluster is not removed. For steps on how to remove the service principal, see [AKS service principal considerations and deletion](../../aks/kubernetes-service-principal.md#other-considerations). If you used a managed identity, the identity is managed by the platform and does not require removal.

0 commit comments

Comments
 (0)