Further reading
As long as this chapter is, it has only scratched the surface of what Kubernetes can do. The following is a list of a few features that were not covered:
Ingress resources: The Ingress resource is a new load balancer abstraction that works with services. It provides more granular routing for web applications including host-based and path-based routing. Refer to http://kubernetes.io/docs/user-guide/ingress/ .
Kubernetes Dashboard: Kubernetes ships with the
kube-ui
add-on which provides a dashboard for viewing the cluster and quickly creating new pods and other resources. Refer to http://kubernetes.io/docs/user-guide/ui/.Pod resource limits: It is possible to set per-pod and per-container CPU and memory limits at the namespace level. Refer to http://kubernetes.io/docs/admin/limitrange/.
Quotas: Quotas can be applied at a project level to ensure that the total number of pods or the amount of resources are not exceeded. Refer to http://kubernetes.io/docs/admin/resourcequota...