Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. $ minikube start
  2.  
  3. # I cannot imagine that this is related to the problem, but
  4. # I have the impression that the problem is not reproducible when
  5. # the namespace has a short name.
  6. $ kubectl create namespace hosted-application-development
  7. # change minikube context in .kube/config to use namespace
  8.  
  9. $ kubectl apply -f client.yaml
  10.  
  11. $ kubectl apply -f mysql.yaml
  12. # wait until mysql pod is ready
  13.  
  14. $ kubectl exec -it test-client-pod bash
  15. # mysql -u user -ppw -h test-mysql
  16. ERROR 2013 (HY000): Lost connection to MySQL server at 'reading final connect information', system error: 0
  17. command terminated with exit code 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement