Create a Deployment in Kubernetes With Kubectl

Deployments are rolling updates for your applications.  As the name implies, “deployment” manages how to deploy or migrate your stateless applications that may need to be upgraded with zero downtime.  This is useful when you want an immutable infrastructure and want to keep it up-to-date without any downtime.

Read more

Get a Kubernetes Pod IP Address

A pod is a group of containers that are running on the same host and share the same filesystem. Containers in a pod share network and IPC namespace. Pods can be created and managed by Kubernetes and deployed together on the same host or different hosts.

Read more