Guest User

Untitled

a guest
Jan 18th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #!/bin/bash
  2. echo Waiting for Kubernetes to start...
  3. while [ ! -f /root/.kube/config ]
  4. do
  5. sleep 1
  6. done
  7. echo Kubernetes started
  8. if [ -f /root/.kube/start ]; then
  9. /root/.kube/start
  10. fi
Add Comment
Please, Sign In to add comment