Skip to content

Commit 1407c6b

Browse files
committed
Fixing broken link
1 parent 6529682 commit 1407c6b

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

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

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ az group create \
6969
```
7070

7171
Results:
72-
7372
<!-- expected_similarity=0.3 -->
7473
```json
7574
{
@@ -103,7 +102,6 @@ az network vnet create \
103102
```
104103

105104
Results:
106-
107105
<!-- expected_similarity=0.3 -->
108106
```json
109107
{
@@ -169,7 +167,6 @@ az mysql flexible-server create \
169167
```
170168

171169
Results:
172-
173170
<!-- expected_similarity=0.3 -->
174171
```json
175172
{
@@ -193,7 +190,7 @@ The server created has the following attributes:
193190
- The default connectivity method is Private access (virtual network integration) with a linked virtual network and an auto generated subnet.
194191

195192
> [!NOTE]
196-
> The connectivity method cannot be changed after creating the server. For example, if you selected `Private access (VNet Integration)` during creation, then you cannot change to `Public access (allowed IP addresses)` after creation. We highly recommend creating a server with Private access to securely access your server using VNet Integration. Learn more about Private access in the [concepts article](./concepts-networking-vnet).
193+
> The connectivity method cannot be changed after creating the server. For example, if you selected `Private access (VNet Integration)` during creation, then you cannot change to `Public access (allowed IP addresses)` after creation. We highly recommend creating a server with Private access to securely access your server using VNet Integration. Learn more about Private access in the [concepts article](./concepts-networking-vnet.md).
197194
198195
If you'd like to change any defaults, refer to the Azure CLI [reference documentation](/cli/azure//mysql/flexible-server) for the complete list of configurable CLI parameters.
199196

@@ -223,7 +220,6 @@ az mysql flexible-server parameter set \
223220
```
224221

225222
Results:
226-
227223
<!-- expected_similarity=0.3 -->
228224
```json
229225
{
@@ -278,6 +274,7 @@ az aks create \
278274
## Connect to the cluster
279275

280276
To manage a Kubernetes cluster, use [kubectl](https://kubernetes.io/docs/reference/kubectl/overview/), the Kubernetes command-line client. If you use Azure Cloud Shell, `kubectl` is already installed. The following example installs `kubectl` locally using the [az aks install-cli](/cli/azure/aks#az-aks-install-cli) command.
277+
281278
```bash
282279
if ! [ -x "$(command -v kubectl)" ]; then az aks install-cli; fi
283280
```
@@ -425,7 +422,6 @@ For this tutorial, we're using an existing Helm chart for WordPress built by Bit
425422
```
426423

427424
Results:
428-
429425
<!-- expected_similarity=0.3 -->
430426
```text
431427
Release "wordpress" does not exist. Installing it now.
@@ -497,7 +493,6 @@ fi;
497493
```
498494
499495
Results:
500-
501496
<!-- expected_similarity=0.3 -->
502497
```HTML
503498
{

0 commit comments

Comments
 (0)