Skip to content

Commit 7baf0e9

Browse files
Merge pull request #107335 from 0xchabbi/0xchabbi-patch-1
Update tutorial-deploy-wordpress-on-aks.md
2 parents e0ef300 + f152ce8 commit 7baf0e9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ The following example output shows the Deployments and Services created successf
286286

287287
```output
288288
deployment "wordpress-blog" created
289-
service "php-svc" created
289+
service "blog-nginx-service" created
290290
```
291291

292292
## Test the application
@@ -296,20 +296,20 @@ When the application runs, a Kubernetes service exposes the application front en
296296
To monitor progress, use the [kubectl get service](https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#get) command with the `--watch` argument.
297297

298298
```azurecli-interactive
299-
kubectl get service php-svc --watch
299+
kubectl get service blog-nginx-service --watch
300300
```
301301

302302
Initially the *EXTERNAL-IP* for the *wordpress-blog* service is shown as *pending*.
303303

304304
```output
305305
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
306-
php-svc LoadBalancer 10.0.37.27 <pending> 80:30572/TCP 6s
306+
blog-nginx-service LoadBalancer 10.0.37.27 <pending> 80:30572/TCP 6s
307307
```
308308

309309
When the *EXTERNAL-IP* address changes from *pending* to an actual public IP address, use `CTRL-C` to stop the `kubectl` watch process. The following example output shows a valid public IP address assigned to the service:
310310

311311
```output
312-
php-svc LoadBalancer 10.0.37.27 52.179.23.131 80:30572/TCP 2m
312+
blog-nginx-service LoadBalancer 10.0.37.27 52.179.23.131 80:30572/TCP 2m
313313
```
314314

315315
### Browse WordPress

0 commit comments

Comments
 (0)