Skip to content

Commit 229cfd0

Browse files
Updated DB Schema name as webappdb
Updated DB Schema name as webappdb. There is a typo in step-05 which i have fixed it.
1 parent bf015be commit 229cfd0

File tree

1 file changed

+3
-3
lines changed
  • 05-Azure-Disks-for-AKS-Storage/05-03-UserMgmt-WebApp-with-MySQLDB

1 file changed

+3
-3
lines changed

05-Azure-Disks-for-AKS-Storage/05-03-UserMgmt-WebApp-with-MySQLDB/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ Password: password101
8383
# Connect to MYSQL Database
8484
kubectl run -it --rm --image=mysql:5.6 --restart=Never mysql-client -- mysql -h mysql -pdbpassword11
8585
86-
# Verify usermgmt schema got created which we provided in ConfigMap
86+
# Verify webappdb schema got created which we provided in ConfigMap
8787
mysql> show schemas;
88-
mysql> use usermgmt;
88+
mysql> use webappdb;
8989
mysql> show tables;
9090
mysql> select * from user;
9191
```
@@ -108,4 +108,4 @@ kubectl delete pv <PV-NAME>
108108
109109
# Delete Azure Disks
110110
Go to All Services -> Disks -> Select and Delete the Disk
111-
```
111+
```

0 commit comments

Comments
 (0)