We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 860bdcd commit 5e0b3c0Copy full SHA for 5e0b3c0
04-EKS-Storage-with-EBS-ElasticBlockStore/04-02-SC-PVC-ConfigMap-MySQL/README.md
@@ -67,6 +67,11 @@ kubectl get pods -l app=mysql
67
# Connect to MYSQL Database
68
kubectl run -it --rm --image=mysql:5.6 --restart=Never mysql-client -- mysql -h mysql -pdbpassword11
69
70
+[or]
71
+
72
+# Use mysql client latest tag
73
+kubectl run -it --rm --image=mysql:latest --restart=Never mysql-client -- mysql -h mysql -pdbpassword11
74
75
# Verify usermgmt schema got created which we provided in ConfigMap
76
mysql> show schemas;
77
```
0 commit comments