Kubernetes
November 6, 2018 ยท View on GitHub
Workflows
Custom dashboard in the terminal
- I create a dashboard in a
tmuxwindow with multiplepanes - Each pane has a
kubectlprefixed with awatchcommand.- Examples
watch -d kubectl get pods -awatch -d kubectl get jobs
- Examples
Dashboards
Maximum Nodes in Cluster
5000
- Updated: 2018-10-21
- Source: https://kubernetes.io/docs/setup/cluster-large/
One liner interactive shell in a pod deployment
Example: kubectl run -i --tty busybox --image=busybox -- sh
https://kubernetes.io/docs/reference/kubectl/cheatsheet/
Services do not ping
- https://github.com/kubernetes/kubernetes/issues/7996#issuecomment-299497122
-
Services do not ping.
- @thockin
-
- https://stackoverflow.com/questions/50852542/kubernetes-cannot-ping-another-service
-
Ping doesn't work with service's cluster IPs like 10.233.14.157, as it is a virtual IP. You should be able to ping a specific pod, but no a service.
-